Skip to main content
GET
/
api
/
v1
/
wallets
/
{wallet_uuid}
/
transactions
/
by-request-id
/
{request_id}
Get transaction record by request id
import requests

url = "https://api.example.com/api/v1/wallets/{wallet_uuid}/transactions/by-request-id/{request_id}"

response = requests.get(url)

print(response.text)
{
  "result": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "wallet_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "type": "transfer",
    "chain_id": "<string>",
    "token_id": "<string>",
    "src_address": "<string>",
    "dst_address": "<string>",
    "amount": "<string>",
    "status": 123,
    "transaction_hash": "<string>",
    "data": {
      "sub_type": "<string>",
      "contract_addr": "<string>",
      "value": "<string>",
      "calldata": "<string>",
      "instructions": [
        {}
      ],
      "fee": {},
      "failed_reason": "<string>",
      "description": "<string>",
      "signature": "<string>",
      "destination_type": "<string>",
      "eip712_typed_data": {},
      "payment_required_raw": "<string>",
      "payment_signature_raw": "<string>",
      "siwx_header_value": "<string>",
      "mpp_authorization_header": "<string>",
      "pact_id": "<string>"
    },
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "pact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "request_type": "transfer",
    "status_display": "",
    "sub_status": "<string>",
    "request_id": "<string>",
    "description": "<string>",
    "ext_transactions": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "user_transaction_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "operation_type": "transfer",
        "status": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z",
        "stage": "original",
        "provider": "waas",
        "external_id": "<string>",
        "caw_request_id": "<string>",
        "transaction_hash": "<string>",
        "data": {}
      }
    ]
  },
  "success": true,
  "suggestion": "",
  "message": "",
  "meta": {
    "total": 123,
    "offset": 123,
    "limit": 123,
    "has_more": true,
    "after": "<string>",
    "before": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://cobo.com/products/agentic-wallet/manual/llms.txt

Use this file to discover all available pages before exploring further.

Headers

X-API-Key
string | null

Path Parameters

wallet_uuid
string<uuid>
required

The UUID of the wallet that owns the transaction.

request_id
string
required

The same request_id passed when submitting the transfer or contract call.

Required string length: 1 - 255

Query Parameters

ext
boolean
default:false

When true, the response includes an ext_transactions list with associated downstream transactions.

Response

Successful Response

result
UserTransactionRead · object
required

Public representation of a user transaction.

success
boolean
default:true
suggestion
string
default:""
message
string
default:""
meta
PaginationMeta · object

Pagination metadata for list responses.

Supports both legacy offset-based and cursor-based pagination. Cursor fields (has_more, after, before) are populated for cursor-paginated endpoints. Legacy fields (offset, limit) are populated when the caller uses the deprecated offset parameter.