Skip to content

List URLs

GET
/api/v1/urls
curl --request GET \
--url https://dashboard.justcrawl.io/api/v1/urls \
--header 'Authorization: Bearer <token>'
page
integer
pageSize
integer
domain
string
tag
string
search
string

Paginated URL list

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