Skip to content

Batch create URLs

POST
/api/v1/urls/batch
curl --request POST \
--url https://dashboard.justcrawl.io/api/v1/urls/batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "urls": [ { "url": "example", "priority": 1, "tags": [ "example" ] } ] }'
Media type application/json
object
urls
required
Array<object>
object
url
required
string
priority
integer
tags
Array<string>
Example generated
{
"urls": [
{
"url": "example",
"priority": 1,
"tags": [
"example"
]
}
]
}

Batch creation result

Media type application/json
object
created
integer
duplicates
integer
Example generated
{
"created": 1,
"duplicates": 1
}