/v1/links
A coin official links
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/coinprofile-api/v1/links" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinprofile-api/v1/links", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinprofile-api/v1/links");
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/links",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"id": "uniswap",
"name": "Uniswap",
"forums": [],
"github": [
"https://github.com/Uniswap/uniswap-v3-core"
],
"twitter": "https://twitter.com/Uniswap",
"facebook": null,
"homepage": "https://uniswap.org/",
"telegram": null,
"subreddit": "https://www.reddit.com/r/Uniswap",
"whitepaper": "https://blog.uniswap.org/uni",
"announcements": [
"https://uniswap.org/blog/"
],
"blockchain_explorers": [
"https://etherscan.io/token/0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
"https://ethplorer.io/address/0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
"https://nearblocks.io/token/1f9840a85d5af5bf1d1762f925bdaddc4201f984.factory.bridge.near",
"https://bscscan.com/token/0xbf5140a22578168fd562dccf235e5d43a02ce9b1",
"https://polygonscan.com/token/0xb33eaad8d922b1083446dc23f610c2567fb5180f",
"https://snowtrace.io/token/0x8ebaf22b6f053dffeaf46f4dd9efa95d89ba8580",
"https://arbiscan.io/token/0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0",
"https://explorer.energi.network/token/0x665b3a802979ec24e076c80025bff33c18eb6007"
]
},
"meta": {
"timestamp": "2026-06-09T11:38:43.192Z",
"request_id": "2a3caedd-98b2-4047-a70b-c5f48f5c5f39"
},
"status": "ok",
"message": "Links retrieved successfully",
"success": true
}