Skip to main content
GET
/
v1
/
ask
/
questions
/
{question_id}
/
answer
Get latest answer of asked question
curl --request GET \
  --url 'https://api.askmiso.com/v1/ask/questions/{question_id}/answer?api_key='
{
  "data": {
    "question": "<string>",
    "question_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "parent_question_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "answer_stage": "",
    "finished": false,
    "finish_reason": "not_finished",
    "answer": "",
    "sources": [],
    "related_resources": [],
    "followup_questions": [
      "<string>"
    ],
    "affiliation_products": [
      {}
    ],
    "revision": 0
  },
  "message": "success"
}

Authorizations

api_key
string
query
required

Your secret API key is used to access every Miso API endpoint. You should secure this key and only use it on a backend server. Never leave this key in your client-side JavaScript code. If the private key is compromised, you can revoke it in Dojo and get a new one.

Specify your secret key in the api_key query parameter. For example:

POST /v1/users?api_key=039c501ac8dfcac91c6f05601cee876e1cc07e17

Path Parameters

question_id
string<uuid>
required

Response

Successful Response

data
Data · object
required

The answer data containing the latest answer, sources, and related resources.

message
string
default:success

The status of the API response ('success' or other human readable api status).