Skip to main content
GET
/
v1
/
companies
/
{symbol}
/
disclosures
Disclosures by company
curl --request GET \
  --url https://api.ngnmarket.com/v1/companies/{symbol}/disclosures \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "data": [
      {
        "title": "Quarter 1 - financial statement for 2026",
        "company_name": "GUARANTY TRUST HOLDING COMPANY PLC",
        "company_symbol": "GTCO",
        "isin": "NGGTCO000002",
        "submission_type": "Financial Statements",
        "document_url": "https://doclib.ngxgroup.com/Financial_NewsDocs/46806_GUARANTY_TRUST.pdf",
        "disclosed_at": "2026-04-28T15:17:53.000Z",
        "modified_at": "2026-04-28T15:17:53.000Z"
      }
    ],
    "pagination": {
      "page": 1,
      "limit": 25,
      "total": 2,
      "pages": 1,
      "has_next": false,
      "has_prev": false
    }
  },
  "meta": {
    "plan": "free",
    "calls_used": 12,
    "calls_remaining": 9988,
    "reset_at": "2026-06-01T00:00:00.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.ngnmarket.com/llms.txt

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

Returns all corporate disclosures for a single company identified by its NGX ticker symbol. This is equivalent to calling GET /v1/disclosures?symbol={symbol} but is the preferred endpoint when building company-specific views such as a stock detail page. Results are sorted newest first by default. Use the type filter to narrow to a specific filing category, or the from/to params for a date range.
curl "https://api.ngnmarket.com/v1/companies/GTCO/disclosures" \
  -H "Authorization: Bearer ngm_live_YOUR_KEY"

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token: Authorization: Bearer ngm_live_YOUR_KEY. Generate keys at ngnmarket.com/dashboard/developer.

Path Parameters

symbol
string
required

NGX ticker symbol (e.g. GTCO). Case-insensitive.

Example:

"GTCO"

Query Parameters

type
string

Filter by submission type. Use /v1/disclosures/types for valid values.

Example:

"Financial Statements"

from
string<date>
Example:

"2026-01-01"

to
string<date>
Example:

"2026-12-31"

sort
enum<string>
default:disclosed_at
Available options:
disclosed_at,
modified_at,
submission_type
order
enum<string>
default:desc
Available options:
asc,
desc
page
integer
default:1
Required range: x >= 1
limit
integer
default:25
Required range: 1 <= x <= 100

Response

Disclosures retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object