Skip to main content
GET
/
v1
/
searches
/
{search_id}
Get Search
curl --request GET \
  --url https://api.olostep.com/v1/searches/{search_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "object": "<string>",
  "created": 123,
  "metadata": {},
  "query": "<string>",
  "result": {
    "json_content": "<string>",
    "json_hosted_url": "<string>",
    "links": [
      {
        "url": "<string>",
        "title": "<string>",
        "description": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

search_id
string
required

Unique identifier for the search to be retrieved.

Response

Successful response with the search object.

id
string
object
string
created
integer
metadata
object
query
string
result
object