Skip to main content
GET
/
transactions
/
sign
/
{transactionId}
Get signed transaction details
curl --request GET \
  --url http://localhost:4000/v1/transactions/sign/{transactionId} \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "transactionId": "tx-uuid-abc123",
    "signedTransaction": "0x...",
    "status": "pending",
    "from": "0x123...",
    "to": "0x456...",
    "amount": "1.5",
    "chainId": 43114,
    "tokenAddress": "0x...",
    "expiresAt": "2024-01-01T12:15:00Z",
    "createdAt": "2024-01-01T12:00:00Z"
  },
  "statusCode": 123,
  "timestamp": "<string>",
  "path": "<string>"
}

Authorizations

Authorization
string
header
required

Use this format: ApiKey <your_api_key>

Path Parameters

transactionId
string
required

Transaction ID

Example:

"tx-uuid-abc123"

Response

success
boolean
required
message
string
required
statusCode
number
required
timestamp
string
required
data
object
path
string