Proton.ai Tracking API

The Tracking API from Proton.ai — 2 operation(s) for tracking.

Operations 2

POST /{company}/track Track - Product Search #
POST /{company}/track/login Track - Login #

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/protonai-tracking-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

protonai-tracking-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Proton Call Notes Tracking API
  version: 1.0.0
  description: The Proton API is an AI-powered suite of REST endpoints for product recommendations and CRM actions (customers, contacts, opportunities, quotes, leads, call notes, tasks, tracking) for B2B distributors. Requests require a static API key in the X-Api-Key header, supplied by Proton at the start of an integration. Derived by API Evangelist from the provider's published public Postman documentation at https://api.proton.ai/.
  contact:
    name: Proton.ai
    url: https://www.proton.ai/
servers:
- url: https://api.proton.ai
  description: 'Production (tenant path: /{company}/...)'
security:
- ApiKeyAuth: []
tags:
- name: Tracking
paths:
  /{company}/track:
    post:
      operationId: trackProductSearch
      summary: Track - Product Search
      tags:
      - Tracking
      description: 'Registers an event when a user submits a search query.

        Usercase:


        On https://shop.{{company}}.com customer "{{customer_id}}" searches for "red apples."'
      parameters:
      - name: company
        in: path
        required: true
        schema:
          type: string
      - name: X-User-Id
        in: header
        required: false
        schema:
          type: string
        description: Acting user id
      - name: X-Company
        in: header
        required: true
        schema:
          type: string
        description: Tenant company slug
      requestBody:
        content:
          application/json:
            schema:
              type: object
            example:
              company: '{{company}}'
              event: search
              customer_id: '{{customer_id}}'
              queryString: red apples
              page_url: https://shop.distributorX.com/products/productID_123
              page_type: productPage
              page_referrer: https://shop.distributorX.com/cart
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
  /{company}/track/login:
    post:
      operationId: trackLogin
      summary: Track - Login
      tags:
      - Tracking
      description: 'Identifies a previously anonymous user.

        Usercase:


        On https://shop.{{company}}.com customer "{{customer_id2}}" logs in and gets assigned a new identifier "{{customer_id}}""'
      parameters:
      - name: company
        in: path
        required: true
        schema:
          type: string
      - name: X-User-Id
        in: header
        required: false
        schema:
          type: string
        description: Acting user id
      - name: X-Company
        in: header
        required: true
        schema:
          type: string
        description: Tenant company slug
      requestBody:
        content:
          application/json:
            schema:
              type: object
            example:
              company: '{{company}}'
              old_customer_id: '{{customer_id2}}'
              new_customer_id: '{{customer_id}}'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key
      description: Static API key supplied by Proton at integration onboarding.