Retrieve content from a URL in markdown format.
curl "https://api.keenable.ai/v1/fetch?url=https://example.com/ts-best-practices" \
-H "X-API-Key: keen_<your_key>"
Only URLs that Keenable indexes are supported in this API. Attempting to fetch a document that is not indexed results in an error.
Request
Maximum number of characters of content to return. Longer content is truncated.
Response
Page title (if available).
Short summary of the page (if available).
Page author (if available).
Extracted page content in markdown.
Publication time as a Unix timestamp in seconds (if available).
Example
{
"url": "https://example.com/ts-best-practices",
"title": "TypeScript Best Practices 2026",
"description": "A comprehensive guide to modern TypeScript patterns and best practices.",
"author": "Jane Doe",
"published_at": 1768435200,
"content": "# TypeScript Best Practices 2026\n\nUse strict mode, prefer interfaces over type aliases for object shapes..."
}