assured junior
- symbol
- ZDOJL
- name
- assured junior
- slug
- assured-junior
- marketCap
- 56692842720
- price
- 43.2027974
- priceChangePercent24h
- -14.75
- volume24h
- 54349800
- circulatingSupply
- 1312249348
- totalSupply
- —
- createdAt
Overview
crypto / #36
assured junior
#36
Request
curl example
curl -sS \ "https://example-data.com/api/v1/crypto/36" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/crypto/36" ); 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/36"
);
const crypto = (await res.json()) as Crypto; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/36"
)
crypto = res.json() Response
{
"id": 36,
"symbol": "ZDOJL",
"name": "assured junior",
"slug": "assured-junior",
"marketCap": 56692842720,
"price": 43.2027974,
"priceChangePercent24h": -14.75,
"volume24h": 54349800,
"circulatingSupply": 1312249348,
"totalSupply": null,
"createdAt": "2026-01-20T13:00:12.434Z"
}