Sybilion Usage API

The Usage API from Sybilion — 1 operation(s) for usage.

Operations 1

GET /api/v1/usage Billing history (paginated usage events)

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/sybilion-usage-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

sybilion-usage-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 'The Sybilion API powers the Sybilion Developers Portal: forecasts, drivers, catalog, account

    and usage. Authenticate every request with `Authorization: Bearer <token>` using either an

    API key created in the Developers Portal or an Auth0 access token from your dashboard session.

    '
  title: Sybilion Usage API
  version: 0.1.0
servers:
- url: /
tags:
- name: Usage
paths:
  /api/v1/usage:
    get:
      description: 'Returns billing history as a paginated list of usage events. Each event

        represents one charge — either a completed async job or a synchronous billed

        API call. Use `sort` and `order` to control the result order.

        '
      parameters:
      - description: 1-indexed page number.
        in: query
        name: page
        required: false
        schema:
          default: 1
          minimum: 1
          type: integer
      - description: Page size. Capped at 200.
        in: query
        name: limit
        required: false
        schema:
          default: 50
          maximum: 200
          minimum: 1
          type: integer
      - description: Column to sort by.
        in: query
        name: sort
        required: false
        schema:
          default: id
          enum:
          - id
          - created_at
          - eur_cents_charged
          - credits_charged
          - units
          type: string
      - description: Sort direction.
        in: query
        name: order
        required: false
        schema:
          default: desc
          enum:
          - asc
          - desc
          type: string
      responses:
        '200':
          content:
            application/json:
              example:
                pagination:
                  page: 1
                  limit: 50
                  total: 2
                  total_pages: 1
                  sort: id
                  order: desc
                usage_events:
                - id: 8471
                  endpoint: drivers
                  units: 20
                  credits_charged: 22
                  eur_cents_charged: 22
                  created_at: '2026-05-24T14:32:10Z'
                  async_job_id: null
                - id: 8320
                  endpoint: forecast
                  units: 1
                  credits_charged: 250
                  eur_cents_charged: 250
                  created_at: '2026-05-01T10:04:32Z'
                  async_job_id: a1b2c3d4-e5f6-7890-abcd-ef1234567890
              schema:
                properties:
                  pagination:
                    $ref: '#/components/schemas/Pagination'
                  usage_events:
                    items:
                      $ref: '#/components/schemas/UsageEvent'
                    type: array
                required:
                - usage_events
                - pagination
                type: object
          description: Paginated billing history.
        '400':
          description: Invalid query parameter — bad `page`, `limit`, `sort`, or `order` value.
        '401':
          description: Missing or invalid bearer token.
      security:
      - bearerAuth: []
      summary: Billing history (paginated usage events)
      tags:
      - Usage
components:
  schemas:
    Pagination:
      properties:
        limit:
          description: Page size echoed back from the request.
          maximum: 200
          minimum: 1
          type: integer
        order:
          description: Sort direction.
          enum:
          - asc
          - desc
          type: string
        page:
          description: 1-indexed current page number echoed back from the request.
          minimum: 1
          type: integer
        sort:
          description: Column the rows are sorted by.
          enum:
          - id
          - created_at
          - eur_cents_charged
          - credits_charged
          - units
          type: string
        total:
          description: Total matching rows for the authenticated user (full set, not just this page).
          format: int64
          minimum: 0
          type: integer
        total_pages:
          description: ceil(total / limit). Zero when total is zero.
          format: int64
          minimum: 0
          type: integer
      required:
      - page
      - limit
      - total
      - total_pages
      - sort
      - order
      type: object
    UsageEvent:
      description: A single billing charge, corresponding to one API call or one completed async job.
      example:
        id: 8471
        endpoint: drivers
        units: 20
        credits_charged: 22
        eur_cents_charged: 22
        created_at: '2026-05-24T14:32:10Z'
        async_job_id: null
      properties:
        async_job_id:
          description: The `async_jobs.id` (UUID) for async pipeline charges; null for synchronous endpoint charges.
          format: uuid
          type:
          - string
          - 'null'
        created_at:
          description: Timestamp of the charge (ISO 8601).
          type: string
        credits_charged:
          description: Whole credits debited for this row before EUR conversion.
          format: int64
          type: integer
        endpoint:
          description: Billing route key (e.g. `drivers`, `alerts`, or a forecast pipeline type).
          type: string
        eur_cents_charged:
          description: EUR cents debited for this row (1 EUR = 100 cents).
          format: int64
          type: integer
        id:
          description: Auto-increment row identifier.
          format: int64
          type: integer
        units:
          description: Metered quantity — item count for per-unit pricing, 1 for flat-fee strategies.
          format: int64
          type: integer
      required:
      - id
      - units
      - credits_charged
      - eur_cents_charged
      - created_at
      type: object
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http