For the complete documentation index, see llms.txt. This page is also available as Markdown.

SEO & Utilities

SEO metadata and utility endpoints

Retrieve SEO metadata

get

Returns SEO metadata (title, description, keywords) for a given URL.

Query parameters
urlstringRequired

URL path to get SEO data for

Example: /products/smartwatch
Responses
200

SEO data retrieved

application/json

SEO metadata for a specific URL path. Contains title, description, keywords, and additional attributes for search engine optimization. Used to retrieve SEO information for any URL in the system.

pkintegerRequiredExample: 1
urlstringRequiredExample: /products/smartwatch
titlestringOptionalExample: Smart Watch - Best Deals
descriptionstringOptionalExample: Discover the latest smart watches at great prices
keywordsstringOptionalExample: smartwatch, wearable, technology
created_datestring · date-timeOptional
modified_datestring · date-timeOptional
get/cms/seo/
GET /cms/seo/?url=text HTTP/1.1
Host: sandbox.akinon.com
Accept: */*
{
  "pk": 1,
  "url": "/products/smartwatch",
  "title": "Smart Watch - Best Deals",
  "description": "Discover the latest smart watches at great prices",
  "keywords": "smartwatch, wearable, technology",
  "attributes": {
    "ANY_ADDITIONAL_PROPERTY": "anything"
  },
  "attributes_kwargs": {
    "ANY_ADDITIONAL_PROPERTY": "anything"
  },
  "created_date": "2026-01-01T00:00:00.000Z",
  "modified_date": "2026-01-01T00:00:00.000Z"
}

Get CSRF token

get

Returns a CSRF token for use in form submissions.

Responses
200

CSRF token retrieved

application/json
csrf_tokenstringRequired

CSRF token value

Example: abc123def456ghi789
get/csrf_token/
GET /csrf_token/ HTTP/1.1
Host: sandbox.akinon.com
Accept: */*
200

CSRF token retrieved

{
  "csrf_token": "abc123def456ghi789"
}

Last updated

Was this helpful?