Skip to main content

Welcome to Bouncy.ai API

The Bouncy.ai API allows you to programmatically manage your short links, custom domains, bio pages, and analytics. Perfect for automating link creation, building integrations, or creating custom dashboards.

What can you do with the API?

Quick Example

Here’s how simple it is to create a short link:
curl -X POST https://api.bouncy.ai/v1/links \
  -H "X-Api-Key: bcy_live_pk_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://example.com/my-page",
    "slug": "my-link",
    "title": "My Awesome Page"
  }'
Response:
{
  "id": "link_abc123",
  "shortUrl": "https://bouncy.link/my-link",
  "destination": "https://example.com/my-page",
  "title": "My Awesome Page",
  "clicks": 0,
  "createdAt": "2026-02-06T12:00:00Z"
}

Getting Started

Need Help?