Skip to main content
POST
/
financials
/
search
/
line-items
Search specific financial metrics
curl --request POST \
  --url https://api.aisa.one/apis/v1/financial/financials/search/line-items \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "line_items": [
    "<string>"
  ],
  "tickers": [
    "<string>"
  ],
  "period": "ttm",
  "limit": 1
}
'
{
  "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
line_items
string[]
required

An array of line items to apply to the search.

Minimum array length: 1

The financial metric to search for.

tickers
string[]
required

An array of tickers to apply to the search.

Minimum array length: 1

The tickers to search for.

period
enum<string>
default:ttm

The time period for the financial data.

Available options:
annual,
quarterly,
ttm
limit
integer
default:1

The maximum number of results to return.

Required range: x >= 1

Response

Successful search response

search_results
object[]