Retrieves info for a single transaction using it's unique identifier.
The universally unique identifier of the resource.
Filter by on the transaction type.
1from circle.web3 import developer_controlled_wallets
2from circle.web3 import utils
3
4client = utils.init_developer_controlled_wallets_client(api_key=key, entity_secret=entitySecret)
5
6api_instance = developer_controlled_wallets.TransactionsApi(client)
7response = api_instance.get_transaction(id='c7064cb0-19ba-57c3-a4d2-92cf71ede662')
8print(response.json())
9
1{
2 "data": {
3 "transaction": {
4 "id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
5 "abi_function_signature": "burn(uint256)",
6 "abi_parameters": [
7 "100",
8 "1"
9 ],
10 "amounts": [
11 "6.62607015"
12 ],
13 "amount_in_usd": "",
14 "block_hash": "",
15 "block_height": 0,
16 "blockchain": "MATIC-AMOY",
17 "contract_address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
18 "create_date": "2023-01-01T12:04:05Z",
19 "custody_type": "DEVELOPER",
20 "destination_address": "0xca9142d0b9804ef5e239d3bc1c7aa0d1c74e7350",
21 "error_reason": "",
22 "error_details": "",
23 "estimated_fee": {
24 "gas_limit": "21000",
25 "gas_price": "",
26 "max_fee": "5.935224468",
27 "priority_fee": "1.022783914",
28 "base_fee": "1.022783914",
29 "network_fee": "0.0001246397138"
30 },
31 "fee_level": "MEDIUM",
32 "first_confirm_date": "2021-05-18T00:00:00Z",
33 "network_fee": "",
34 "network_fee_in_usd": "",
35 "nfts": [
36 "[{\"ntfTokenId\":\"12321\"",
37 "\"metadata\":\"ipfs://QmZcH4YvBVVRJtdn4RdbaqgspFU8gH6P9vomDpBVpAL3u4/1\"}",
38 "{\"ntfTokenId\":\"12322\"",
39 "\"metadata\":\"ipfs://QmZcH4YvBVVRJtdn4RdbaqgspFU8gH6P9vomDpBVpAL3u4/2\"}]"
40 ],
41 "operation": "TRANSFER",
42 "ref_id": "grouptransaction123",
43 "source_address": "0xca9142d0b9804ef5e239d3bc1c7aa0d1c74e7350",
44 "state": "CANCELLED",
45 "token_id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
46 "transaction_type": "INBOUND",
47 "tx_hash": "0x4a25cc5e661d8504b59c5f38ba93f010e8518966f00e2ceda7955c4b8621357d",
48 "update_date": "2023-01-01T12:04:05Z",
49 "user_id": "ext_user_id_1",
50 "wallet_id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
51 "transaction_screening_evaluation": {
52 "rule_name": "Low Gambling Risk (Owner)",
53 "actions": [
54 "REVIEW"
55 ],
56 "screening_date": "2023-01-01T12:04:05Z",
57 "reasons": [
58 {
59 "source": "ADDRESS",
60 "source_value": "0x1bf9ad0cc2ad298c69a2995aa806ee832788218c",
61 "risk_score": "LOW",
62 "risk_categories": [
63 "GAMBLING"
64 ],
65 "type": "OWNERSHIP"
66 }
67 ]
68 }
69 }
70 }
71}