HomeGuidesRecipesAPI ReferenceChangelog
Log In

Testing API Calls

Step 1 - Creating the Access Token

Use this endpoint to create an Access Token (JWT bearer token). Pass in your client_idand client_secretfound in the Dashboard by navigating to the gear in the top right corner of the UI. Click the option API Keysfrom the drop down. You can use existing API Keys or create a new one if needed.


Paste the client_id and client_secret from the Dashboard into the appropriate fields on the Create an Access Token page, then click "Try It" in the grey box on the right.

The value within the quotes on line 5 (access_token) of the response block is your bearer token you will pass to all subsequent calls-- not your client_idand client_secret. This token will be valid for 1 hour. After 1 hour, you will need to generate a new access token for security reasons.

Step 2 - Making Subsequent Calls

Let's use the List Providers endpoint as an example.

Paste the bearer token in the top right field of any call in the documentation and click "Try It". This will return the raw JSON data for the given request in the response section.

For List Providers, if you want to query for a specific Provider Name, you can add a filter in the Query Params section. Below is name=="Georgia*" for example. Please see this section for more details on searching. You can then analyze this data on the page itself or copy/paste into a tool like VS Code to see it more clearly.