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

# Validate destinations in bulk

> Up to 100 per call.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/validate/bulk
openapi: 3.1.0
info:
  title: Chipper Platform API
  version: '2026-02-20'
  description: >-
    Payouts, collections, and FX across African rails — bank, mobile money, and
    stablecoins — through one API.
servers:
  - url: https://sandbox-api.platform.chipper.ai
    description: Sandbox (sk_test_ keys — simulated rails, no real money)
  - url: https://api.platform.chipper.ai
    description: Production (sk_live_ keys)
security:
  - bearerAuth: []
paths:
  /v1/validate/bulk:
    post:
      tags:
        - Validation
      summary: Validate destinations in bulk
      description: Up to 100 per call.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                items:
                  type: array
                  items:
                    type: object
                    properties:
                      code:
                        type: string
                        minLength: 1
                      accountNumber:
                        type: string
                        minLength: 1
                      address:
                        type: string
                        minLength: 1
                      routingNumber:
                        type: string
                        minLength: 1
                    required:
                      - code
                  minItems: 1
                  maxItems: 100
              required:
                - items
      responses:
        '200':
          description: One result per item, in order.
          content:
            application/json:
              schema:
                type: object
                properties:
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        code:
                          type: string
                        result:
                          $ref: '#/components/schemas/ValidationResult'
                      required:
                        - code
                        - result
                required:
                  - results
        '400':
          description: Invalid request — the body failed validation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: validation_error
                message: Request validation failed
                requestId: req_q7vei435zifs51ia0lqr
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: unauthorized
                message: Invalid API key
                requestId: req_q7vei435zifs51ia0lqr
      security:
        - bearerAuth: []
components:
  schemas:
    ValidationResult:
      type: object
      properties:
        valid:
          type: boolean
        accountName:
          type: string
          description: The account holder name, when the rail can resolve it.
          example: AMA SERWAA
        reason:
          type: string
          description: Why validation failed.
          example: account_not_found
      required:
        - valid
    Error:
      type: object
      properties:
        error:
          type: string
          description: Stable machine-readable code.
        message:
          type: string
          description: Human-readable explanation.
        requestId:
          type: string
          description: Echoed in the x-request-id response header — quote it to support.
      required:
        - error
        - message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Your API key: `sk_test_…` (sandbox) or `sk_live_…` (production).'

````