Skip to main content
GET
https://api.dintero.com/v1
/
accounts
/
{oid}
/
auth
/
keys
aid_auths_keys_get
curl --request GET \
  --url https://api.dintero.com/v1/accounts/{oid}/auth/keys \
  --header 'Authorization: Bearer <token>'
[
  {
    "alg": "RS256",
    "kty": "RSA",
    "use": "sig",
    "n": "lC4ehVB6W0OCtNPnz8udYH9Ao83B6EKnHA5eTcMOap_lQZ-nKtS1lZwBj4wXRVc1XmS0d2OQFA1VMQ-dHLDE3CiGfsGqWbaiZFdW7U\nGLO1nAwfDdH6xp3xwpKOMewDXbAHJlXdYYAe2ap-CE9c5WLTUBU6JROuWcorHCNJisj1aExyiY5t3JQQVGpBz2oUIHo7NRzQoKimvp\ndMvMzcYnTlk1dhlG11b1GTkBclprm1BmOP7Ltjd7aEumOJWS67nKcAZzl48Zyg5KtV11V9F9dkGt25qHauqFKL7w3wu-DYhT0hmyFc\nwn-tXS6e6HQbfHhR_MQxysLtDGOk2ViWv8AQ\n",
    "e": "AQAB",
    "kid": "a8fdc205a9f19cc1c7507a60c4f01b13d11d7fd0"
  }
]

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).

Path Parameters

oid
string<^[PT]{1}(?=(?:.{3}|.{8})$)[0-9]*$>
required

An id that uniquely identifies the account or owner (partner)

Response

Keys Collection

alg
string

The algorithm for the key

Example:

"RS256"

kty
enum<string>

The key type

Available options:
RSA
use
enum<string>

The intended use of the public key

Available options:
sig
n
string

The modulus for a standard pem

Example:

"lC4ehVB6W0OCtNPnz8udYH9Ao83B6EKnHA5eTcMOap_lQZ-nKtS1lZwBj4wXRVc1XmS0d2OQFA1VMQ-dHLDE3CiGfsGqWbaiZFdW7U\nGLO1nAwfDdH6xp3xwpKOMewDXbAHJlXdYYAe2ap-CE9c5WLTUBU6JROuWcorHCNJisj1aExyiY5t3JQQVGpBz2oUIHo7NRzQoKimvp\ndMvMzcYnTlk1dhlG11b1GTkBclprm1BmOP7Ltjd7aEumOJWS67nKcAZzl48Zyg5KtV11V9F9dkGt25qHauqFKL7w3wu-DYhT0hmyFc\nwn-tXS6e6HQbfHhR_MQxysLtDGOk2ViWv8AQ\n"

e
string

The exponent for a standard pem

Example:

"AQAB"

kid
string

The unique identifier for the key

Example:

"a8fdc205a9f19cc1c7507a60c4f01b13d11d7fd0"

Last modified on May 12, 2026