Skip to main content
GET
/
v1
/
api_versions
JavaScript
import Augustus from '@augustusbank/typescript-sdk';

const client = new Augustus({
  apiKey: process.env['AUGUSTUS_API_KEY'], // This is the default and can be omitted
});

const apiVersions = await client.apiVersions.list();

console.log(apiVersions.data);
{
  "data": [
    {
      "type": "api_version",
      "name": "<string>",
      "released_at": "2023-11-07T05:31:56Z",
      "is_latest": true,
      "deprecated_at": "2023-11-07T05:31:56Z",
      "sunset_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

Bearer token for authentication with Augustus Banking API

Response

200 - application/json

API version catalogue

data
object[]
required
has_more
boolean
required
next_cursor
string | null
required