Augustus API Versions API

The API Versions API from Augustus — 1 operation(s) for api versions.

Operations 1

GET /v1/api_versions List API versions #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/augustus-api-versions-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

augustus-api-versions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Augustus Banking API Versions API
  description: Augustus Banking API
  version: 0.1.0
  contact:
    name: Augustus
    url: https://docs.augustus.com
    email: developer@augustus.com
servers:
- url: https://api.augustus.com
  description: Production
- url: https://api.sandbox.augustus.com
  description: Sandbox
security:
- BearerAuth: []
tags:
- name: API Versions
paths:
  /v1/api_versions:
    get:
      description: 'Returns the catalogue of publicly available Augustus Banking API versions, ordered oldest to newest. New accounts and unpinned merchants resolve to the entry with `is_latest: true`. Public: no authentication required.'
      operationId: ApiVersionsController_list
      parameters: []
      responses:
        '200':
          description: API version catalogue
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListApiVersionsResponseDto'
      summary: List API versions
      tags:
      - API Versions
      x-codeSamples:
      - lang: JavaScript
        source: "import Augustus from '@augustusbank/typescript-sdk';\n\nconst client = new Augustus({\n  apiKey: process.env['AUGUSTUS_API_KEY'], // This is the default and can be omitted\n});\n\nconst apiVersions = await client.apiVersions.list();\n\nconsole.log(apiVersions.data);"
components:
  schemas:
    ListApiVersionsResponseDto:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              type:
                type: string
                enum:
                - api_version
              name:
                description: Version identifier as sent in the `api-version` request header.
                type: string
              released_at:
                description: When this version became publicly available, ISO 8601 UTC.
                type: string
                format: date-time
              is_latest:
                description: True for the most recently published version. New accounts and unpinned merchants resolve to this version.
                type: boolean
              deprecated_at:
                description: When this version was marked deprecated, ISO 8601 UTC. Null if not deprecated.
                type: string
                format: date-time
                nullable: true
              sunset_at:
                description: When this version will stop being served, ISO 8601 UTC. Null if no sunset is scheduled.
                type: string
                format: date-time
                nullable: true
            required:
            - type
            - name
            - released_at
            - is_latest
            - deprecated_at
            - sunset_at
        has_more:
          type: boolean
        next_cursor:
          type: string
          nullable: true
      required:
      - data
      - has_more
      - next_cursor
  securitySchemes:
    BearerAuth:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: Bearer token for authentication with Augustus Banking API