Uphold Transactions API

Transactions.

Business capability
Payment Initiation Management BC-1340.10

Operations 8

POST /core/transactions/quote Create quote #
GET /core/accounts/{accountId}/transactions List account transactions #
GET /core/transactions List transactions #
POST /core/transactions Create transaction #
GET /core/transactions/{transactionId} Get transaction #
GET /core/transactions/{transactionId}/requests-for-information List requests for information #
GET /core/transactions/{transactionId}/requests-for-information/{requestForInformationId} Get request for information #
PUT /core/transactions/{transactionId}/requests-for-information/{requestForInformationId} Update request for information #

Documentation

Specifications

Other Resources

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/uphold-transactions-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

uphold-transactions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 0.1.0
  title: Core Transactions API
  description: The Core API provides essential building blocks that empower businesses to embed financial services into their applications.
  contact:
    name: Uphold API Team
    email: developers@uphold.com
    url: https://developer.uphold.com
servers:
- url: https://api.enterprise.sandbox.uphold.com
  description: Sandbox
- url: https://api.enterprise.uphold.com
  description: Production
security:
- OAuth2: []
tags:
- name: Transactions
  description: Transactions.
paths:
  /core/transactions/quote:
    post:
      operationId: core.create-quote
      summary: Create quote
      description: Create a quote for a transaction.
      tags:
      - Transactions
      x-uphold:
        security:
          OAuth2:
            subjects:
            - user:business
            - user:individual
      security:
      - OAuth2:
        - core.transactions:create
      parameters:
      - $ref: '#/components/parameters/x-on-behalf-of'
      - $ref: '#/components/parameters/x-uphold-user-ip'
      - $ref: '#/components/parameters/x-uphold-user-agent'
      - $ref: '#/components/parameters/x-uphold-user-origin'
      - $ref: '#/components/parameters/x-uphold-user-country'
      - $ref: '#/components/parameters/x-uphold-user-subdivision'
      - $ref: '#/components/parameters/x-uphold-user-city'
      requestBody:
        $ref: '#/components/requestBodies/create-quote-request-body'
      responses:
        '201':
          $ref: '#/components/responses/create-quote-response'
        '400':
          $ref: '#/components/responses/bad-request'
        '401':
          $ref: '#/components/responses/unauthorized'
        '403':
          $ref: '#/components/responses/forbidden'
        '404':
          $ref: '#/components/responses/create-quote-not-found-response'
        '409':
          $ref: '#/components/responses/create-quote-conflict-response'
        '429':
          $ref: '#/components/responses/too-many-requests'
  /core/accounts/{accountId}/transactions:
    get:
      operationId: core.list-account-transactions
      summary: List account transactions
      description: List transactions for an account.
      tags:
      - Transactions
      x-uphold:
        security:
          OAuth2:
            subjects:
            - user:business
            - user:individual
      security:
      - OAuth2:
        - core.accounts:read
        - core.transactions:read
      parameters:
      - $ref: '#/components/parameters/account-id'
      - $ref: '#/components/parameters/pagination-per-page'
      - $ref: '#/components/parameters/x-on-behalf-of'
      - $ref: '#/components/parameters/x-uphold-user-ip'
      - $ref: '#/components/parameters/x-uphold-user-agent'
      - $ref: '#/components/parameters/x-uphold-user-origin'
      - $ref: '#/components/parameters/x-uphold-user-country'
      - $ref: '#/components/parameters/x-uphold-user-subdivision'
      - $ref: '#/components/parameters/x-uphold-user-city'
      responses:
        '200':
          $ref: '#/components/responses/list-account-transactions-response'
        '400':
          $ref: '#/components/responses/bad-request'
        '401':
          $ref: '#/components/responses/unauthorized'
        '403':
          $ref: '#/components/responses/forbidden'
        '404':
          $ref: '#/components/responses/list-account-transactions-not-found-response'
        '429':
          $ref: '#/components/responses/too-many-requests'
  /core/transactions:
    get:
      operationId: core.list-transactions
      summary: List transactions
      description: List transactions associated with a user.
      tags:
      - Transactions
      x-uphold:
        security:
          OAuth2:
            subjects:
            - user:business
            - user:individual
      security:
      - OAuth2:
        - core.transactions:read
      parameters:
      - $ref: '#/components/parameters/pagination-per-page'
      - $ref: '#/components/parameters/x-on-behalf-of'
      - $ref: '#/components/parameters/x-uphold-user-ip'
      - $ref: '#/components/parameters/x-uphold-user-agent'
      - $ref: '#/components/parameters/x-uphold-user-origin'
      - $ref: '#/components/parameters/x-uphold-user-country'
      - $ref: '#/components/parameters/x-uphold-user-subdivision'
      - $ref: '#/components/parameters/x-uphold-user-city'
      responses:
        '200':
          $ref: '#/components/responses/list-transactions-response'
        '401':
          $ref: '#/components/responses/unauthorized'
        '403':
          $ref: '#/components/responses/forbidden'
        '429':
          $ref: '#/components/responses/too-many-requests'
    post:
      operationId: core.create-transaction
      summary: Create transaction
      description: Create transaction from a quote.
      tags:
      - Transactions
      x-uphold:
        security:
          OAuth2:
            subjects:
            - user:business
            - user:individual
      security:
      - OAuth2:
        - core.transactions:create
      parameters:
      - $ref: '#/components/parameters/x-on-behalf-of'
      - $ref: '#/components/parameters/x-uphold-user-ip'
      - $ref: '#/components/parameters/x-uphold-user-agent'
      - $ref: '#/components/parameters/x-uphold-user-origin'
      - $ref: '#/components/parameters/x-uphold-user-country'
      - $ref: '#/components/parameters/x-uphold-user-subdivision'
      - $ref: '#/components/parameters/x-uphold-user-city'
      requestBody:
        $ref: '#/components/requestBodies/create-transaction-request-body'
      responses:
        '201':
          $ref: '#/components/responses/create-transaction-response'
        '400':
          $ref: '#/components/responses/bad-request'
        '401':
          $ref: '#/components/responses/unauthorized'
        '403':
          $ref: '#/components/responses/forbidden'
        '404':
          $ref: '#/components/responses/create-transaction-not-found-response'
        '409':
          $ref: '#/components/responses/create-transaction-conflict-response'
        '429':
          $ref: '#/components/responses/too-many-requests'
  /core/transactions/{transactionId}:
    get:
      operationId: core.get-transaction
      summary: Get transaction
      description: Retrieve an existing transaction by id.
      tags:
      - Transactions
      x-uphold:
        security:
          OAuth2:
            subjects:
            - user:business
            - user:individual
      security:
      - OAuth2:
        - core.transactions:read
      parameters:
      - $ref: '#/components/parameters/transaction-id'
      - $ref: '#/components/parameters/x-on-behalf-of'
      - $ref: '#/components/parameters/x-uphold-user-ip'
      - $ref: '#/components/parameters/x-uphold-user-agent'
      - $ref: '#/components/parameters/x-uphold-user-origin'
      - $ref: '#/components/parameters/x-uphold-user-country'
      - $ref: '#/components/parameters/x-uphold-user-subdivision'
      - $ref: '#/components/parameters/x-uphold-user-city'
      responses:
        '200':
          $ref: '#/components/responses/get-transaction-response'
        '400':
          $ref: '#/components/responses/bad-request'
        '401':
          $ref: '#/components/responses/unauthorized'
        '403':
          $ref: '#/components/responses/forbidden'
        '404':
          $ref: '#/components/responses/get-transaction-not-found-response'
        '429':
          $ref: '#/components/responses/too-many-requests'
  /core/transactions/{transactionId}/requests-for-information:
    get:
      operationId: core.list-transaction-requests-for-information
      summary: List requests for information
      description: List requests for information associated with a transaction.
      tags:
      - Transactions
      x-uphold:
        security:
          OAuth2:
            subjects:
            - user:business
            - user:individual
      security:
      - OAuth2:
        - core.transactions.requests-for-information:read
      parameters:
      - $ref: '#/components/parameters/transaction-id'
      - $ref: '#/components/parameters/x-on-behalf-of'
      - $ref: '#/components/parameters/x-uphold-user-ip'
      - $ref: '#/components/parameters/x-uphold-user-agent'
      - $ref: '#/components/parameters/x-uphold-user-origin'
      - $ref: '#/components/parameters/x-uphold-user-country'
      - $ref: '#/components/parameters/x-uphold-user-subdivision'
      - $ref: '#/components/parameters/x-uphold-user-city'
      responses:
        '200':
          $ref: '#/components/responses/list-transaction-requests-for-information-response'
        '400':
          $ref: '#/components/responses/bad-request'
        '401':
          $ref: '#/components/responses/unauthorized'
        '403':
          $ref: '#/components/responses/forbidden'
        '404':
          $ref: '#/components/responses/transaction-not-found-response'
        '429':
          $ref: '#/components/responses/too-many-requests'
  /core/transactions/{transactionId}/requests-for-information/{requestForInformationId}:
    get:
      operationId: core.get-transaction-request-for-information
      summary: Get request for information
      description: Retrieve a request for information associated with a transaction.
      tags:
      - Transactions
      x-uphold:
        security:
          OAuth2:
            subjects:
            - user:business
            - user:individual
      security:
      - OAuth2:
        - core.transactions.requests-for-information:read
      parameters:
      - $ref: '#/components/parameters/transaction-id'
      - $ref: '#/components/parameters/request-for-information-id'
      - $ref: '#/components/parameters/x-on-behalf-of'
      - $ref: '#/components/parameters/x-uphold-user-ip'
      - $ref: '#/components/parameters/x-uphold-user-agent'
      - $ref: '#/components/parameters/x-uphold-user-origin'
      - $ref: '#/components/parameters/x-uphold-user-country'
      - $ref: '#/components/parameters/x-uphold-user-subdivision'
      - $ref: '#/components/parameters/x-uphold-user-city'
      responses:
        '200':
          $ref: '#/components/responses/get-transaction-request-for-information-response'
        '400':
          $ref: '#/components/responses/bad-request'
        '401':
          $ref: '#/components/responses/unauthorized'
        '403':
          $ref: '#/components/responses/forbidden'
        '404':
          $ref: '#/components/responses/get-transaction-request-for-information-not-found-response'
        '429':
          $ref: '#/components/responses/too-many-requests'
    put:
      operationId: core.update-transaction-request-for-information
      summary: Update request for information
      description: Update a request for information associated with a transaction.
      tags:
      - Transactions
      x-uphold:
        security:
          OAuth2:
            subjects:
            - user:business
            - user:individual
      security:
      - OAuth2:
        - core.transactions.requests-for-information:update
      parameters:
      - $ref: '#/components/parameters/transaction-id'
      - $ref: '#/components/parameters/request-for-information-id'
      - $ref: '#/components/parameters/x-on-behalf-of'
      - $ref: '#/components/parameters/x-uphold-user-ip'
      - $ref: '#/components/parameters/x-uphold-user-agent'
      - $ref: '#/components/parameters/x-uphold-user-origin'
      - $ref: '#/components/parameters/x-uphold-user-country'
      - $ref: '#/components/parameters/x-uphold-user-subdivision'
      - $ref: '#/components/parameters/x-uphold-user-city'
      requestBody:
        $ref: '#/components/requestBodies/update-transaction-request-for-information-request-body'
      responses:
        '200':
          $ref: '#/components/responses/update-transaction-request-for-information-response'
        '400':
          $ref: '#/components/responses/bad-request'
        '401':
          $ref: '#/components/responses/unauthorized'
        '403':
          $ref: '#/components/responses/forbidden'
        '404':
          $ref: '#/components/responses/update-transaction-request-for-information-not-found-response'
        '409':
          $ref: '#/components/responses/update-transaction-request-for-information-conflict-response'
        '429':
          $ref: '#/components/responses/too-many-requests'
