Skip to main content
POST
/
financials
/
search
/
screener
Search Financials Screener
curl --request POST \
  --url https://api.aisa.one/apis/v1/financial/financials/search/screener \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "filters": [
    {
      "field": "<string>",
      "operator": "eq",
      "value": 123
    }
  ],
  "limit": 10
}
'
{
  "search_results": [
    {
      "ticker": "<string>",
      "report_period": "2023-12-25",
      "period": "annual",
      "currency": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
filters
object[]
required

Array of filter objects to apply

limit
integer
default:10

Maximum number of results to return

Response

Successful financials screener response

search_results
object[]
required

Array of matching company results