Skip to content

Ingest URLs via webhook

POST
/api/v1/webhooks/{token}/ingest
curl --request POST \
--url https://dashboard.justcrawl.io/api/v1/webhooks/example/ingest \
--header 'Content-Type: application/json' \
--data '[ { "url": "example", "workflowId": "example" } ]'
token
required
string

Webhook token for authentication

Media type application/json
Array
One of:
string
Example generated
[
{
"url": "example",
"workflowId": "example"
}
]

URLs accepted for processing

Media type application/json
object
accepted
integer
jobsCreated
integer
Example generated
{
"accepted": 1,
"jobsCreated": 1
}