Skip to main content
GET
https://api.bouncy.ai
/
v1
/
websites
/
:websiteId
curl https://api.bouncy.ai/v1/websites/web_abc123xyz \
  -H "X-Api-Key: bcy_live_pk_YOUR_API_KEY"
{
  "id": "web_abc123xyz",
  "slug": "johndoe",
  "url": "https://bouncy.link/johndoe",
  "title": "John Doe - Links",
  "description": "Digital Creator | Follow my socials",
  "template": "bounce",
  "theme": {
    "backgroundColor": "#ffffff",
    "textColor": "#000000",
    "buttonColor": "#084c58"
  },
  "links": [
    {
      "title": "My Website",
      "url": "https://johndoe.com",
      "icon": "globe"
    },
    {
      "title": "YouTube Channel",
      "url": "https://youtube.com/@johndoe",
      "icon": "youtube"
    }
  ],
  "profileImage": "https://example.com/avatar.jpg",
  "socialLinks": {
    "twitter": "johndoe",
    "instagram": "johndoe"
  },
  "views": 1234,
  "clicks": 456,
  "createdAt": "2026-01-15T10:00:00Z",
  "updatedAt": "2026-02-05T14:30:00Z"
}

Request

Headers

X-Api-Key
string
required
Your API key (e.g., bcy_live_pk_YOUR_API_KEY)

Path Parameters

websiteId
string
required
The website IDExample: web_abc123xyz

Response

id
string
Website ID
slug
string
URL slug
url
string
Full URL to the website
title
string
Page title
description
string
Page description/bio
template
string
Template being used
theme
object
Theme configuration (colors, fonts, etc.)
Array of link objects displayed on the page
profileImage
string
URL to profile image
Social media links
views
number
Total page views
clicks
number
Total link clicks from this page
createdAt
string
ISO 8601 timestamp
updatedAt
string
ISO 8601 timestamp of last update
curl https://api.bouncy.ai/v1/websites/web_abc123xyz \
  -H "X-Api-Key: bcy_live_pk_YOUR_API_KEY"
{
  "id": "web_abc123xyz",
  "slug": "johndoe",
  "url": "https://bouncy.link/johndoe",
  "title": "John Doe - Links",
  "description": "Digital Creator | Follow my socials",
  "template": "bounce",
  "theme": {
    "backgroundColor": "#ffffff",
    "textColor": "#000000",
    "buttonColor": "#084c58"
  },
  "links": [
    {
      "title": "My Website",
      "url": "https://johndoe.com",
      "icon": "globe"
    },
    {
      "title": "YouTube Channel",
      "url": "https://youtube.com/@johndoe",
      "icon": "youtube"
    }
  ],
  "profileImage": "https://example.com/avatar.jpg",
  "socialLinks": {
    "twitter": "johndoe",
    "instagram": "johndoe"
  },
  "views": 1234,
  "clicks": 456,
  "createdAt": "2026-01-15T10:00:00Z",
  "updatedAt": "2026-02-05T14:30:00Z"
}