Shiba Inu
- symbol
- SHIB
- name
- Shiba Inu
- slug
- shiba-inu
- marketCap
- 7091560000
- price
- 0.00001204
- priceChangePercent24h
- 7.29
- volume24h
- 6019963683
- circulatingSupply
- 589000000000000
- totalSupply
- 589000000000000
- createdAt
Overview
crypto / #13
Shiba Inu
#13
Request
curl example
curl -sS \ "https://example-data.com/api/v1/crypto/13" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/crypto/13" ); 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/13"
);
const crypto = (await res.json()) as Crypto; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/13"
)
crypto = res.json() Response
{
"id": 13,
"symbol": "SHIB",
"name": "Shiba Inu",
"slug": "shiba-inu",
"marketCap": 7091560000,
"price": 0.00001204,
"priceChangePercent24h": 7.29,
"volume24h": 6019963683,
"circulatingSupply": 589000000000000,
"totalSupply": 589000000000000,
"createdAt": "2026-03-08T22:01:08.571Z"
}