Welcome to Channeled’s developer docs, where you can learn more about Channeled’s API and how to use it.

The first step is to head over to Channeled API Settings and get your API key.

You can use this key for all your requests to the API. This key is unique to you, so make sure to keep it safe.

Usage

  curl --request POST \
    --url https://api.withchanneled.com/graphql \
    --header "Content-Type: application/json" \
    --header "Authorization: Bearer your-api-key"
    --data '{ "query": "query { me { id } }" }'