Links
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
GET /v1/links HTTP/1.1
Host: api.cuppa.ai
X-API-KEY: YOUR_API_KEY
Accept: */*
{
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"domain": "text",
"link_engine_status": "active",
"link_engine_url_count": 1,
"link_engine_last_indexed_at": "2026-02-04T17:24:04.431Z",
"link_engine_error": "text",
"category_id": "123e4567-e89b-12d3-a456-426614174000",
"category_name": "text",
"has_link_config": true,
"created_at": "2026-02-04T17:24:04.431Z"
}
],
"pagination": {
"page": 1,
"page_size": 1,
"total": 1,
"total_pages": 1
}
}GET /v1/links/stats HTTP/1.1
Host: api.cuppa.ai
X-API-KEY: YOUR_API_KEY
Accept: */*
{
"total_sites": 1,
"active_sites": 1,
"paused_sites": 1,
"indexing_sites": 1,
"error_sites": 1,
"total_urls": 1
}GET /v1/links/categories HTTP/1.1
Host: api.cuppa.ai
X-API-KEY: YOUR_API_KEY
Accept: */*
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"slug": "text",
"description": "text",
"color": "text",
"site_count": 1,
"created_at": "2026-02-04T17:24:04.431Z"
}
]POST /v1/links/categories HTTP/1.1
Host: api.cuppa.ai
X-API-KEY: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 54
{
"name": "text",
"description": "text",
"color": "#6366f1"
}{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"slug": "text",
"description": "text",
"color": "text",
"site_count": 1,
"created_at": "2026-02-04T17:24:04.431Z"
}