> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tender.cash/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Payout

> Retrieve a single payout record by ID

<Note>
  **Auth method: Signed (HMAC)** — this endpoint requires the full set of signed
  headers: `x-access-id`, `x-request-id`, `x-timestamp`, and an HMAC-SHA256
  `authorization` signature. See [Authentication](/api-reference/authentication#signed-hmac-authentication).
</Note>

## Headers

<ParamField header="x-access-id" type="string" required>
  Your API access ID provided by Tender

  **Example:** `"your-access-id-here"`
</ParamField>

## Path Parameters

<ParamField path="id" type="string" required>
  The unique payout ID

  **Example:** `"66aec7de809b7f45c42a49f9"`
</ParamField>

## Response

<ResponseField name="status" type="string" required>
  **Example:** `"success"`
</ResponseField>

<ResponseField name="message" type="string" required>
  **Example:** `"success"`
</ResponseField>

<ResponseField name="data" type="object" required>
  The payout record

  <Expandable title="data properties">
    <ResponseField name="_id" type="string">
      **Example:** `"66aec7de809b7f45c42a49f9"`
    </ResponseField>

    <ResponseField name="merchantId" type="string">
      **Example:** `"6538e8f9bdec6d1a21978a64"`
    </ResponseField>

    <ResponseField name="type" type="string">
      **Example:** `"crypto"`
    </ResponseField>

    <ResponseField name="status" type="string">
      **Example:** `"completed"`
    </ResponseField>

    <ResponseField name="amount" type="string">
      **Example:** `"50"`
    </ResponseField>

    <ResponseField name="coin" type="string">
      **Example:** `"usdt"`
    </ResponseField>

    <ResponseField name="chain" type="string">
      **Example:** `"tron"`
    </ResponseField>

    <ResponseField name="address" type="string">
      **Example:** `"TQn9Y2khDD9JHTfVE5oB2h8BKWWM4LxKLT"`
    </ResponseField>

    <ResponseField name="fee" type="string">
      **Example:** `"0.5"`
    </ResponseField>

    <ResponseField name="feeUSD" type="string">
      **Example:** `"0.50"`
    </ResponseField>

    <ResponseField name="txHash" type="string">
      **Example:** `"0xabc123..."`
    </ResponseField>

    <ResponseField name="createdAt" type="string">
      **Example:** `"2024-09-24T22:20:15.650Z"`
    </ResponseField>

    <ResponseField name="updatedAt" type="string">
      **Example:** `"2024-09-24T22:25:00.000Z"`
    </ResponseField>
  </Expandable>
</ResponseField>


## OpenAPI

````yaml GET /v1/api/payout/{id}
openapi: 3.1.0
info:
  title: Tender API
  description: Tender Developer API for cryptocurrency payments and agent management
  version: 1.0.0
  contact:
    name: Tender Support
    url: https://tender.cash
servers:
  - url: https://secureapi.tender.cash
    description: Production Server
  - url: https://sandbox-api.tender.cash
    description: Sandbox Server
security:
  - SignedAuth: []
tags:
  - name: Agents
    description: Manage agents and sub-businesses
  - name: Transactions
    description: Payment and transaction operations
  - name: System
    description: System information and configuration
  - name: Webhooks
    description: Webhook management and logs
  - name: On-ramp
    description: Fiat-to-crypto on-ramp operations
  - name: Payouts
    description: Send crypto from merchant balance to a wallet address or payout account
  - name: Subwallets
    description: Provision and manage crypto wallet infrastructure for your end-users
paths:
  /v1/api/payout/{id}:
    get:
      tags:
        - Payouts
      summary: Get Payout
      description: Retrieve a single payout record by ID.
      operationId: getPayout
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          example: 66aec7de809b7f45c42a49f9
        - name: authorization
          in: header
          required: true
          schema:
            type: string
        - name: x-timestamp
          in: header
          required: true
          schema:
            type: string
            format: date-time
          example: '2025-03-15T09:45:53.000Z'
        - name: x-request-id
          in: header
          required: true
          schema:
            type: string
            format: uuid
          example: 550e8400-e29b-41d4-a716-446655440000
        - name: x-access-id
          in: header
          required: true
          schema:
            type: string
          example: your-access-id-here
      responses:
        '200':
          description: Payout record
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PayoutRecord'
              example:
                status: success
                message: success
                data:
                  _id: 66aec7de809b7f45c42a49f9
                  merchantId: 6538e8f9bdec6d1a21978a64
                  type: crypto
                  status: completed
                  amount: '50'
                  coin: usdt
                  chain: tron
                  address: TQn9Y2khDD9JHTfVE5oB2h8BKWWM4LxKLT
                  fee: '0.5'
                  feeUSD: '0.50'
                  txHash: 0xabc123def456...
                  createdAt: '2024-09-24T22:20:15.650Z'
                  updatedAt: '2024-09-24T22:25:00.000Z'
        '404':
          description: Payout not found
      security:
        - SignedAuth: []
components:
  schemas:
    PayoutRecord:
      type: object
      properties:
        status:
          type: string
        message:
          type: string
        data:
          type: object
          properties:
            _id:
              type: string
            merchantId:
              type: string
            type:
              type: string
              enum:
                - crypto
                - fiat
            status:
              type: string
              enum:
                - pending
                - processing
                - completed
                - failed
            amount:
              type: string
            coin:
              type: string
            chain:
              type: string
            address:
              type: string
            fee:
              type: string
            feeUSD:
              type: string
            txHash:
              type: string
            createdAt:
              type: string
              format: date-time
            updatedAt:
              type: string
              format: date-time
  securitySchemes:
    SignedAuth:
      type: apiKey
      in: header
      name: authorization
      description: >-
        Signed (HMAC) authentication. Required headers: x-access-id,
        x-request-id (UUID v4), x-timestamp (ISO 8601), and authorization
        (Base64 HMAC-SHA256 signature of {timeStamp, requestId, accessId} using
        your access secret).

````