List URLs
GET
/api/v1/urls
const url = 'https://dashboard.justcrawl.io/api/v1/urls';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://dashboard.justcrawl.io/api/v1/urls \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” page
integer
pageSize
integer
domain
string
tag
string
search
string
Responses
Section titled “ Responses ”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}