Full US ticker profile and quote
curl --request GET \
--url https://api.ngnmarket.com/v1/us/tickers/{symbol} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/us/tickers/{symbol}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.ngnmarket.com/v1/us/tickers/{symbol}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ngnmarket.com/v1/us/tickers/{symbol}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ngnmarket.com/v1/us/tickers/{symbol}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ngnmarket.com/v1/us/tickers/{symbol}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/us/tickers/{symbol}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"meta": {
"plan": "starter",
"calls_used": 4821,
"calls_remaining": 95179,
"reset_at": "2026-06-15T23:57:00.000Z",
"market": "US",
"currency": "USD",
"as_of": "2023-11-07T05:31:56Z",
"newest": "2023-11-07T05:31:56Z"
},
"data": {
"symbol": "AAPL",
"exchange_ticker": "<string>",
"name": "Apple Inc.",
"security_type": "stock",
"sector": "<string>",
"industry": "<string>",
"country": "US",
"ceo": "<string>",
"website": "<string>",
"incorporated_year": 123,
"shares_outstanding": 123,
"logo_url": "<string>",
"about": "<string>",
"is_active": true,
"first_seen_at": "2023-12-25",
"last_seen_at": "2023-12-25",
"delisted_at": "2023-12-25",
"exchange": "XNAS",
"exchange_name": "Nasdaq Stock Market",
"exchange_timezone": "America/New_York",
"last_price": 123,
"prev_close": 123,
"change_abs": 123,
"change_pct": 123,
"open_price": 123,
"high_price": 123,
"low_price": 123,
"bid": 123,
"bid_size": 123,
"ask": 123,
"ask_size": 123,
"volume": 123,
"avg_volume": 123,
"market_cap": 123,
"eps": 123,
"pe_ratio": 123,
"beta": 123,
"dividend": 123,
"dividend_yield": 123,
"dividend_date": "2023-12-25",
"high_52wk": 123,
"high_52wk_date": "2023-12-25",
"low_52wk": 123,
"low_52wk_date": "2023-12-25",
"rsi_14": 123,
"volatility": 123,
"return_7d": 123,
"return_1m": 123,
"return_3m": 123,
"return_6m": 123,
"return_52w": 123,
"return_ytd": 123,
"return_3y": 123,
"is_delayed": true,
"quote_time": "2023-11-07T05:31:56Z"
}
}Ticker Endpoints
US Ticker Detail
Full profile and current quote for a single US ticker.
GET
/
us
/
tickers
/
{symbol}
Full US ticker profile and quote
curl --request GET \
--url https://api.ngnmarket.com/v1/us/tickers/{symbol} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/us/tickers/{symbol}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.ngnmarket.com/v1/us/tickers/{symbol}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ngnmarket.com/v1/us/tickers/{symbol}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ngnmarket.com/v1/us/tickers/{symbol}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ngnmarket.com/v1/us/tickers/{symbol}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/us/tickers/{symbol}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"meta": {
"plan": "starter",
"calls_used": 4821,
"calls_remaining": 95179,
"reset_at": "2026-06-15T23:57:00.000Z",
"market": "US",
"currency": "USD",
"as_of": "2023-11-07T05:31:56Z",
"newest": "2023-11-07T05:31:56Z"
},
"data": {
"symbol": "AAPL",
"exchange_ticker": "<string>",
"name": "Apple Inc.",
"security_type": "stock",
"sector": "<string>",
"industry": "<string>",
"country": "US",
"ceo": "<string>",
"website": "<string>",
"incorporated_year": 123,
"shares_outstanding": 123,
"logo_url": "<string>",
"about": "<string>",
"is_active": true,
"first_seen_at": "2023-12-25",
"last_seen_at": "2023-12-25",
"delisted_at": "2023-12-25",
"exchange": "XNAS",
"exchange_name": "Nasdaq Stock Market",
"exchange_timezone": "America/New_York",
"last_price": 123,
"prev_close": 123,
"change_abs": 123,
"change_pct": 123,
"open_price": 123,
"high_price": 123,
"low_price": 123,
"bid": 123,
"bid_size": 123,
"ask": 123,
"ask_size": 123,
"volume": 123,
"avg_volume": 123,
"market_cap": 123,
"eps": 123,
"pe_ratio": 123,
"beta": 123,
"dividend": 123,
"dividend_yield": 123,
"dividend_date": "2023-12-25",
"high_52wk": 123,
"high_52wk_date": "2023-12-25",
"low_52wk": 123,
"low_52wk_date": "2023-12-25",
"rsi_14": 123,
"volatility": 123,
"return_7d": 123,
"return_1m": 123,
"return_3m": 123,
"return_6m": 123,
"return_52w": 123,
"return_ytd": 123,
"return_3y": 123,
"is_delayed": true,
"quote_time": "2023-11-07T05:31:56Z"
}
}Returns the full profile for a single US ticker — reference data (sector, CEO, exchange) merged with its current quote (price, bid/ask, 52-week range, RSI-14, volatility, and returns out to 3 years). Symbols are case-sensitive, so use the exact case returned by
/us/tickers or /us/tickers/identifiers.
US financial statements are not available yet — only NGX-listed companies expose /financials.Authorizations
Pass your API key as a Bearer token: Authorization: Bearer ngm_live_YOUR_KEY.
Generate keys at ngnmarket.com/dashboard/developer.
Path Parameters
Example:
"AAPL"