POST
/
tasks
curl --request POST \
  --url https://staging.hdp.api.herodotus.cloud/tasks \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "destination_chain_id": 123,
  "webhook_url": "<string>",
  "input": {
    "params": [
      "<any>"
    ],
    "compiled_class": {},
    "entry_points_by_type": {
      "EXTERNAL": [
        {
          "selector": "<string>",
          "offset": 123,
          "builtins": [
            "<string>"
          ]
        }
      ],
      "L1_HANDLER": [
        "<any>"
      ],
      "CONSTRUCTOR": [
        "<any>"
      ]
    }
  }
}'
{}

Authorizations

X-API-KEY
string
header
required

Body

application/json
destination_chain_id
integer
required

The chain ID where the task will be proven

input
object
required
webhook_url
string

Optional URL to receive task completion/failure notifications

Response

200
application/json
Task has been queued for processing

The response is of type object.