wobbly husband
- symbol
- PPVJ
- name
- wobbly husband
- slug
- wobbly-husband
- marketCap
- 7771796307
- price
- 97.99078334
- priceChangePercent24h
- 17.11
- volume24h
- 8997791
- circulatingSupply
- 79311503
- totalSupply
- —
- createdAt
Overview
crypto / #22
wobbly husband
#22
Request
curl example
curl -sS \ "https://example-data.com/api/v1/crypto/22" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/crypto/22" ); 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/22"
);
const crypto = (await res.json()) as Crypto; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/22"
)
crypto = res.json() Response
{
"id": 22,
"symbol": "PPVJ",
"name": "wobbly husband",
"slug": "wobbly-husband",
"marketCap": 7771796307,
"price": 97.99078334,
"priceChangePercent24h": 17.11,
"volume24h": 8997791,
"circulatingSupply": 79311503,
"totalSupply": null,
"createdAt": "2025-02-22T16:46:52.665Z"
}