/v1/meta
Spec
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/coinprofile-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinprofile-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinprofile-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/coinprofile-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"source": "CoinGecko public coin detail API (live)",
"service": "coinprofile-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/links": "A coin's official links (id=ethereum): homepage, whitepaper, explorers, GitHub, socials.",
"GET /v1/profile": "A coin's project profile (id=ethereum): description, rank, categories, ATH/ATL, sentiment.",
"GET /v1/developer": "A coin's GitHub developer activity (id=ethereum): stars, forks, issues, commits."
},
"description": "Live project profile, developer activity and official links for any cryptocurrency from CoinGecko. Profile: description, market-cap rank, categories, genesis date, hashing algorithm, country, sentiment, all-time high/low with dates. Developer: GitHub stars, forks, watchers, total/closed issues, merged pull requests and recent commits. Links: homepage, whitepaper, block explorers, GitHub, subreddit, Twitter, Telegram, forums. Live, no key, nothing stored. Distinct from price, market-cap and OHLC APIs — this is the project profile, developer activity and links.",
"upstream_status": null
},
"meta": {
"timestamp": "2026-06-09T11:38:47.121Z",
"request_id": "cd88604d-183b-4070-82f8-39252fe4c8a8"
},
"status": "ok",
"message": "Meta",
"success": true
}