TalkPush Document Tags API API

Collection of endpoints related to Document Tags (Templates)

Operations 1

GET /document_tags Retrieve all the available document tags(templates) on the company account

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-document-tags-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-document-tags-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 Document Tags API
  contact:
    email: admin@talkpush.com
servers:
- url: https://company_subdomain.talkpush.com/api/talkpush_services
tags:
- name: Document Tags API
  description: Collection of endpoints related to Document Tags (Templates)
paths:
  /document_tags:
    get:
      tags:
      - Document Tags API
      summary: Retrieve all the available document tags(templates) on the company account
      description: This endpoint let's you retrieve all the available document tags(templates) on the company account.
      parameters:
      - name: api_key
        in: query
        description: The API key provided for your application
        required: true
        schema:
          type: string
      - name: include_default
        in: query
        description: Optional. If sent as true the default document tags created with the company are returned. Default to false.
        required: false
        allowEmptyValue: true
        schema:
          type: boolean
      responses:
        '200':
          description: Document tags were returned successfully
          content:
            '*/*':
              schema:
                type: object
                properties:
                  document_tags:
                    type: array
                    items:
                      $ref: '#/components/schemas/document_tag_body'
        '500':
          description: Internal server error, we will provide you with the exception message of the application.
components:
  schemas:
    document_tag_body:
      type: object
      properties:
        id:
          type: integer
          description: The ID of the document tag.
        name:
          type: string
          description: The name of the document tag.
        category:
          type: string
          description: The category of the document tag. Values can be 'custom' or 'default'.
        instruction:
          type: string
          description: The instruction of the document tag.
        created_at:
          type: string
          description: The time of the creation of the document tag inside Talkpush.
        updated_at:
          type: string
          description: The time of the last update of the document tag inside Talkpush.