Till Payments Options API

Retrieve a list of options

Operations 1

POST /options/{apiKey}/{optionsName} Retrieve an options list based on given option name #

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/till-payments-options-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

till-payments-options-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Till Payments Gateway Options API
  description: Till Payments Gateway
  termsOfService: ''
  contact:
    email: ''
  license:
    name: MIT
  version: 3.0.0
servers:
- url: https://gateway.tillpayments.com/api/v3
security:
- basicAuth: []
tags:
- name: options
  description: Retrieve a list of options
  externalDocs:
    description: Find out more about the options API
    url: https://gateway.tillpayments.com/documentation/apiv3#options-request
paths:
  /options/{apiKey}/{optionsName}:
    post:
      tags:
      - options
      summary: Retrieve an options list based on given option name
      operationId: options
      security: []
      parameters:
      - name: apiKey
        in: path
        description: API Key of Connector
        required: true
        schema:
          type: string
      - name: optionsName
        in: path
        description: Options identifier of the appropriate adapter
        required: true
        schema:
          type: string
      requestBody:
        description: Parameters may be required dependent on the adapter
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OptionsRequest'
            example:
              parameters:
                firstParam: firstValue
                secondParam: secondValue
        required: true
      responses:
        '200':
          description: Options response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OptionsResponse'
              examples:
                success:
                  value:
                    success: true
                    options:
                      bank1: Bank One
                      bank2: Bank Two
                      bank3: Bank Three
                      bank4: Bank Four
                error:
                  value:
                    success: false
                    errorMessage: Given identifier 'someIdentifier' is invalid.
components:
  schemas:
    OptionsResponse:
      type: object
      properties:
        success:
          type: boolean
        options:
          type: array
          items:
            type: object
            properties:
              key:
                type: string
              value:
                type: string
            additionalProperties: false
        error:
          type: string
      additionalProperties: false
    OptionsRequest:
      type: object
      properties:
        parameters:
          type: object
      additionalProperties: false
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
externalDocs:
  description: Till Payments Gateway Documentation
  url: https://gateway.tillpayments.com/documentation/gateway