/api/user/urls/:id/password
Check if a password is correct for a password-protected short URL.
Path Parameters
Name | Type | Description |
---|---|---|
id | string | The URL's unique ID, code, or vanity string. |
POST Request
Verify the password for a specific short URL by its ID, code, or vanity.
Body
Content-Type: application/json
Property | Type | Description |
---|---|---|
password | string | Required. The password to check. |
Response
Status: 200 OK
Content-Type: application/json
Property | Type | Description |
---|---|---|
success | boolean | Will be true if the password was correct. |
Error Responses
-
403 Forbidden
The password is incorrect.
-
404 Not Found
The URL doesn't exist or is not password protected.
/api/user/folders/:id
View, update, or delete a specific folder by its ID.
/api/user/tags
View or create tags that are assigned to files.
Last updated: 6/1/2025
Edit this page on GitHub