curl https://okl.ink/api/v1/pages/cly1019283749 \
-H "Authorization: Bearer YOUR_API_TOKEN"
{
"project": {
"id": "cly1019283749",
"slug": "my-project-hub",
"title": "My Project Hub",
"description": "Essential links, repository, and live demo.",
"coverImage": null,
"name": "Alex",
"published": true,
"passwordProtected": false,
"blocked": false,
"theme": {
"preset": "oklink",
"density": "comfortable",
"radius": "rounded"
}
},
"links": [
{
"id": "link_123",
"type": "github",
"url": "https://github.com/hebuildapps/demo-links",
"position": 0,
"title": "Source Code",
"size": "2x1",
"thumbnail": null,
"active": true,
"highlighted": false,
"clicks": 42
}
]
}
Pages
Get Page
Fetch full project details including ordered links, theme config, and security status.
GET
/
api
/
v1
/
pages
/
{id}
curl https://okl.ink/api/v1/pages/cly1019283749 \
-H "Authorization: Bearer YOUR_API_TOKEN"
{
"project": {
"id": "cly1019283749",
"slug": "my-project-hub",
"title": "My Project Hub",
"description": "Essential links, repository, and live demo.",
"coverImage": null,
"name": "Alex",
"published": true,
"passwordProtected": false,
"blocked": false,
"theme": {
"preset": "oklink",
"density": "comfortable",
"radius": "rounded"
}
},
"links": [
{
"id": "link_123",
"type": "github",
"url": "https://github.com/hebuildapps/demo-links",
"position": 0,
"title": "Source Code",
"size": "2x1",
"thumbnail": null,
"active": true,
"highlighted": false,
"clicks": 42
}
]
}
Get Page
Retrieves the complete data model for an owned page. Requirespages:read scope.
Headers
string
required
Bearer token with
pages:read scope.Path Parameters
string
required
The unique project ID.
Response
object
Project metadata, theme, and publication state.
array
Ordered list of link tiles.
curl https://okl.ink/api/v1/pages/cly1019283749 \
-H "Authorization: Bearer YOUR_API_TOKEN"
{
"project": {
"id": "cly1019283749",
"slug": "my-project-hub",
"title": "My Project Hub",
"description": "Essential links, repository, and live demo.",
"coverImage": null,
"name": "Alex",
"published": true,
"passwordProtected": false,
"blocked": false,
"theme": {
"preset": "oklink",
"density": "comfortable",
"radius": "rounded"
}
},
"links": [
{
"id": "link_123",
"type": "github",
"url": "https://github.com/hebuildapps/demo-links",
"position": 0,
"title": "Source Code",
"size": "2x1",
"thumbnail": null,
"active": true,
"highlighted": false,
"clicks": 42
}
]
}