Welcome to the Keller Postman Developer API!
Here you can find information about integrating with our public APIs. Click the 'Explore APIs' button below to learn more.
Here you can find information about integrating with our public APIs. Click the 'Explore APIs' button below to learn more.
These APIs expect JWT Bearer tokens to be included in requests for authentication purposes. You must execute the Client Credentials OAuth 2.0 flow in order to fetch a token.
The ClientId and ClientSecret values are supplied by Keller Postman.
You can use the same token for multiple requests, but please be aware that these tokens will expire after a period of time!
Sample Authentication Request:
POST https://kellerpostman.us.auth0.com/oauth/token
Content-Type: application/x-www-form-urlencoded
{
"grant_type": "client_credentials",
"client_id": "${ClientId}",
"client_secret": "${ClientSecret}",
"audience": "https://api.kellerpostman.com"
}
Powered by Azure API Management.