Skip to main content
GET
/
v1
/
urls
List verified URLs
curl --request GET \
  --url https://api.zavu.dev/v1/urls \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "url_abc123",
      "url": "https://example.com/page",
      "domain": "example.com",
      "status": "pending",
      "createdAt": "2023-11-07T05:31:56Z",
      "approvalType": "manual",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

status
enum<string>

Filter by verification status. Status of a verified URL.

Available options:
pending,
approved,
rejected,
malicious
limit
integer
default:50
Required range: x <= 100
cursor
string

Response

List of verified URLs.

items
object[]
required
nextCursor
string | null