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?

Create & Manage Links

Create, update, and delete short links programmatically with full customization

Track Analytics

Access detailed click analytics, geographic data, and referrer information

Organize with Groups

Create groups to organize your links by campaign, client, or project

Bulk Operations

Create or delete hundreds of links at once for large-scale campaigns

Quick Example

Here’s how simple it is to create a short link:
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/my-page",
    "slug": "my-link",
    "title": "My Awesome Page"
  }'
Response:
{
  "id": "link_abc123",
  "shortUrl": "https://bouncy.ai/my-link",
  "destination": "https://example.com/my-page",
  "title": "My Awesome Page",
  "clicks": 0,
  "createdAt": "2026-02-06T12:00:00Z"
}

Getting Started

Quickstart

Get your API key and make your first API call in 5 minutes

Authentication

Learn how to authenticate your API requests

API Reference

Browse all available endpoints and their parameters

Error Handling

Learn how to handle errors and rate limits

Need Help?