tiny partridge
- symbol
- NBH
- name
- tiny partridge
- slug
- tiny-partridge
- marketCap
- 137960982327
- price
- 76.24576431
- priceChangePercent24h
- -15.92
- volume24h
- 11707270
- circulatingSupply
- 1809424872
- totalSupply
- —
- createdAt
Overview
crypto / #37
tiny partridge
#37
Request
curl example
curl -sS \ "https://example-data.com/api/v1/crypto/37" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/crypto/37" ); const crypto = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/crypto.d.ts https://example-data.com/types/crypto.d.ts
import type { Crypto } from "./types/crypto";
const res = await fetch(
"https://example-data.com/api/v1/crypto/37"
);
const crypto = (await res.json()) as Crypto; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/37"
)
crypto = res.json() Response
{
"id": 37,
"symbol": "NBH",
"name": "tiny partridge",
"slug": "tiny-partridge",
"marketCap": 137960982327,
"price": 76.24576431,
"priceChangePercent24h": -15.92,
"volume24h": 11707270,
"circulatingSupply": 1809424872,
"totalSupply": null,
"createdAt": "2025-05-13T11:57:54.847Z"
}