The CredDot API is organized around REST. Our API has predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.
The CredDot API uses API keys to authenticate requests. You can view and manage your API keys in the CredDot Dashboard.
Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.
All API requests must be made over HTTPS. Calls made over plain HTTP will fail.
Everything worked as expected.
The request was unacceptable, often due to missing a required parameter.
No valid API key provided.
The requested resource doesn't exist.
Something went wrong on CredDot's end.
https://api.creddot.com/v1
curl https://api.creddot.com/v1/transactions \
-u YOUR API KEY: \
-H "Authorization: Bearer YOUR API KEY"
YOU API KEY with your actual test or live secret key from the dashboard.