Skip to content

Create single URL

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

Created URL item

Media type application/json
object
id
string format: uuid
url
string
domain
string
priority
integer
tags
Array<string>
createdAt
string format: date-time
Example generated
{
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"url": "example",
"domain": "example",
"priority": 1,
"tags": [
"example"
],
"createdAt": "2026-04-15T12:00:00Z"
}