POST
/
api
/
in
/
v0
/
documents
/
full-text-search
curl --request POST \
  --url https://stockinsights-ai-main-95a26a0.zuplo.app/api/in/v0/documents/full-text-search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "query": "<string>",
  "filters": {
    "types": [
      "<string>"
    ],
    "tickers": [
      "<string>"
    ],
    "sectors": [
      "<string>"
    ],
    "industries": [
      "<string>"
    ],
    "quarters": [
      "<string>"
    ],
    "years": [
      "<string>"
    ]
  }
}'
{
  "status": "success",
  "data": [
    "<any>"
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Successful response

The response is of type object.