Skip to main content
POST
https://checkout.dintero.com/v1
/
creditchecks
creditchecks_post
curl --request POST \
  --url https://checkout.dintero.com/v1/creditchecks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "credit_providers": [
    "collector"
  ],
  "amount": 10000,
  "currency": "NOK",
  "applicant": {
    "billing_address": {
      "first_name": "John",
      "last_name": "Doe",
      "address_line": "<string>",
      "address_line_2": "<string>",
      "co_address": "Land Lord",
      "business_name": "<string>",
      "postal_code": "0349",
      "postal_place": "Oslo",
      "country": "NO",
      "phone_number": "<string>",
      "email": "<string>",
      "latitude": 123,
      "longitude": 123,
      "comment": "<string>",
      "organization_number": "<string>",
      "organization_type": "<string>",
      "customer_reference": "<string>",
      "cost_center": "<string>"
    }
  }
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-12-25",
  "amount": 123,
  "results": [
    {
      "credit_provider": "collector",
      "status": "approved"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.dintero.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication (token authentication) should be used for accessing the API.

Use Get Token to get an access token for client credentials. Pass the token in the request header:

Authorization: Bearer {access_token}

where the access_token is JSON Web Tokens (JWT).

Body

application/json
credit_providers
enum<string>[]
required
Available options:
collector
amount
integer
required

reward amount for the the ref used, monetary amount in smallest unit for the currency

Example:

10000

currency
string<iso4217-code>
required

The three-character ISO-4217 currency. https://en.wikipedia.org/wiki/ISO_4217

Example:

"NOK"

applicant
object
required
store
object
check_type
enum<string>
  • synchronous - (default) the answer will come directly in the response
Available options:
synchronous

Response

credit check result

id
string<uuid>

Unique identifier of credit check

created_at
string<date>
amount
integer

The amount applied for

results
object[]
Last modified on May 12, 2026