curl --request POST \
--url https://api.allium.so/api/v1/developer/solana/raw/inner_instructions \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '[
{
"txn_id": "<string>",
"block_timestamp": "2023-11-07T05:31:56Z"
}
]'
[
{
"txn_id": "<string>",
"txn_index": 123,
"instruction_index": 123,
"inner_instruction_index": 123,
"program_id": "<string>",
"parsed": "<string>",
"program_name": "<string>",
"accounts": [
"<string>"
],
"data": "<string>",
"data_hex": "<string>",
"is_voting": true,
"parent_tx_signer": "<string>",
"parent_tx_success": true,
"parsed_type": "<string>",
"parent_instruction_program_id": "<string>"
}
]
curl --request POST \
--url https://api.allium.so/api/v1/developer/solana/raw/inner_instructions \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '[
{
"txn_id": "<string>",
"block_timestamp": "2023-11-07T05:31:56Z"
}
]'
[
{
"txn_id": "<string>",
"txn_index": 123,
"instruction_index": 123,
"inner_instruction_index": 123,
"program_id": "<string>",
"parsed": "<string>",
"program_name": "<string>",
"accounts": [
"<string>"
],
"data": "<string>",
"data_hex": "<string>",
"is_voting": true,
"parent_tx_signer": "<string>",
"parent_tx_success": true,
"parsed_type": "<string>",
"parent_instruction_program_id": "<string>"
}
]
The body is of type TransactionBasedRequest · object[]
.
Successful Response
The response is of type InnerInstruction · object[]
.