If you are one of our partners, please see this page for details on how to authenticate your request.
You must be authenticated for any request on the Chapter API. See our available authentication methods below.
Token Authentication
Right now we support API key authentication. To authenticate your requests, you need to pass your provided authentication key as an Authorization header:
curl \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: <Replace this with your API Token>" \
https://plan-data.getchapter.com/v1/const options = {
method: 'GET',
headers: {
Accept: 'application/json',
Authorization: '<Your API Token>'
}
};
fetch('https://plan-data.getchapter.com/api/plans/ma/H0609-028-000/hearing', options)
.then(response => console.log(response))
.catch(err => console.error(err));If you do not have an API Key, please reach out for access to an API key with your usage requirements.
