/v1/meta
Spec
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}