Talkable Visitors API

The Visitors API from Talkable — 1 operation(s) for visitors.

Operations 1

POST /api/v2/visitors Create a visitor #

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/talkable-visitors-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 email required.

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

OpenAPI Specification

talkable-visitors-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Talkable Advocate Offers Visitors API
  version: '2.0'
  contact:
    name: API Reference
    url: https://docs.talkable.com/api_v2/
servers:
- url: https://www.talkable.com
security:
- api_key: []
tags:
- name: Visitors
paths:
  /api/v2/visitors:
    post:
      summary: Create a visitor
      tags:
      - Visitors
      parameters: []
      operationId: createVisitor
      responses:
        '200':
          description: visitor created
          content:
            application/json:
              example:
                ok: true
                result:
                  uuid: 123e4567-e89b-32d1-a456-426614174000
        '400':
          description: site not found
          content:
            application/json:
              example:
                ok: false
                error_message: No site found by `site_slug`.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                site_slug:
                  $ref: ../schemas.yaml#/site_slug
                data:
                  type: object
                  properties:
                    uuid:
                      $ref: '#/components/schemas/visitor_uuid'
                  required:
                  - uuid
              required:
              - site_slug
              - data
components:
  schemas:
    visitor_uuid:
      type: string
      format: uuid
      example: 123e4567-e89b-32d1-a456-426614174000
  securitySchemes:
    api_key:
      type: http
      scheme: bearer
      description: Please provide here your API key, you can find it in Site Settings -> API Integration -> API Key