Skip to main content
GET
/
v1
/
answers
/
{answer_id}
Get Answer
curl --request GET \
  --url https://api.olostep.com/v1/answers/{answer_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "object": "<string>",
  "created": 123,
  "metadata": {},
  "task": "<string>",
  "result": {
    "json_content": "<string>",
    "json_hosted_url": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

answer_id
string
required

Unique identifier for the answer to be retrieved.

Response

Successful response with the answer object.

id
string
object
string
created
integer
metadata
object
task
string
result
object
I