cURL
curl --request GET \ --url http://localhost:4000/v1/transactions/sign/{transactionId} \ --header 'Authorization: <api-key>'
{ "success": true, "message": "<string>", "statusCode": 123, "timestamp": "<string>", "data": { "transactionId": "tx-uuid-abc123", "signedTransaction": "0x...", "status": "pending", "from": "0x123...", "to": "0x456...", "amount": "1.5", "chainId": 43114, "expiresAt": "2024-01-01T12:15:00Z", "createdAt": "2024-01-01T12:00:00Z", "tokenAddress": "0x..." }, "path": "<string>" }
Retrieves details of a signed transaction. Only transactions belonging to the integrator can be accessed.
Use this format: ApiKey <your_api_key>
ApiKey <your_api_key>
Transaction ID
"tx-uuid-abc123"
Integrator ID (required for ADMIN/INTERNAL scope)
"uuid-integrator-id"
Show child attributes