Documentation Index Fetch the complete documentation index at: https://docs.bouncy.ai/llms.txt
Use this file to discover all available pages before exploring further.
Request
Body
The destination URL where the short link should redirect.
Must be a valid HTTP or HTTPS URL. Example: https://example.com/my-page
Custom slug for the short URL. Must be unique and contain only lowercase letters, numbers, and hyphens. Example: summer-sale
Title for SEO and social media sharing Example: Summer Sale 2026
Description for SEO and social media cards Example: Get 50% off all products this summer
Array of tags for organizing links Example: ["marketing", "summer", "instagram"]
Domain to use for the short URL. Can be a system domain (e.g., bouncy.link, mybouncy.link) or a custom domain verified in your account. Example: bouncy.ai
Default: bouncy.ai
ID of the group to add this link to Example: grp_abc123
Response
Whether the operation succeeded
The created link object Unique identifier for the link
The slug portion of the short URL
Domain used for the short URL
Whether the link is active
ISO 8601 timestamp of creation
curl -X POST https://api.bouncy.ai/v1/links \
-H "Authorization: Bearer bcy_live_pk_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/summer-sale",
"slug": "summer",
"title": "Summer Sale 2026",
"description": "50% off everything",
"tags": ["marketing", "sale"]
}'
201 Created
400 Bad Request
400 Slug Taken
{
"success" : true ,
"data" : {
"id" : "summer" ,
"url" : "https://bouncy.ai/summer" ,
"slug" : "summer" ,
"destination" : "https://example.com/summer-sale" ,
"domain" : "bouncy.ai" ,
"title" : "Summer Sale 2026" ,
"description" : "50% off everything" ,
"tags" : [ "marketing" , "sale" ],
"isActive" : true ,
"createdAt" : "2026-02-06T12:00:00Z"
}
}