NASD Developer Portal
Build on NASD
Integrate directly with Nigeria's OTC Securities Exchange through secure REST APIs. Access live market data, submit and manage orders, retrieve corporate actions, and build capital-market applications on a production-ready developer platform.
Access APIs for
Platform basics
The NASD vendor API is a REST API that returns JSON over HTTPS. It gives licensed partners programmatic access to the OTC Securities Exchange.
- Base URL
https://stagingmobile.nasdng.com/v2- Authentication
- Bearer API key, see Authentication
- Format
- JSON request and response bodies, UTF-8
- Versioning
- Current version
v2, carried in the path
The response envelope
Almost every endpoint wraps its payload in a consistent envelope. Read success to branch, message for a human-readable summary, and data for the result. Paginated list endpoints add a meta or nested pagination object.
Base currency and time
Amounts are in Naira (₦). Timestamps are ISO 8601 in UTC. Prices are quoted to the exchange's tick precision.
Next steps
Create an API key and authenticate your first request in Authentication, learn the failure model in Errors, then jump into Market data.
curl "https://stagingmobile.nasdng.com/v2/vendor/market-snapshot/daily" \ -H "Authorization: Bearer sk_test_xxxxxxxxxxxxxxxxxxxxxxxx"
{ "success": true, "message": "Market snapshot fetched successfully", "data": { "current": { "date": "2026-07-06" }, "previous": { "date": "2026-07-03" }, "metrics": { "securitiesIndex": { "current": 1042.18, "previous": 1038.44, "variance": 3.74, "percentChange": 0.36 } } } }