Web3 Cloud API (1.0.0)
Download OpenAPI specification:Download
GetBlock
Get block.
Authorizations:
(x-api-keyx-api-noncex-api-signature)
Request Body schema: application/json
| slot_number required | integer <int64> slot number. |
Responses
Request samples
- Payload
Content type
application/json
{- "slot_number": 17805285
}Response samples
- 200
- 500
Content type
application/json
{- "block": {
- "block_hash": "string",
- "slot_number": 0,
- "block_height": 0,
- "block_time": "2019-08-24T14:15:22Z",
- "previous_hash": "string",
- "parent_slot": 0
}
}GetTransaction
Get transaction.
Authorizations:
(x-api-keyx-api-noncex-api-signature)
Request Body schema: application/json
| transaction_hash required | string Transaction hash. |
Responses
Request samples
- Payload
Content type
application/json
{- "transaction_hash": "UZJSb3AnzKtYmg1nVHt7kK8yBm3XFvDtdRLybd7uUUA1RFs3V7uprdVj9nug6mNAtBJeYewoDw3QK6eXA5k1Rhi"
}Response samples
- 200
- 500
Content type
application/json
{- "transaction": {
- "transaction_hash": "string",
- "slot_number": 0,
- "block_hash": "string",
- "transfers": [
- {
- "from": "string",
- "to": "string",
- "value": "string",
- "asset_type": "ASSET_TYPE_SOL",
- "token_address": "string"
}
], - "recent_blockhash": "string",
- "instructions": [
- {
- "accounts": [
- 0
], - "data": "string",
- "program_id_index": 0,
- "program": "string",
- "program_id": "string",
- "parsed": { }
}
], - "inner_instructions": [
- {
- "index": 0,
- "instructions": [
- {
- "accounts": [
- 0
], - "data": "string",
- "program_id_index": 0,
- "program": "string",
- "program_id": "string",
- "parsed": { }
}
]
}
], - "fee": "string",
- "block_time": "2019-08-24T14:15:22Z",
- "result": { }
}
}ListTransactions
List transactions.
Authorizations:
(x-api-keyx-api-noncex-api-signature)
Request Body schema: application/json
| transaction_hashes | Array of strings Transaction hashes. |
Responses
Request samples
- Payload
Content type
application/json
{- "transaction_hashes": [
- "UZJSb3AnzKtYmg1nVHt7kK8yBm3XFvDtdRLybd7uUUA1RFs3V7uprdVj9nug6mNAtBJeYewoDw3QK6eXA5k1Rhi"
]
}Response samples
- 200
- 500
Content type
application/json
{- "transactions": [
- {
- "transaction_hash": "string",
- "slot_number": 0,
- "block_hash": "string",
- "transfers": [
- {
- "from": "string",
- "to": "string",
- "value": "string",
- "asset_type": "ASSET_TYPE_SOL",
- "token_address": "string"
}
], - "recent_blockhash": "string",
- "instructions": [
- {
- "accounts": [
- 0
], - "data": "string",
- "program_id_index": 0,
- "program": "string",
- "program_id": "string",
- "parsed": { }
}
], - "inner_instructions": [
- {
- "index": 0,
- "instructions": [
- {
- "accounts": [
- 0
], - "data": "string",
- "program_id_index": 0,
- "program": "string",
- "program_id": "string",
- "parsed": { }
}
]
}
], - "fee": "string",
- "block_time": "2019-08-24T14:15:22Z",
- "result": { }
}
]
}