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

# Get swap and transfer



## OpenAPI

````yaml /api-reference/openapi.yaml get /swap-and-transfer/{operationId}
openapi: 3.1.0
info:
  title: Onbeam API
  version: 1.0.0
servers:
  - url: https://api.onbeam.io
  - url: http://localhost:3004
security: []
paths:
  /swap-and-transfer/{operationId}:
    get:
      summary: Get swap and transfer
      operationId: getSwapAndTransfer
      parameters:
        - name: operationId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SwapAndTransferResponse'
      security:
        - ApiKeyAuth: []
        - BearerAuth: []
components:
  schemas:
    SwapAndTransferResponse:
      type: object
      properties:
        operationId:
          type: string
        status:
          type: string
          examples:
            - pending
      required:
        - operationId
        - status
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````