curl --request POST \
--url https://sandbox.oumla.com/api/v1/contract-interactions/network/{network}/contract-address/{contractAddress}/functions/read \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"abiFunction": {
"name": "<string>",
"inputs": [
{
"name": "<string>",
"type": "<string>",
"internalType": "<string>"
}
],
"outputs": [
{
"name": "<string>",
"type": "<string>",
"internalType": "<string>"
}
],
"type": "<string>",
"stateMutability": "<string>"
}
}
'