Getting Started
Authentication
Prerequisite
To authenticate to the API, you need to have the API access credentials, these are provided by the credify team upon sign up.
Flow
We use Bearer tokens to authentication API requests.
- Use the Login endpoint to obtain the access token.
- you use the token as
Bearer <token>
on theAuthorization
HTTP header.
API Docs
API fields
Timestamps
Timestamps are a standard used to represent the date in a numerical format, to
make it easier to consume by any language. The timestamp is represented in the
number of milliseconds since Unix Epoch 1/1/1970 00:00:00
.
This section aims to provide some example on how to use it in different languages.
- Node JS
- C#
const timestamp = 1614556800000
const date = new Date(1614556800000);
var timestamp = 1614556800000;
var date = DateTimeOffset
.FromUnixTimeMilliseconds(timestamp).DateTime;
Open API Specs
For the full API documentation check out API Reference.
For help, you can always reach us on support@credify.live.