/api/v1/link-shorten/create-link
API endpoint documentation
post
Tags:linkShorten
Operation ID:
postApiV1Link-shortenCreate-link
Query Parameters
Body
url
stringcustomAlias
stringexpiresAt
stringResponses
200
No description
Base URL:
https://bizkithub.com
Example Request
fetch('https://bizkithub.com/api/v1/link-shorten/create-link?apiKey=YOUR_API_KEY', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
"url": "example_url",
"customAlias": "example_customAlias",
"expiresAt": "example_expiresAt"
})
})
Example Response
HTTP 200Success Response
{
"success": true,
"data": {
"message": "Example response"
}
}
🔑 API Key Required
All BizKitHub API endpoints require authentication using an API key. The API key must be passed as a GET parameter in the URL for all requests.
Back to API Documentation
Last updated: September 21, 2025