Related questions for an article

Generate questions a reader is likely to ask after reading this article. Render them as chips under the article and link each one to your answers page.

Body·
required
application/json
  • anonymous_id
    Type: string
  • fq
    Type: string

    Filter query restricting the candidate articles.

  • product_id
    Type: string

    The article to generate questions for.

  • rows
    Type: integer

    How many questions to return.

  • user_id
    Type: string
  • version
    Type: string

    Related-questions model version.

Responses
  • application/json
Request Example for post/v1/ask/related_questions
curl 'https://api.askmiso.com/v1/ask/related_questions?api_key=YOUR_SECRET_TOKEN' \
  --request POST \
  --header 'Content-Type: application/json' \
  --data '{
  "product_id": "art-20260612-rates",
  "rows": 5
}'
{
  "data": {
    "related_questions": [
      "What is the central bank's inflation forecast?",
      "How will the rate decision affect mortgages?"
    ],
    "version": 2,
    "engine": "v2"
  }
}