TalkPush Tokens API API

Endpoint for discovering the message tokens available for use inside Message Templates. Returns both system-level reserved tokens (e.g. `candidate_name`, `job_title`) and any custom tokens configured for the company.

Operations 1

GET /messaging/tokens List available message tokens

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/talkpush-tokens-api-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

talkpush-tokens-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: '<b>Production Base URL to be used during implementation:</b> {your company workspace subdomain}.talkpush.com/api/talkpush_services


    With the Talkpush APIs you can instantly plug your lead source into out platform to enjoy the benefits of Talkpush. You can also synch your <b> existing HR / Recruitment technology stack </b> with your Talkpush account. To be able to use our API you will need pass an api key as a parameter for each API call.  In case you do not know your current API key you can contact our support team at cs@talkpush.com.

    '
  version: '2.0'
  title: Talkpush Agents Tokens API
  contact:
    email: admin@talkpush.com
servers:
- url: https://company_subdomain.talkpush.com/api/talkpush_services
tags:
- name: Tokens API
  description: Endpoint for discovering the message tokens available for use inside Message Templates. Returns both system-level reserved tokens (e.g. `candidate_name`, `job_title`) and any custom tokens configured for the company.
paths:
  /messaging/tokens:
    get:
      tags:
      - Tokens API
      summary: List available message tokens
      description: 'Returns all tokens that can be used inside a Message Template''s `content` field. The list includes:


        - **System tokens** — built-in reserved words (e.g. `candidate_name`, `job_title`, `scheduler_url`) that are resolved at send time.

        - **Custom tokens** — company-defined tokens created by your team.


        Use the `id` of a token as the Handlebars key in template content: `{{candidate_name}}`, `{{job_title}}`, etc.


        **Filtering:** Use `display_name` for a case-insensitive partial-match filter to quickly find the token you need.'
      parameters:
      - name: api_key
        in: query
        description: The API key provided for your application.
        required: true
        schema:
          type: string
      - name: display_name
        in: query
        description: Case-insensitive partial-match filter on the token display name (e.g. `candidate` returns all candidate-related tokens).
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Tokens returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/tokens_list_response'
        '401':
          description: Missing, invalid, or inactive API key.
        '500':
          description: Internal server error; the response may include an exception message.
components:
  schemas:
    tokens_list_response:
      type: object
      required:
      - tokens
      properties:
        tokens:
          type: array
          items:
            $ref: '#/components/schemas/token'
    token:
      type: object
      description: A message token available for use in template content.
      properties:
        id:
          type: string
          description: The token key used in Handlebars syntax — use this as `{{id}}` in `content`.
          example: candidate_name
        display_name:
          type: string
          description: Human-readable label shown in the UI.
          example: Candidate Name
        description:
          type:
          - string
          - 'null'
          description: Optional description of what the token resolves to at send time. `null` for system tokens.
          example: null
      required:
      - id
      - display_name
      - description