Authentication

You'll need to authenticate your requests to access any of the endpoints in the Cevoid API. In this guide, we'll look at how authentication works.

Token authentication

With token authentication, you use your Cevoid token to authenticate your HTTP requests. You can find or create your token on the API integration page.

Here's how to authenticate using cURL:

Example request with basic auth

curl https://api.cevoid.com/v1/posts \
  -H "x-api-key: {key}"

Please don't commit your Cevoid token to GitHub!