Skip to main content
POST
/
api
/
v1
/
action
/
cost
Cost estimate
curl --request POST \
  --url https://api.example.com/api/v1/action/cost \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "funcSignature": "<string>",
  "walletAddress": "0xdac17f958d2ee523a2206206994597c13d831ec7",
  "params": [
    {
      "name": "<string>",
      "value": "<string>"
    }
  ],
  "contractId": 123
}
'
{
  "cost": 123,
  "price": 123,
  "tip": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.extractor.live/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authentication

Body

application/json
funcSignature
string
required

Signature of the function from the contract abi associated with the extractor action

walletAddress
string
required

The direct address of the extractor contract

Example:

"0xdac17f958d2ee523a2206206994597c13d831ec7"

params
object[]
required

Input parameters of the function from the contract abi associated with the extractor action

contractId
integer<int64>

Contract id of wallet action

Response

200 - application/json

OK

cost
integer
price
integer
tip
string