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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/tillo-brands-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
openapi: 3.2.0
info:
title: Tillo Gift Card Balance Brands API
description: The Tillo Gift Card API enables businesses to issue digital and physical gift cards from 4,000+ global brands across 37 markets and 16 currencies. Supports synchronous and asynchronous card issuance, balance checking, stock checking, refunds, order status, float management, and brand catalog access. Authentication uses HMAC-SHA256 signatures.
version: v2
contact:
name: Tillo Support
url: https://www.tillo.io/
email: onboarding@tillo.io
termsOfService: https://www.tillo.io/legal
servers:
- url: https://app.tillo.io/api/v2
description: Tillo Production API
security:
- HMACAuth: []
tags:
- name: Brands
description: Brand catalog and information
paths:
/brands:
get:
operationId: listBrands
summary: List Brands
description: Retrieves the list of gift card brands available to your account, including brand metadata, supported denominations, transaction types, and currency information.
tags:
- Brands
parameters:
- name: country
in: query
required: false
schema:
type: string
description: Filter by ISO 3166-1 alpha-2 country code (e.g., GB, US)
- name: currency
in: query
required: false
schema:
type: string
description: Filter by ISO 4217 currency code (e.g., GBP, USD)
- name: async_only
in: query
required: false
schema:
type: boolean
description: Filter to async-only brands
- name: category
in: query
required: false
schema:
type: string
description: Filter by brand category
responses:
'200':
description: Brand list returned successfully
content:
application/json:
schema:
$ref: '#/components/schemas/BrandListResponse'
'401':
description: Unauthorized - Invalid HMAC signature
/brands/{brand_identifier}:
get:
operationId: getBrand
summary: Get Brand
description: Retrieves detailed information for a specific brand by its identifier slug.
tags:
- Brands
parameters:
- name: brand_identifier
in: path
required: true
schema:
type: string
description: Unique brand slug/identifier
responses:
'200':
description: Brand details returned
content:
application/json:
schema:
$ref: '#/components/schemas/BrandDetailResponse'
'404':
description: Brand not found
components:
schemas:
Brand:
type: object
properties:
name:
type: string
description: Brand display name
identifier:
type: string
description: Unique brand slug
country:
type: string
description: ISO 3166-1 alpha-2 country code
currency:
type: string
description: ISO 4217 currency code
min_value:
type: number
description: Minimum denomination
max_value:
type: number
description: Maximum denomination
face_value:
type: array
items:
type: number
description: Fixed denominations (for fixed-value brands)
async_only:
type: boolean
description: Whether this brand requires asynchronous ordering
transaction_types:
type: array
items:
type: string
enum:
- issue
- balance_check
- top_up
- refund
description: Supported transaction types
category:
type: string
description: Brand category
logo_url:
type: string
description: URL of brand logo
terms_and_conditions_copy:
type: string
description: Brand T&C text
BrandDetailResponse:
type: object
properties:
status:
type: string
brand:
$ref: '#/components/schemas/Brand'
BrandListResponse:
type: object
properties:
status:
type: string
brands:
type: array
items:
$ref: '#/components/schemas/Brand'
securitySchemes:
HMACAuth:
type: apiKey
in: header
name: Authorization
description: HMAC-SHA256 signature. Signature is built from API Key, HTTP Method, Endpoint, Client Request ID, Brand Identifier, and UTC Timestamp (ms), concatenated with hyphens and hashed with your API Secret.