TabaPay Tag API

The Tag API from TabaPay — 1 operation(s) for tag.

Operations 1

POST /v2/clients/{ClientID}/tags Query Tag #

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/tabapay-tag-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

tabapay-tag-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: TabaPay APIs 3D Secure Tag API
  description: TabaPay Resource and Service Operations
  version: 1.0.0
  license:
    name: All rights reserved
servers:
- url: https://{FQDN}:{PORT}
  description: TabaPay APIs
  variables:
    FQDN:
      default: FQDN
      description: Contact [TabaPay Support](https://tabapay.zendesk.com/hc/en-us/requests/new) for the Fully Qualified Domain Name you should be using.
    PORT:
      default: PORT
      description: Ensure you have the capability to access the PORT TabaPay specifies in your credentials file.
security:
- bearerAuth: []
tags:
- name: Tag
paths:
  /v2/clients/{ClientID}/tags:
    post:
      tags:
      - Tag
      summary: Query Tag
      description: 'Returns whether the last 4 of a phone number match what is on record.

        May also return the owner''s name.'
      operationId: tagQuery
      parameters:
      - $ref: '#/components/parameters/ClientID'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/queryTagName'
        required: true
      responses:
        '200':
          description: "Returns whether the last 4 of a phone number match what is on record. \n May also return the owner's name."
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/queryTagNameResponse'
              examples:
                Successful Match:
                  value:
                    SC: 200
                    EC: '0'
                    codeConfirmResult: M
                    name:
                      first: Sam
                      middle: Wise
                      last: Gamgee
                Successful NO Match:
                  value:
                    SC: 200
                    EC: '0'
                    codeConfirmResult: N
                    name:
                      first: Sam
                      middle: Wise
                      last: Gamgee
                Successful No Match Performed:
                  value:
                    SC: 200
                    EC: '0'
                    codeConfirmResult: A
                    name:
                      first: Sam
                      middle: Wise
                      last: Gamgee
components:
  schemas:
    queryTagName:
      type: object
      required:
      - network
      - tagName
      properties:
        network:
          type: string
          description: "The network of the tag. \nSupported Networks: \n - `Visa`"
          example: Visa
        tagName:
          type: string
          description: "The name of the tag.\n - For Visa, this would be the `payname`"
          example: +sammy.wallet
        phoneLast4:
          type: string
          description: Last 4 digits of the tag owner's phone number.
          example: '4343'
    EC:
      type: string
      description: Internal Error Code. This is used to help TabaPay team members trace an error.
    queryTagNameResponse:
      type: object
      properties:
        SC:
          $ref: '#/components/schemas/SC'
        EC:
          $ref: '#/components/schemas/EC'
        codeConfirmResult:
          type: string
          description: "M = Match \nN = No Match \nA = Match was not performed"
          example: M
        name:
          type: object
          description: Name
          properties:
            first:
              type: string
              description: First name
              example: Sam
            middle:
              type: string
              description: Middle name
              example: Wise
            last:
              type: string
              description: Last Name
              example: Gamkee
    SC:
      type: integer
      description: '[HTTP Status Code](https://developers.tabapay.com/reference/http-status-codes#/)'
  parameters:
    ClientID:
      name: ClientID
      in: path
      description: 22-character <<glossary:ClientID>>. Ask [TabaPay Support](https://tabapay.zendesk.com/hc/en-us/requests/new) if you need to specify a <<glossary:SubClientID>>.
      required: true
      style: simple
      explode: false
      schema:
        type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    custom-header:
      type: apiKey
      name: Authorization
      in: header