Skip to main content
GET
/
v1
/
companies
/
{company_id}
/
filings
List filings for a company
curl --request GET \
  --url https://api.ivory.finance/v1/companies/{company_id}/filings \
  --header 'X-API-Key: <api-key>'
[
  {
    "accession_number": "<string>",
    "company_id": "<string>",
    "cik": "<string>",
    "external_id": "<string>",
    "country_code": "<string>",
    "company_name": "<string>",
    "form_type": "<string>",
    "filing_date": "2023-12-25",
    "is_amendment": true,
    "raw_filing_url": "<string>",
    "raw_summary": "<string>",
    "source": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.ivory.finance/llms.txt

Use this file to discover all available pages before exploring further.

The company_id accepts TICKER:EXCHANGE (e.g. AAPL:NASDAQ), CC:external_id (e.g. GB:00445790), UUID, bare CIK, or bare external ID. See Get Company for the full format reference.

Authorizations

X-API-Key
string
header
required

Path Parameters

company_id
string
required

Query Parameters

form_type
string | null

Filter by form type, e.g. 10-K, 8-K

start_date
string<date> | null
end_date
string<date> | null
limit
integer
default:50
Required range: 1 <= x <= 500

Response

Successful Response

accession_number
string
required
company_id
string | null
cik
string | null
external_id
string | null
country_code
string | null
company_name
string | null
form_type
string | null
filing_date
string<date> | null
is_amendment
boolean | null
raw_filing_url
string | null
raw_summary
string | null
source
string | null