APIAuthentication

Zoo's APIs use API keys, also referred to as API tokens, to authenticate requests. You can view and manage your API keys in your account on the Zoo website.

Authentication to the API is performed via Bearer Token Auth. Provide your API key as the token value. We will automatically add your token to the examples here if you are logged in.

All API requests must be made over HTTPS. API requests without authentication will fail.

Authenticated request
$ curl --header "Authorization: Bearer $TOKEN" \
	"https://api.zoo.dev/_meta/debug/session"