Authentication

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

API key

You can authenticate your requests by providing your API key in the request header. You will receive an API key after you sign up.

Here's how to add the API to the request header using cURL:

Example request header with API key

curl --location 'https://api.concured.com/v1/recommendations' \
  --header 'x-api-key: {api_key}' \

All API keys are restricted by domain.

Always keep your token safe and reset it if you suspect it has been compromised.

Using an SDK

If you use one of our official SDKs, you won't have to worry about setting an API key in the request header, the client library will take care of authenticating.