Zum Inhalt springen
GET /v1/events

The project event calendar

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/cryptoprojects-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/cryptoprojects-api/v1/events" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptoprojects-api/v1/events", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptoprojects-api/v1/events");
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/cryptoprojects-api/v1/events",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "id": "eth-ethereum",
        "count": 3,
        "events": [
            {
                "id": "186821-neocypherpunk-summit",
                "date": "2026-06-14T00:00:00Z",
                "link": "https://coinmarketcal.com/event/neocypherpunk-summit-320652",
                "name": "Neocypherpunk Summit",
                "date_to": null,
                "description": null,
                "is_conference": true
            },
            {
                "id": "92845-eth-20-and-34what-will-happen-to-your-eth34",
                "date": "2021-07-20T00:00:00Z",
                "link": "https://www.reddit.com/r/ethereum/comments/n71ai7/eth_20_and_what_will_happen_to_your_eth/",
                "name": "Eth 2.0 and \"what will happen to your ETH\"",
                "date_to": null,
                "description": "Can we get a sticky regarding this topic? It'd clear up the daily convo on this sub a great deal.\n\n**What is ETH 2.0?:**\n\nA series of upgrades to the Ethereum network explained [here](https://ethereum.org/en/eth2/).\n\n\n**Do I have to do anything?:**\n\nNo. This is an update to the network itself, Ether held in your wallet or on an exchange or anywhere else is still the same after the merge.\n\n**What will happen to the price?:**\n\nWho knows.\n\n**When will it be released?:**\n\nAt some point in the future. ETH2 is series of features/fixes with separate development work and release dates. PoS itself might see an accelerated release this year but there are no guarantees. You can follow the Ethereum dev teams work if you wish to keep closer tabs.\n \n**Answers to all of these questions can be found on the [ethereum.org](https://ethereum.org/) site.**\n\n* [Staking](https://ethereum.org/en/eth2/staking/)\n* [Proof-of-Stake](https://ethereum.org/en/developers/docs/consensus-mechanisms/pos/)\n* [ETH2 in general](https://ethereum.org/en/eth2/)\n* [_Ethereum itself_](https://ethereum.org/en/what-is-ethereum/)\n\nu/Tyra3l provided a link to https://ethmerge.com/, which does a great job of summing things up.",
                "is_conference": false
            },
            {
                "id": "69771-fluidity-summit-2019",
                "date": "2019-05-09T08:00:00Z",
                "link": "https://fluiditysummit.com",
                "name": "Fluidity Summit 2019",
                "date_to": "2019-05-09T19:00:00Z",
                "description": "Fluidity Summit brings the worlds of finance and technology together to shape the future of blockchain and capital markets.",
                "is_conference": false
            }
        ],
        "source": "CoinPaprika"
    },
    "meta": {
        "timestamp": "2026-06-12T01:41:34.753Z",
        "request_id": "c2a77d3f-55f6-4509-982b-10d638d43663"
    },
    "status": "ok",
    "message": "Events retrieved successfully",
    "success": true
}