webhooks:
  core.transaction.created:
    post:
      operationId: core.transaction-created
      summary: Transaction created
      description: A new transaction has been created.
      tags:
      - Transactions
      parameters:
      - $ref: '#/components/parameters/webhook-id'
      - $ref: '#/components/parameters/webhook-timestamp'
      - $ref: '#/components/parameters/webhook-signature'
      requestBody:
        description: Transaction created event.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/transaction-webhook-event'
            examples:
              Transaction Created:
                value:
                  id: 123e4567-e89b-12d3-a456-426614174000
                  type: core.transaction.created
                  createdAt: '2021-01-01T00:00:00.000Z'
                  data:
                    transaction:
                      id: 623000c8-9bdf-4a2b-aa3d-6a6b44a7f6a0
                      origin:
                        amount: '100.00'
                        asset: GBP
                        rate: '47619.04761904762'
                        node:
                          type: account
                          id: b98e4f0d-a67d-4126-a99d-666f7e0315d9
                          ownerId: e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a
                      destination:
                        amount: '0.0021'
                        asset: BTC
                        rate: '0.000021'
                        node:
                          type: account
                          id: 555a99a1-620d-4431-a0ac-b43e1aad2bdc
                          ownerId: e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a
                      denomination:
                        amount: '100.00'
                        asset: GBP
                        target: origin
                        rate: '1'
                      fees: []
                      status: processing
                      quotedAt: '2024-07-24T15:02:39.000Z'
                      createdAt: '2024-07-24T15:22:39.000Z'
                      updatedAt: '2024-07-24T15:32:39.000Z'
      responses:
        '200':
          description: Return a 200 status to indicate that the data was received successfully.
  core.transaction.status-changed:
    post:
      operationId: core.transaction-status-changed
      summary: Transaction status changed
      description: The transaction status has been changed.
      tags:
      - Transactions
      parameters:
      - $ref: '#/components/parameters/webhook-id'
      - $ref: '#/components/parameters/webhook-timestamp'
      - $ref: '#/components/parameters/webhook-signature'
      requestBody:
        description: Transaction status changed event.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/transaction-webhook-event'
            examples:
              Transaction Status Changed:
                value:
                  id: 123e4567-e89b-12d3-a456-426614174000
                  type: core.transaction.status-changed
                  createdAt: '2021-01-01T00:00:00.000Z'
                  data:
                    transaction:
                      id: 623000c8-9bdf-4a2b-aa3d-6a6b44a7f6a0
                      origin:
                        amount: '100.00'
                        asset: GBP
                        rate: '47619.04761904762'
                        node:
                          type: account
                          id: b98e4f0d-a67d-4126-a99d-666f7e0315d9
                          ownerId: e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a
                      destination:
                        amount: '0.0021'
                        asset: BTC
                        rate: '0.000021'
                        node:
                          type: account
                          id: 555a99a1-620d-4431-a0ac-b43e1aad2bdc
                          ownerId: e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a
                      denomination:
                        amount: '100.00'
                        asset: GBP
                        target: origin
                        rate: '1'
                      fees: []
                      status: completed
                      quotedAt: '2024-07-24T15:02:39.000Z'
                      createdAt: '2024-07-24T15:22:39.000Z'
                      updatedAt: '2024-07-24T15:32:39.000Z'
      responses:
        '200':
          description: Return a 200 status to indicate that the data was received successfully.
