Skip to main content
GET
/
v1
/
urls
/
{urlId}
Get URL details
curl --request GET \
  --url https://api.zavu.dev/v1/urls/{urlId} \
  --header 'Authorization: Bearer <token>'
{
  "url": {
    "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"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

urlId
string
required

Response

URL details.

url
object
required