Skip to main content
GET
/
v1
/
share-links
list share links
curl --request GET \
  --url https://api.anam.ai/v1/share-links \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "token": "sh_2kL9pQxYzR4vN8mBwHfJc",
      "type": "LINK",
      "expiresAt": "2026-04-27T10:00:00.000Z",
      "usageLimit": 10,
      "usageCount": 3,
      "allowedOrigins": [],
      "allowAllOrigins": false,
      "removeWatermark": false,
      "enabled": true,
      "isPrimary": false,
      "createdAt": "2026-04-20T10:00:00.000Z",
      "personaId": "00000000-0000-0000-0000-000000000000",
      "personaName": "Cara",
      "organizationId": "00000000-0000-0000-0000-000000000000"
    }
  ],
  "meta": {
    "total": 1,
    "lastPage": 1,
    "currentPage": 1,
    "perPage": 20,
    "prev": null,
    "next": null
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
default:1

Page number for pagination

Required range: x >= 1
perPage
integer
default:20

Number of items per page (max 100)

Required range: 1 <= x <= 100

Search term to filter share links

personaId
string<uuid>

Filter share links by persona ID

Response

Successfully retrieved share links

data
object[]
meta
object

Pagination metadata returned alongside the data array of every list endpoint.

Last modified on April 22, 2026