components:
  responses:
    get-transaction-response:
      description: Transaction retrieved.
      content:
        application/json:
          schema:
            type: object
            properties:
              transaction:
                $ref: '#/components/schemas/transaction'
            required:
            - transaction
          examples:
            Transaction Retrieved:
              value:
                transaction:
                  id: 623000c8-9bdf-4a2b-aa3d-6a6b44a7f6a0
                  origin:
                    amount: '100.00'
                    asset: GBP
                    rate: '47619.04761904762'
                    node:
                      type: account
                      id: b98e4f0d-a67d-4126-a99d-666f7e0315d9
                      ownerId: e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a
                  destination:
                    amount: '0.0021'
                    asset: BTC
                    rate: '0.000021'
                    node:
                      type: account
                      id: 555a99a1-620d-4431-a0ac-b43e1aad2bdc
                      ownerId: e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a
                  denomination:
                    amount: '100.00'
                    asset: GBP
                    target: origin
                    rate: '1'
                  fees: []
                  status: completed
                  quotedAt: '2024-07-24T15:02:39.000Z'
                  createdAt: '2024-07-24T15:22:39.000Z'
                  updatedAt: '2024-07-24T15:33:08.000Z'
      headers:
        x-uphold-request-id:
          description: A unique identifier for the request that can be shared with Uphold for troubleshooting purposes.
          required: true
          schema:
            type: string
            format: uuid
          examples:
            Request ID:
              value: 9092ee4d-f0fb-42e9-8787-b668dbcec531
    forbidden:
      description: Forbidden.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/error'
          examples:
            Token Insufficient Scopes:
              value:
                code: token_insufficient_scopes
                message: Authorization failed due to insufficient scopes
                details:
                  security:
                  - scheme: OAuth
                    schemeScopes:
                    - required:scope_1
                    - required:scope_2
                    tokenScopes:
                    - token:scope
      headers:
        x-uphold-request-id:
          description: A unique identifier for the request that can be shared with Uphold for troubleshooting purposes.
          required: true
          schema:
            type: string
            format: uuid
          examples:
            Request ID:
              value: 9092ee4d-f0fb-42e9-8787-b668dbcec531
    unauthorized:
      description: Unauthorized.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/error'
          examples:
            Token Expired:
              value:
                code: token_expired
                message: The access token has expired
            Token Invalid:
              value:
                code: token_invalid
                message: The access token is invalid
            Token Revoked:
              value:
                code: token_revoked
                message: The access token has been revoked
      headers:
        x-uphold-request-id:
          description: A unique identifier for the request that can be shared with Uphold for troubleshooting purposes.
          required: true
          schema:
            type: string
            format: uuid
          examples:
            Request ID:
              value: 9092ee4d-f0fb-42e9-8787-b668dbcec531
    get-transaction-request-for-information-response:
      description: Request for information retrieved.
      content:
        application/json:
          schema:
            type: object
            properties:
              requestForInformation:
                $ref: '#/components/schemas/request-for-information'
            required:
            - requestForInformation
          examples:
            Request for Information Retrieved:
              value:
                requestForInformation:
                  id: 3f6d0c1e-a1bf-4b25-9802-2a3ee492d3c8
                  type: travel-rule
                  status: pending
                  createdAt: '2024-07-25T10:00:00.000Z'
                  updatedAt: '2024-07-30T10:00:00.000Z'
      headers:
        x-uphold-request-id:
          description: A unique identifier for the request that can be shared with Uphold for troubleshooting purposes.
          required: true
          schema:
            type: string
            format: uuid
          examples:
            Request ID:
              value: 9092ee4d-f0fb-42e9-8787-b668dbcec531
    list-account-transactions-not-found-response:
      description: Resource not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/error'
          examples:
            Account Not Found:
              value:
                code: entity_not_found
                message: The account cannot be found
                details:
                  entity: account
      headers:
        x-uphold-request-id:
          description: A unique identifier for the request that can be shared with Uphold for troubleshooting purposes.
          required: true
          schema:
            type: string
            format: uuid
          examples:
            Request ID:
              value: 9092ee4d-f0fb-42e9-8787-b668dbcec531
    list-transaction-requests-for-information-response:
      description: Requests for information retrieved.
      content:
        application/json:
          schema:
            type: object
            properties:
              requestsForInformation:
                type: array
                items:
                  $ref: '#/components/schemas/request-for-information'
            required:
            - requestsForInformation
          examples:
            Requests for Information Retrieved:
              value:
                requestsForInformation:
                - id: 3f6d0c1e-a1bf-4b25-9802-2a3ee492d3c8
                  type: travel-rule
                  status: pending
                  createdAt: '2024-07-25T10:00:00.000Z'
                  updatedAt: '2024-07-30T10:00:00.000Z'
      headers:
        x-uphold-request-id:
          description: A unique identifier for the request that can be shared with Uphold for troubleshooting purposes.
          required: true
          schema:
            type: string
            format: uuid
          examples:
            Request ID:
              value: 9092ee4d-f0fb-42e9-8787-b668dbcec531
    get-transaction-request-for-information-not-found-response:
      description: Resource not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/error'
          examples:
            Request for Information Not Found:
              value:
                code: entity_not_found
                message: The request for information cannot be found
                details:
                  entity: request-for-information
            Transaction Not Found:
              value:
                code: entity_not_found
                message: The transaction cannot be found
                details:
                  entity: transaction
      headers:
        x-uphold-request-id:
          description: A unique identifier for the request that can be shared with Uphold for troubleshooting purposes.
          required: true
          schema:
            type: string
            format: uuid
          examples:
            Request ID:
              value: 9092ee4d-f0fb-42e9-8787-b668dbcec531
    update-transaction-request-for-information-response:
      description: Request for information updated.
      content:
        application/json:
          schema:
            type: object
            properties:
              requestForInformation:
                $ref: '#/components/schemas/request-for-information'
            required:
            - requestForInformation
          examples:
            Request for Information Updated:
              value:
                requestForInformation:
                  id: 3f6d0c1e-a1bf-4b25-9802-2a3ee492d3c8
                  type: travel-rule
                  status: ok
                  data:
                    originatorProof:
                      type: self-declaration
                      did: did:pkh:xrpl:0:rExampleAddress123456789
                      address: xrpl:0:rExampleAddress123456789
                      attestation: I hereby declare that the blockchain address rExampleAddress123456789 is under my own control and ownership.
                      confirmed: true
                      status: verified
                    transactionAsset:
                      caip19: xrpl:0/slip44:144
                    transactionAmount: '4000000'
                    originatorEqualsBeneficiary: true
                    beneficiaryVASPdid: did:ethr:0xExampleVASPAddress000000000000000000000000
                    originatorVASPdid: did:pkh:xrpl:0:rExampleAddress123456789
                    beneficiary: {}
                    originator:
                      originatorPersons:
                      - naturalPerson:
                          name:
                            nameIdentifier:
                            - primaryIdentifier: Doe
                              secondaryIdentifier: John
                              nameIdentifierType: LEGL
                  createdAt: '2024-07-25T10:00:00.000Z'
                  updatedAt: '2024-07-30T10:00:00.000Z'
      headers:
        x-uphold-request-id:
          description: A unique identifier for the request that can be shared with Uphold for troubleshooting purposes.
          required: true
          schema:
            type: string
            format: uuid
          examples:
            Request ID:
              value: 9092ee4d-f0fb-42e9-8787-b668dbcec531
    create-quote-response:
      description: Quote created.
      content:
        application/json:
          schema:
            type: object
            properties:
              quote:
                $ref: '#/components/schemas/quote'
            required:
            - quote
          examples:
            Trade Quote Created:
              value:
                quote:
                  id: 623000c8-9bdf-4a2b-aa3d-6a6b44a7f6a0
                  origin:
                    amount: '100.00'
                    asset: GBP
                    rate: '47619.04761904762'
                    node:
                      type: account
                      id: b98e4f0d-a67d-4126-a99d-666f7e0315d9
                      ownerId: e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a
                  destination:
                    amount: '0.0021'
                    asset: BTC
                    rate: '0.000021'
                    node:
                      type: account
                      id: 555a99a1-620d-4431-a0ac-b43e1aad2bdc
                      ownerId: e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a
                  denomination:
                    amount: '100.00'
                    asset: GBP
                    target: origin
                    rate: '1'
                  fees: []
                  requirements: []
                  expiresAt: '2024-07-24T15:22:39.000Z'
            Deposit From APM Quote Created:
              value:
                quote:
                  id: 623000c8-9bdf-4a2b-aa3d-6a6b44a7f6a0
                  origin:
                    amount: '50.00'
                    asset: GBP
                    rate: '80000.00'
                    node:
                      type: apm
                      method: paypal
                  destination:
                    amount: '0.000625'
                    asset: BTC
                    rate: '0.0000125'
                    node:
                      type: account
                      id: 555a99a1-620d-4431-a0ac-b43e1aad2bdc
                      ownerId: e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a
                  denomination:
                    amount: '50.00'
                    asset: GBP
                    target: origin
                    rate: '1'
                  fees: []
                  requirements:
                  - authorize:paypal
                  expiresAt: '2024-07-24T15:22:39.000Z'
            Deposit From External Account Quote Created:
              value:
                quote:
                  id: 623000c8-9bdf-4a2b-aa3d-6a6b44a7f6a0
                  origin:
                    amount: '100.00'
                    asset: GBP
                    rate: '47619.04761904762'
                    node:
                      type: external-account
                      id: b98e4f0d-a67d-4126-a99d-666f7e0315d9
                      ownerId: e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a
                  destination:
                    amount: '0.0021'
                    asset: BTC
                    rate: '0.000021'
                    node:
                      type: account
                      id: 555a99a1-620d-4431-a0ac-b43e1aad2bdc
                      ownerId: e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a
                  denomination:
                    amount: '100.00'
                    asset: GBP
                    target: origin
                    rate: '1'
                  fees: []
                  requirements: []
                  expiresAt: '2024-07-24T15:22:39.000Z'
            Withdrawal To APM Quote Created:
              value:
                quote:
                  id: 623000c8-9bdf-4a2b-aa3d-6a6b44a7f6a0
                  origin:
                    amount: '100.00'
                    asset: GBP
                    rate: '1'
                    node:
                      type: account
                      id: b98e4f0d-a67d-4126-a99d-666f7e0315d9
                      ownerId: e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a
                  destination:
                    amount: '100.00'
                    asset: GBP
                    rate: '1'
                    node:
                      type: apm
                      method: paypal
                  denomination:
                    amount: '100.00'
                    asset: GBP
                    target: origin
                    rate: '1'
                  fees: []
                  requirements:
                  - authorize:paypal
                  expiresAt: '2024-07-24T15:22:39.000Z'
            Withdrawal To External Account Quote Created:
              value:
                quote:
                  id: 623000c8-9bdf-4a2b-aa3d-6a6b44a7f6a0
                  origin:
                    amount: '100.00'
                    asset: GBP
                    rate: '47619.04761904762'
                    node:
                      type: account
                      id: b98e4f0d-a67d-4126-a99d-666f7e0315d9
                      ownerId: e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a
                  destination:
                    amount: '0.0021'
                    asset: BTC
                    rate: '0.000021'
                    node:
                      type: external-account
                      id: 555a99a1-620d-4431-a0ac-b43e1aad2bdc
                      ownerId: e4ce04dc-67b7-4e9f-af91-482cb6f9fc4a
                  denomination:
                    amount: '100.00'
                    asset: GBP
                    target: origin
                    rate: '1'
     

# --- truncated at 32 KB (114 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/uphold/refs/heads/main/openapi/uphold-transactions-api-openapi.yml