dLocal · Schema

dLocal Payout

A disbursement sent to a recipient in an emerging market country via dLocal.

PaymentsEmerging MarketsPayinsPayoutsFintechLatin AmericaAfricaAsiaLocal Payment MethodsPayment Processing

Properties

Name Type Description
id string dLocal payout identifier
request_id string Merchant-assigned unique request identifier
amount number
currency string
country string
payment_method_id string
status string
status_code string
status_detail string
created_date string
updated_date string
transaction_id string
beneficiary object
View JSON Schema on GitHub

JSON Schema

payout.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/dlocal/main/json-schema/payout.json",
  "title": "dLocal Payout",
  "description": "A disbursement sent to a recipient in an emerging market country via dLocal.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "dLocal payout identifier",
      "example": "PO-123456789"
    },
    "request_id": {
      "type": "string",
      "description": "Merchant-assigned unique request identifier"
    },
    "amount": {
      "type": "number",
      "minimum": 0
    },
    "currency": {
      "type": "string",
      "pattern": "^[A-Z]{3}$"
    },
    "country": {
      "type": "string",
      "pattern": "^[A-Z]{2}$"
    },
    "payment_method_id": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": ["PENDING", "PROCESSING", "PAID", "REJECTED", "CANCELLED", "HELD"]
    },
    "status_code": {
      "type": "string"
    },
    "status_detail": {
      "type": "string"
    },
    "created_date": {
      "type": "string",
      "format": "date-time"
    },
    "updated_date": {
      "type": "string",
      "format": "date-time"
    },
    "transaction_id": {
      "type": "string"
    },
    "beneficiary": {
      "$ref": "#/definitions/Beneficiary"
    }
  },
  "required": ["id", "request_id", "amount", "currency", "country", "status"],
  "definitions": {
    "Beneficiary": {
      "type": "object",
      "properties": {
        "name": { "type": "string" },
        "lastname": { "type": "string" },
        "document": { "type": "string" },
        "document_type": { "type": "string" },
        "email": { "type": "string", "format": "email" },
        "phone": { "type": "string" },
        "bank_account": {
          "$ref": "#/definitions/BankAccount"
        }
      },
      "required": ["name", "document"]
    },
    "BankAccount": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "enum": ["C", "S"],
          "description": "C=Checking, S=Savings"
        },
        "number": { "type": "string" },
        "agency": { "type": "string" },
        "bank_code": { "type": "string" },
        "clabe": { "type": "string" },
        "iban": { "type": "string" }
      }
    }
  }
}

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.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/payout"
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.