SEO & Utilities
SEO metadata and utility endpoints
Returns SEO metadata (title, description, keywords) for a given URL.
Query parameters
urlstringRequiredExample:
URL path to get SEO data for
/products/smartwatchResponses
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:
1urlstringRequiredExample:
/products/smartwatchtitlestringOptionalExample:
Smart Watch - Best DealsdescriptionstringOptionalExample:
Discover the latest smart watches at great priceskeywordsstringOptionalExample:
smartwatch, wearable, technologycreated_datestring · date-timeOptional
modified_datestring · date-timeOptional
404
SEO data not found for the given URL
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"
}Returns a CSRF token for use in form submissions.
Responses
200
CSRF token retrieved
application/json
csrf_tokenstringRequiredExample:
CSRF token value
abc123def456ghi789get/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?

