Short URL
The Short URL feature allows you to generate a new short link for a given URL. When this short link is accessed, it will redirect to the original URL.
The request body allows you to configure up to 100 URLs per request. For each link passed as parameter, a new short link will be returned, using the arpn.me domain. If you would like to use a different domain, please contact our support team.
Request example:
{
"organizationId": "8dfd9a7c-6280-4a92-9081-6f5511407c14",
"items":[
{"url": "https://app.arpoone.com/example-long-url"}
]
}
Response example:
{
"data": {
"items": [
{
"originalUrl": "https://app.arpoone.com/example-long-url",
"shortUrl": "https://arpn.me/bpGbn5x"
}
]
},
"success": true,
"message": null,
"errorCode": null,
"errorParameters": null
}
info
This feature is only available after approval by our team. If you would like to use this feature, please, contact our support team.
For more details about the Short URL creation request, please refer to our API Reference.