Tabby · Schema
TabbyCheckoutSession
Tabby checkout session returned by POST /api/v2/checkout. Wraps the pre-scoring result, payment object, available products, and merchant redirect URLs.
BNPLBuy Now Pay LaterConsumer FinanceE-CommerceFintechInstallmentsMENAPaymentsSaudi ArabiaUAE
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Checkout session identifier. |
| status | string | Pre-scoring result for the session. |
| token | stringnull | Session token issued when status is approved. |
| payment | object | Embedded payment object created with the session. |
| configuration | object | Available BNPL products and rejection reasons for the session. |
| merchant_urls | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/tabby/main/json-schema/tabby-checkout-session-schema.json",
"title": "TabbyCheckoutSession",
"description": "Tabby checkout session returned by POST /api/v2/checkout. Wraps the pre-scoring result, payment object, available products, and merchant redirect URLs.",
"type": "object",
"required": ["id", "status", "payment", "configuration"],
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "Checkout session identifier."
},
"status": {
"type": "string",
"enum": ["created", "approved", "rejected", "expired"],
"description": "Pre-scoring result for the session."
},
"token": {
"type": ["string", "null"],
"description": "Session token issued when status is approved."
},
"payment": {
"type": "object",
"description": "Embedded payment object created with the session.",
"required": ["id", "amount", "currency", "status"],
"properties": {
"id": { "type": "string", "format": "uuid" },
"created_at": { "type": "string", "format": "date-time" },
"status": {
"type": "string",
"enum": ["CREATED", "AUTHORIZED", "CLOSED", "REJECTED", "EXPIRED"]
},
"is_test": { "type": "boolean" },
"amount": { "type": "string", "description": "Decimal-encoded amount (2 decimals AED/SAR, 3 for KWD)." },
"currency": { "type": "string", "enum": ["AED", "SAR", "KWD"] },
"description": { "type": "string" }
}
},
"configuration": {
"type": "object",
"description": "Available BNPL products and rejection reasons for the session.",
"properties": {
"available_products": {
"type": "object",
"properties": {
"installments": {
"type": "array",
"items": {
"type": "object",
"properties": {
"web_url": { "type": "string", "format": "uri" },
"qr_code": { "type": "string", "format": "uri" }
}
}
}
}
},
"products": {
"type": "object",
"properties": {
"installments": {
"type": "object",
"properties": {
"type": { "type": "string", "const": "installments" },
"is_available": { "type": "boolean" },
"rejection_reason": {
"type": ["string", "null"],
"enum": ["order_amount_too_high", "order_amount_too_low", "not_available", null]
}
}
}
}
}
}
},
"merchant_urls": {
"type": "object",
"properties": {
"success": { "type": "string", "format": "uri" },
"cancel": { "type": "string", "format": "uri" },
"failure": { "type": "string", "format": "uri" }
}
}
}
}
Work with this as data
Every JSON Schema 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 schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.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 JSON Schema
curl "https://apis.io/api/v1/json-schemas/tabby-checkout-session"
All schemas
curl "https://apis.io/api/v1/json-schemas?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.