Annual Reports

India Filings

Call GET /india/filings on the Corpus API.

GET /india/filings

Call GET /india/filings on the Corpus API.

Category: India · Annual Reports

Authentication

Send the provisioned API key in the X-API-KEY header.

Required scopes: india:read.

Request

NameInRequiredTypeConstraintsDescription
companyquerynostring | null
yearquerynointeger | null
as_ofquerynostring | null
limitquerynointegerdefault 100; min 1; max 1000
offsetquerynointegerdefault 0; min 0

Example request

curl --request GET \
  --url 'https://corpus-api.onera.app/india/filings?limit=100' \
  --header "X-API-KEY: ${CORPUS_API_KEY}"

Responses

StatusDescriptionContent typeSchema
200Successful Responseapplication/jsonIndiaFilingsResponse
400Invalid parameter combinationapplication/jsonErrorResponse
401Missing or invalid API keyapplication/jsonErrorResponse
403Insufficient jurisdiction or scopeapplication/jsonErrorResponse
404Unknown resourceapplication/jsonErrorResponse
422Request schema validation failedapplication/jsonErrorResponse
429Rate limit exceededapplication/jsonErrorResponse
503Source content is unavailable or still processingapplication/jsonErrorResponse

Representative 200 response

{
  "filings": [
    {
      "artifact_id": "annual-report-example",
      "company_name": "string",
      "pdf_available": true,
      "text_available": true,
      "bse_code": "500325",
      "nse_symbol": "RELIANCE",
      "period_month": "string",
      "period_year": 1,
      "page_count": 1,
      "ocr_pages": 1,
      "char_count": 1,
      "is_scanned": true,
      "knowledge_time": "2025-12-31T23:59:59Z"
    }
  ],
  "meta": {
    "jurisdiction": "IN",
    "count": 1,
    "limit": 10,
    "offset": 0,
    "next_offset": null,
    "as_of": "2025-12-31T23:59:59Z",
    "normalization_version": "string",
    "provenance": {}
  }
}