Tabs Merchant API

The Merchant API from Tabs — 2 operation(s) for merchant.

Operations 2

GET /v3/merchant/info Get merchant info #
GET /v3/merchant/book-close-date Get book close date #

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/tabs-merchant-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

tabs-merchant-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tabs External Merchant API
  description: ''
  version: 1.0.0
  contact: {}
  x-apievangelist:
    generated: '2026-07-21'
    method: searched
    source: https://docs.tabsplatform.com/reference (OpenAPI definitions embedded per-operation in the ReadMe reference pages, merged; index at https://docs.tabsplatform.com/llms.txt)
    source_pages: 93
servers:
- url: https://integrators.prod.api.tabsplatform.com
security:
- custom-header: []
tags:
- name: Merchant
paths:
  /v3/merchant/info:
    get:
      operationId: IntegratorsApiMerchantsControllerV3_getMerchantInfo
      parameters: []
      responses:
        '200':
          description: Merchant Info
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/IntegratorsApiResponse'
                - properties:
                    payload:
                      allOf:
                      - $ref: '#/components/schemas/MerchantInfoDto'
        '404':
          description: Merchant not found
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/IntegratorsApiResponse'
                - properties:
                    payload:
                      type:
                      - object
                      - 'null'
                    success:
                      type: boolean
                      example: false
                    message:
                      type: string
                      example: Operation failed
                    error:
                      type: object
                      properties:
                        code:
                          type: number
                          example: 404
                        message:
                          type: string
                          example: Merchant not found
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/IntegratorsApiResponse'
                - properties:
                    payload:
                      type:
                      - object
                      - 'null'
                    success:
                      type: boolean
                      example: false
                    message:
                      type: string
                      example: Operation failed
                    error:
                      type: object
                      properties:
                        code:
                          type: number
                          example: 500
                        message:
                          type: string
                          example: Internal server error
      summary: Get merchant info
      tags:
      - Merchant
  /v3/merchant/book-close-date:
    get:
      operationId: IntegratorsApiMerchantsControllerV3_getBookCloseDate
      parameters: []
      responses:
        '200':
          description: Merchant book close date
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/IntegratorsApiResponse'
                - properties:
                    payload:
                      allOf:
                      - $ref: '#/components/schemas/BookCloseDateDto'
      summary: Get book close date
      tags:
      - Merchant
components:
  schemas:
    BookCloseDateDto:
      type: object
      properties:
        isSet:
          type: boolean
          description: Whether a book close date is set for the merchant.
          example: true
        bookCloseDate:
          type:
          - string
          - 'null'
          description: The merchant's book close date. Null when no accounting period is enforced or closed.
          format: date-time
          example: '2025-12-31T00:00:00.000Z'
      required:
      - isSet
    MerchantInfoDto:
      type: object
      properties:
        id:
          type: string
          description: Merchant ID
          example: 123e4567-e89b-12d3-a456-426614174000
        preferredName:
          type: string
          description: Merchant Preferred Name
          example: Merchant 1
        internalName:
          type: string
          description: Merchant Internal Name
          example: Merchant 1
        billingContact:
          type: object
          description: Merchant Billing Contact
          example:
            email: billing@merchant.com
            phone: +1-555-123-4567
          properties:
            email:
              type: string
              example: billing@merchant.com
            phone:
              type: string
              example: +1-555-123-4567
        logo:
          type: string
          description: Merchant Logo as Data URL
          example: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA...
      required:
      - id
    IntegratorsApiResponse:
      type: object
      properties:
        payload:
          type: object
          description: Response payload, will be empty when success is false
        success:
          type: boolean
          description: Boolean with true=success, false=failure
        message:
          type: string
          description: Plain-text description of the result
        error:
          description: json element with any error messages or warnings
          allOf:
          - $ref: '#/components/schemas/IntegratorsApiError'
      required:
      - payload
      - success
      - message
      - error
    IntegratorsApiError:
      type: object
      properties:
        code:
          type: number
          description: API response code
        message:
          type: string
          description: API response message
        details:
          type: object
          description: Additional details about the error
      required:
      - code
      - message
  securitySchemes:
    custom-header:
      type: apiKey
      name: Authorization
      in: header