Brandtrack Subscriptions API

The Subscriptions API from Brandtrack — 2 operation(s) for subscriptions.

Operations 2

GET /v2/subscriptions List subscriptions #
GET /v2/subscriptions/{id} Get a subscription by its ID #

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/brandtrack-subscriptions-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

brandtrack-subscriptions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Brandtrack API Documentation Accounts Subscriptions API
  description: This is the official documentation for the Brandtrack API.
  version: 1.0.0
servers:
- url: api.brandtrack.fm
security:
- default: []
tags:
- name: Subscriptions
  description: ''
paths:
  /v2/subscriptions:
    get:
      summary: List subscriptions
      operationId: listSubscriptions
      description: Return a paginated list of subscriptions available for the authenticated user.
      parameters:
      - in: query
        name: page
        description: The page requested. Default to 1.
        example: 1
        required: false
        schema:
          type: integer
          description: The page requested. Default to 1.
          example: 1
      - in: query
        name: per_page
        description: The number of items per page. Default to 25.
        example: 100
        required: false
        schema:
          type: integer
          description: The number of items per page. Default to 25.
          example: 100
      - in: query
        name: order_by
        description: The field to order the results by. Default to id.
        example: id
        required: false
        schema:
          type: string
          description: The field to order the results by. Default to id.
          example: id
      - in: query
        name: direction
        description: The direction method to sort results. Default to asc.
        example: desc
        required: false
        schema:
          type: string
          description: The direction method to sort results. Default to asc.
          example: desc
      - in: header
        name: x-customer-api-key
        description: ''
        example: '{YOUR_AUTH_KEY}'
        schema:
          type: string
      responses: {}
      tags:
      - Subscriptions
  /v2/subscriptions/{id}:
    parameters:
    - in: path
      name: id
      description: The ID of the subscription.
      example: 5392
      required: true
      schema:
        type: integer
    get:
      summary: Get a subscription by its ID
      operationId: getASubscriptionByItsID
      description: Return a single subscription by its ID, if available to the authenticated user.
      parameters:
      - in: query
        name: using_account_id
        description: Set this ID to filter records only to this particular account. By not providing anything, results from all accounts will be returned. Default to null.
        example: 0
        required: false
        schema:
          type: integer
          description: Set this ID to filter records only to this particular account. By not providing anything, results from all accounts will be returned. Default to null.
          example: 0
      - in: header
        name: x-customer-api-key
        description: ''
        example: '{YOUR_AUTH_KEY}'
        schema:
          type: string
      responses:
        404:
          description: Wrong ID
          content:
            application/json:
              schema:
                type: object
                example:
                  message: 404 Not Found
                  status_code: 404
                properties:
                  message:
                    type: string
                    example: 404 Not Found
                  status_code:
                    type: integer
                    example: 404
      tags:
      - Subscriptions
components:
  securitySchemes:
    default:
      type: apiKey
      name: x-customer-api-key
      in: header
      description: If are not sure about how to get your token feel free to contact our team.