Filecoin
- symbol
- FIL
- name
- Filecoin
- slug
- filecoin
- marketCap
- 2838360000
- price
- 5.0685
- priceChangePercent24h
- -5.18
- volume24h
- 3436040095
- circulatingSupply
- 560000000
- totalSupply
- 2000000000
- createdAt
Overview
crypto / #18
Filecoin
#18
Request
curl example
curl -sS \ "https://example-data.com/api/v1/crypto/18" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/crypto/18" ); 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/18"
);
const crypto = (await res.json()) as Crypto; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/18"
)
crypto = res.json() Response
{
"id": 18,
"symbol": "FIL",
"name": "Filecoin",
"slug": "filecoin",
"marketCap": 2838360000,
"price": 5.0685,
"priceChangePercent24h": -5.18,
"volume24h": 3436040095,
"circulatingSupply": 560000000,
"totalSupply": 2000000000,
"createdAt": "2025-12-22T09:05:51.568Z"
}