Webhook Format
RankYak webhooks are sent asPOST requests with a JSON payload. The content type of the request is application/json.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Webhooks documentation
POST requests with a JSON payload. The content type of the request is application/json.
article.published{
"id": "unique-article-identifier",
"slug": "article-url-slug",
"excerpt": "First paragraph as a plain string without html or markdown",
"title": "Article Title",
"meta_title": "SEO Meta Title",
"meta_description": "SEO Meta Description",
"html": "<p>Article content in HTML format</p>",
"markdown": "# Article Title\n\nArticle content in Markdown format",
"header_image_url": "https://media.rankyak.com/example.png",
"publish_at": "YYYY-MM-DDTHH:MM:SSZ",
"published_at": "YYYY-MM-DDTHH:MM:SSZ"
}