example-data.com
Menu
Browse docs and collections

Overview

crypto / #47

similar swim

symbol
CIF
name
similar swim
slug
similar-swim
marketCap
24499503232
price
7.04050084
priceChangePercent24h
13.23
volume24h
63490751
circulatingSupply
3479795513
totalSupply
3573708054
createdAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/crypto/47" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/crypto/47"
);
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/47"
);
const crypto = (await res.json()) as Crypto;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/crypto/47"
)
crypto = res.json()

Response

{
  "id": 47,
  "symbol": "CIF",
  "name": "similar swim",
  "slug": "similar-swim",
  "marketCap": 24499503232,
  "price": 7.04050084,
  "priceChangePercent24h": 13.23,
  "volume24h": 63490751,
  "circulatingSupply": 3479795513,
  "totalSupply": 3573708054,
  "createdAt": "2025-08-01T15:55:04.892Z"
}