POST
/
api
/
in
/
v0
/
documents
/
full-text-search
curl --request POST \
  --url https://stockinsights-ai-main-49970eb.d2.zuplo.dev/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
query
string
required

Keyword/Phrase to Search

filters
object
required

Filters to narrow the search scope. For example, the search can be limited to few companies only. Without filters, search will be performed across all the filings.

Response

200
application/json
Successful response
status
enum<string>
Available options:
success
data
object

Search Result