Bridge Sandbox API

The Sandbox API from Bridge — 1 operation(s) for sandbox.

Operations 1

POST /customers/{customerID}/simulate_kyc_approval Simulate KYC approval (sandbox only) #

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

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/bridge-sandbox-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

bridge-sandbox-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bridge Sandbox API
  description: APIs to move into, out of, and between any form of a dollar
  version: '1'
servers:
- url: https://api.bridge.xyz/v0
  description: The base path for all resources
security:
- ApiKey: []
tags:
- name: Sandbox
paths:
  /customers/{customerID}/simulate_kyc_approval:
    parameters:
    - $ref: '#/components/parameters/CustomerIDParameter'
    post:
      summary: Simulate KYC approval (sandbox only)
      tags:
      - Sandbox
      parameters:
      - $ref: '#/components/parameters/IdempotencyKeyParameter'
      description: 'Simulates a KYC/KYB approval for a customer in the sandbox environment. This endpoint is not available in production.


        Mimics what happens when a customer completes identity verification through the KYC provider in production:

        - Sets the customer''s KYC status to `approved`

        - Populates required entity data (name, address, date of birth) using any data already on the customer, falling back to sandbox defaults

        - Approves any pending endorsements, enabling the customer to initiate transfers


        Useful for testing the full customer lifecycle without integrating with a real KYC provider.'
      responses:
        '200':
          description: KYC approval simulated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SimulateKycApprovalResponse'
              examples:
                SimulateKycApprovalResponse:
                  $ref: '#/components/examples/SimulateKycApprovalResponse'
        '401':
          $ref: '#/components/responses/AuthenticationError'
        '404':
          $ref: '#/components/responses/NotFoundError'
        '500':
          $ref: '#/components/responses/UnexpectedError'
      operationId: postCustomersByCustomerIDSimulateKycApproval
      x-operation-id-source: derived
components:
  responses:
    AuthenticationError:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          examples:
            MissingTokenError:
              summary: No Api-Key header
              description: The header may be missing or misspelled.
              value:
                code: required
                location: header
                name: Api-Key
                message: Missing Api-Key header
            InvalidTokenError:
              summary: Invalid key in Api-Key header
              value:
                code: invalid
                location: header
                name: Api-Key
                message: Invalid Api-Key header
    UnexpectedError:
      description: Unexpected error. User may try and send the request again.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          examples:
            UnexpectedError:
              summary: An unexpected error
              value:
                errors:
                - code: unexpected
                  message: An expected error occurred, you may try again later
    NotFoundError:
      description: No resource found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          examples:
            NotFoundErrorExample:
              summary: Invalid customer id
              value:
                code: Invalid
                message: Unknown customer id
  parameters:
    IdempotencyKeyParameter:
      in: header
      name: Idempotency-Key
      required: true
      schema:
        type: string
    CustomerIDParameter:
      name: customerID
      in: path
      required: true
      schema:
        $ref: '#/components/schemas/Id'
  examples:
    SimulateKycApprovalResponse:
      summary: Successful KYC simulation response
      value:
        success: true
        customer_id: 00000000-0000-0000-0000-000000000000
        kyc_status: approved
        message: Simulated KYC approval processed. Customer endorsements will be evaluated.
  schemas:
    Error:
      required:
      - code
      - message
      properties:
        code:
          type: string
          minLength: 1
          maxLength: 256
        message:
          type: string
          minLength: 1
          maxLength: 512
        source:
          title: ErrorSource
          required:
          - location
          - key
          properties:
            location:
              type: string
              enum:
              - path
              - query
              - body
              - header
            key:
              type: string
              description: Comma separated names of the properties or parameters causing the error
    KycStatus:
      type: string
      description: Status of the KYC flow.
      enum:
      - not_started
      - incomplete
      - awaiting_questionnaire
      - awaiting_ubo
      - under_review
      - approved
      - rejected
      - paused
      - offboarded
    SimulateKycApprovalResponse:
      type: object
      description: Response from the simulate KYC approval endpoint
      required:
      - success
      - customer_id
      - kyc_status
      - message
      properties:
        success:
          type: boolean
          description: Whether the simulation succeeded
        customer_id:
          type: string
          description: The ID of the customer whose KYC was simulated
        kyc_status:
          $ref: '#/components/schemas/KycStatus'
        message:
          type: string
          description: Human-readable description of what was processed
    Id:
      description: A UUID that uniquely identifies a resource
      type: string
      pattern: '[a-z0-9]*'
      minLength: 1
      maxLength: 42
  securitySchemes:
    ApiKey:
      type: apiKey
      name: Api-Key
      in: header