Create single URL
POST
/api/v1/urls
const url = 'https://dashboard.justcrawl.io/api/v1/urls';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"url":"example","priority":1,"tags":["example"]}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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" ] }'Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” Media type application/json
object
url
required
string
priority
integer
tags
Array<string>
Example generated
{ "url": "example", "priority": 1, "tags": [ "example" ]}Responses
Section titled “ Responses ”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"}