Bio Pages

Programmatically create and manage link-in-bio pages. Bio pages support custom themes, avatars, and ordered link blocks.

This documentation is available in English only.

Endpoints

POST
/v1/bio-pages

Create a bio page

GET
/v1/bio-pages

List all bio pages

GET
/v1/bio-pages/:id

Get bio page details

PATCH
/v1/bio-pages/:id

Update a bio page

DELETE
/v1/bio-pages/:id

Delete a bio page

POST
/v1/bio-pages/:id/links

Add a link to a bio page

Example

curl -X POST https://lnk24.co/api/v1/bio-pages \
  -H "Authorization: Bearer lnk_live_abc123" \
  -H "Content-Type: application/json" \
  -d '{
    "slug": "johndoe",
    "title": "John Doe",
    "bio": "Developer & Creator",
    "theme": "minimal"
  }'