Skip to main content

Get the API client credentials

  1. Open the MyCreditApp Portal Settings from the sidebar menu.
  2. Navigate to the API Clients tab.
  3. Click Create API Client to generate new credentials.
  4. Enter a name for your API client and click Create.
  5. Copy and securely store your API client credentials.
Keep your client secret safe! You will not be able to view it again. If it’s lost, you’ll need to create a new API client.

Authenticate with Your API Client Credentials

To obtain an access token for your API client, follow the guide Generate OAuth2 client credentials token. The response will include your access token:
{
  "access_token": "<string>",
  "expires_in": 123
}
Use the access_token in all subsequent API requests. The token is valid for expires_in seconds.

API Base URL

The MyCreditApp API uses the following URL structure:
HTTP
{base_uri}/{version}/{module}/...
  • Base URI: https://api.mycreditapp.ai;
  • Version: current version is v1;
  • Module: any module available in v1, for example organizations.

Example API call

Once you have your access token, you can make your first API request:
curl --request GET \
  --url https://api.mycreditapp.ai/v1/resources/currencies \
  --header 'Authorization: Bearer <Your access token>'
Replace Your access token with the token you retrieved in the previous step.