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

# List transfers

> Paginated, richly filterable.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/transfers
openapi: 3.1.0
info:
  title: Sly API
  description: >-
    The Agentic Economy Platform — stablecoin payments, agent wallets,
    multi-protocol commerce, and AI agent orchestration.
  version: 1.0.0
  contact:
    name: Sly
    url: https://getsly.ai
    email: support@getsly.ai
servers:
  - url: https://api.getsly.ai/v1
    description: Production
  - url: https://sandbox.getsly.ai/v1
    description: Sandbox
security:
  - bearerAuth: []
paths:
  /v1/transfers:
    get:
      tags:
        - Transfers
      summary: List transfers
      description: Paginated, richly filterable.
      parameters:
        - schema:
            type: string
            enum:
              - pending
              - processing
              - completed
              - failed
              - cancelled
          required: false
          name: status
          in: query
        - schema:
            type: string
            enum:
              - cross_border
              - internal
              - stream_start
              - stream_withdraw
              - stream_cancel
              - wrap
              - unwrap
              - x402
          required: false
          name: type
          in: query
        - schema:
            type: string
            format: date-time
          required: false
          name: fromDate
          in: query
        - schema:
            type: string
            format: date-time
          required: false
          name: toDate
          in: query
        - schema:
            type: string
            format: uuid
          required: false
          name: walletId
          in: query
        - schema:
            type: string
            format: uuid
            description: x402-specific filter
          required: false
          description: x402-specific filter
          name: endpointId
          in: query
        - schema:
            type: string
            format: uuid
            description: 'x402: endpoint owner account'
          required: false
          description: 'x402: endpoint owner account'
          name: providerId
          in: query
        - schema:
            type: string
            format: uuid
            description: 'x402: payer account'
          required: false
          description: 'x402: payer account'
          name: consumerId
          in: query
        - schema:
            type: string
          required: false
          name: currency
          in: query
        - schema:
            type:
              - number
              - 'null'
          required: false
          name: minAmount
          in: query
        - schema:
            type:
              - number
              - 'null'
          required: false
          name: maxAmount
          in: query
        - schema:
            type: string
          required: false
          name: initiated_by_id
          in: query
        - schema:
            type: string
            enum:
              - user
              - api_key
              - agent
              - portal
              - system
          required: false
          name: initiated_by_type
          in: query
        - schema:
            type: integer
            exclusiveMinimum: 0
            default: 1
          required: false
          name: page
          in: query
        - schema:
            type: integer
            exclusiveMinimum: 0
            maximum: 200
            default: 50
          required: false
          name: limit
          in: query
      responses:
        '200':
          description: Paginated transfers
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Transfer'
                  pagination:
                    type: object
                    properties:
                      page:
                        type: integer
                      limit:
                        type: integer
                      total:
                        type: integer
                      totalPages:
                        type: integer
                    required:
                      - page
                      - limit
                      - total
                      - totalPages
                required:
                  - data
                  - pagination
      security:
        - bearerAuth: []
components:
  schemas:
    Transfer:
      type: object
      properties:
        id:
          type: string
          format: uuid
        type:
          type: string
          enum:
            - cross_border
            - internal
            - stream_start
            - stream_withdraw
            - stream_cancel
            - wrap
            - unwrap
            - x402
        status:
          type: string
          enum:
            - pending
            - processing
            - completed
            - failed
            - cancelled
        amount:
          type: string
        currency:
          type: string
        from_account_id:
          type:
            - string
            - 'null'
          format: uuid
        to_account_id:
          type:
            - string
            - 'null'
          format: uuid
        from_wallet_id:
          type:
            - string
            - 'null'
          format: uuid
        to_wallet_id:
          type:
            - string
            - 'null'
          format: uuid
        description:
          type:
            - string
            - 'null'
        memo:
          type:
            - string
            - 'null'
        quote_id:
          type:
            - string
            - 'null'
          format: uuid
        destination_currency:
          type:
            - string
            - 'null'
        initiated_by_type:
          type:
            - string
            - 'null'
          enum:
            - user
            - api_key
            - agent
            - portal
            - system
        initiated_by_id:
          type:
            - string
            - 'null'
        protocol:
          type:
            - string
            - 'null'
        protocol_metadata:
          type:
            - object
            - 'null'
          additionalProperties: {}
        failure_reason:
          type:
            - string
            - 'null'
        completed_at:
          type:
            - string
            - 'null'
          format: date-time
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      required:
        - id
        - type
        - status
        - amount
        - currency
        - created_at
        - updated_at
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key (pk_test_* or pk_live_*), JWT session, agent token (agent_*),
        Ed25519 session (sess_*), or portal token (portal_*).

````