Brandtrack Partner API

The Partner API from Brandtrack — 2 operation(s) for partner.

Operations 2

POST /partner/accounts/register Create account #
POST /partner/users/{id}/token Creates a new token for requested user. #

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-partner-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-partner-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Brandtrack API Documentation Accounts Partner API
  description: This is the official documentation for the Brandtrack API.
  version: 1.0.0
servers:
- url: api.brandtrack.fm
security:
- default: []
tags:
- name: Partner
  description: ''
paths:
  /partner/accounts/register:
    post:
      summary: Create account
      operationId: createAccount
      description: It creates a new account based on the provided data. Also, create a user and sends the default email.
      parameters:
      - in: header
        name: X-Partner-Key
        description: ''
        example: abc123
        schema:
          type: string
      responses:
        200:
          description: success
          content:
            application/json:
              schema:
                type: object
                example:
                  account_id: 1
                  account_name: test account name
                  user_id: 1
                  url: https://my.brandtrack.fm/login/token/jnli2jphNEn2G8wvAlPBkXdaULoHzgyh
                properties:
                  account_id:
                    type: integer
                    example: 1
                  account_name:
                    type: string
                    example: test account name
                  user_id:
                    type: integer
                    example: 1
                  url:
                    type: string
                    example: https://my.brandtrack.fm/login/token/jnli2jphNEn2G8wvAlPBkXdaULoHzgyh
      tags:
      - Partner
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  description: The name of the account to create.
                  example: VetShop
                country:
                  type: string
                  description: The country in ISO-2 format.
                  example: US
                business_category_id:
                  type: integer
                  description: The business category id of the account.
                  example: 1
                email:
                  type: string
                  description: The email of the account owner.
                  example: john.doe@example.com
                firstname:
                  type:
                  - string
                  - 'null'
                  description: The firstname of the account owner.
                  example: John
                lastname:
                  type:
                  - string
                  - 'null'
                  description: The lastname of the account owner.
                  example: Doe
                phone_number:
                  type: string
                  description: The phone number of the account owner.
                  example: '1234567890'
              required:
              - name
              - country
              - email
      security: []
  /partner/users/{id}/token:
    parameters:
    - in: path
      name: id
      description: The ID of the user.
      example: 1
      required: true
      schema:
        type: integer
    post:
      summary: Creates a new token for requested user.
      operationId: createsANewTokenForRequestedUser
      description: It returns a new token for the user provided that lasts 1 hour and can be used only once.
      parameters:
      - in: header
        name: X-Partner-Key
        description: ''
        example: abc123
        schema:
          type: string
      responses:
        200:
          description: success
          content:
            application/json:
              schema:
                type: object
                example:
                  data:
                    user_id: 1482
                    token: QY2Iqf10lMYRxXToMoqKqwD6wTiPx4EF
                    created_at: '2025-02-07 10:27:21'
                    expires_at: '2025-02-07 11:27:21'
                    url: https://my.brandtrack.fm/login/token/QY2Iqf10lMYRxXToMoqKqwD6wTiPx4EF
                properties:
                  data:
                    type: object
                    properties:
                      user_id:
                        type: integer
                        example: 1482
                      token:
                        type: string
                        example: QY2Iqf10lMYRxXToMoqKqwD6wTiPx4EF
                      created_at:
                        type: string
                        example: '2025-02-07 10:27:21'
                      expires_at:
                        type: string
                        example: '2025-02-07 11:27:21'
                      url:
                        type: string
                        example: https://my.brandtrack.fm/login/token/QY2Iqf10lMYRxXToMoqKqwD6wTiPx4EF
      tags:
      - Partner
      security: []
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.