Heap Identify API

The Identify API from Heap — 1 operation(s) for identify.

Operations 1

POST /api/v1/identify Identify a 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/heap-identify-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

heap-identify-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Heap Server-Side Identify API
  description: 'Heap''s server-side APIs let backend services send events, attach

    identities, and update user/account properties in a Heap workspace.

    All requests are JSON POSTs against https://heapanalytics.com. The

    workspace is identified via the `app_id` (environment ID) included in

    each request body.

    '
  version: 1.0.0
  contact:
    name: Heap Developers
    url: https://developers.heap.io/
servers:
- url: https://heapanalytics.com
  description: Heap analytics ingestion server
tags:
- name: Identify
paths:
  /api/v1/identify:
    post:
      summary: Identify a user
      description: 'Migrates all events from an anonymous user_id to an identified user.

        One identity is allowed per user_id; a maximum of 10 user_ids can be

        associated with an identity in a rolling one-month window.

        '
      operationId: identify
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IdentifyRequest'
      responses:
        '200':
          description: Identity recorded.
        '400':
          description: Invalid request parameters.
      tags:
      - Identify
components:
  schemas:
    IdentifyRequest:
      type: object
      required:
      - app_id
      - identity
      - user_id
      properties:
        app_id:
          type: string
          description: Environment ID of your Heap project.
        identity:
          type: string
          maxLength: 255
          description: Case-sensitive identity, typically a user identifier.
        user_id:
          type: string
          description: The user_id from the Heap SDK (numeric string).
        timestamp:
          type: string
          format: date-time
          description: ISO 8601 timestamp; defaults to current time.