Official developer portal and integration guide for yleoeditor (Leonardo Daitx). Access real-time portfolio project datasets, high-retention video metrics, viral shorts showcase, and client review catalogs programmatically.
Read operations via the public REST API (e.g. GET /api/v1/content and GET /api) require no API key or token.
Rate limits are governed by RFC standards: 120 requests/minute per client IP. Rate limit headers are returned in all HTTP responses:
RateLimit-Limit: 120RateLimit-Remaining: 119RateLimit-Reset: 60RateLimit-Policy: 120;w=60
The yleoeditor API implements explicit URL path versioning (/api/v1/) coupled with RFC 8594 standard deprecation signals.
All API responses broadcast deprecation and sunset timelines via standard HTTP headers:
Sunset: Fri, 31 Dec 2027 23:59:59 GMTDeprecation: Fri, 31 Dec 2027 23:59:59 GMTLink: <https://yleoeditor.com/docs#deprecation>; rel="deprecation"Query the yleoeditor v1 content dataset directly using curl or any HTTP client:
# Query API Service Discovery
curl -s -X GET https://yleoeditor.com/api \
-H "Accept: application/json"
# Retrieve full portfolio dataset (projects, shorts, channels, reviews)
curl -s -X GET https://yleoeditor.com/api/v1/content \
-H "Accept: application/json"
# Native AI Agent Content Negotiation
curl -s -X GET https://yleoeditor.com/ \
-H "Accept: text/markdown"
yleoeditor is engineered with native support for autonomous AI agents, crawlers, and LLMs:
Accept: text/markdown to the homepage returns clean Markdown directly.