cURL
curl --request POST \
--url https://api.surnex.io/v1/webhooks/marketing/blog \
--header 'Content-Type: application/json' \
--data '
{
"event_id": "evt_3f2bce4a",
"slug": "search-intent-update-q1",
"title": "How LLM Search Changes Content Strategy in 2026",
"description": "A practical model for balancing traditional SEO and LLM discoverability.",
"published_at": "2026-02-25T00:00:00Z",
"updated_at": "2026-02-26T00:00:00Z",
"author": "Editorial Team",
"tags": [
"seo",
"ai",
"llm"
],
"status": "published",
"content_markdown": "# Heading\\n\\nKeep content structured...",
"hero_image_url": "https://surnex.io/assets/opengraph/default-hero.png",
"excerpt": "A practical model for balancing traditional SEO and LLM discoverability.",
"checksum": "abc123"
}
'import requests
url = "https://api.surnex.io/v1/webhooks/marketing/blog"
payload = {
"event_id": "evt_3f2bce4a",
"slug": "search-intent-update-q1",
"title": "How LLM Search Changes Content Strategy in 2026",
"description": "A practical model for balancing traditional SEO and LLM discoverability.",
"published_at": "2026-02-25T00:00:00Z",
"updated_at": "2026-02-26T00:00:00Z",
"author": "Editorial Team",
"tags": ["seo", "ai", "llm"],
"status": "published",
"content_markdown": "# Heading\n\nKeep content structured...",
"hero_image_url": "https://surnex.io/assets/opengraph/default-hero.png",
"excerpt": "A practical model for balancing traditional SEO and LLM discoverability.",
"checksum": "abc123"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
event_id: 'evt_3f2bce4a',
slug: 'search-intent-update-q1',
title: 'How LLM Search Changes Content Strategy in 2026',
description: 'A practical model for balancing traditional SEO and LLM discoverability.',
published_at: '2026-02-25T00:00:00Z',
updated_at: '2026-02-26T00:00:00Z',
author: 'Editorial Team',
tags: ['seo', 'ai', 'llm'],
status: 'published',
content_markdown: '# Heading\n\nKeep content structured...',
hero_image_url: 'https://surnex.io/assets/opengraph/default-hero.png',
excerpt: 'A practical model for balancing traditional SEO and LLM discoverability.',
checksum: 'abc123'
})
};
fetch('https://api.surnex.io/v1/webhooks/marketing/blog', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.surnex.io/v1/webhooks/marketing/blog",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'event_id' => 'evt_3f2bce4a',
'slug' => 'search-intent-update-q1',
'title' => 'How LLM Search Changes Content Strategy in 2026',
'description' => 'A practical model for balancing traditional SEO and LLM discoverability.',
'published_at' => '2026-02-25T00:00:00Z',
'updated_at' => '2026-02-26T00:00:00Z',
'author' => 'Editorial Team',
'tags' => [
'seo',
'ai',
'llm'
],
'status' => 'published',
'content_markdown' => '# Heading\\n\\nKeep content structured...',
'hero_image_url' => 'https://surnex.io/assets/opengraph/default-hero.png',
'excerpt' => 'A practical model for balancing traditional SEO and LLM discoverability.',
'checksum' => 'abc123'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.surnex.io/v1/webhooks/marketing/blog"
payload := strings.NewReader("{\n \"event_id\": \"evt_3f2bce4a\",\n \"slug\": \"search-intent-update-q1\",\n \"title\": \"How LLM Search Changes Content Strategy in 2026\",\n \"description\": \"A practical model for balancing traditional SEO and LLM discoverability.\",\n \"published_at\": \"2026-02-25T00:00:00Z\",\n \"updated_at\": \"2026-02-26T00:00:00Z\",\n \"author\": \"Editorial Team\",\n \"tags\": [\n \"seo\",\n \"ai\",\n \"llm\"\n ],\n \"status\": \"published\",\n \"content_markdown\": \"# Heading\\\\n\\\\nKeep content structured...\",\n \"hero_image_url\": \"https://surnex.io/assets/opengraph/default-hero.png\",\n \"excerpt\": \"A practical model for balancing traditional SEO and LLM discoverability.\",\n \"checksum\": \"abc123\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.surnex.io/v1/webhooks/marketing/blog")
.header("Content-Type", "application/json")
.body("{\n \"event_id\": \"evt_3f2bce4a\",\n \"slug\": \"search-intent-update-q1\",\n \"title\": \"How LLM Search Changes Content Strategy in 2026\",\n \"description\": \"A practical model for balancing traditional SEO and LLM discoverability.\",\n \"published_at\": \"2026-02-25T00:00:00Z\",\n \"updated_at\": \"2026-02-26T00:00:00Z\",\n \"author\": \"Editorial Team\",\n \"tags\": [\n \"seo\",\n \"ai\",\n \"llm\"\n ],\n \"status\": \"published\",\n \"content_markdown\": \"# Heading\\\\n\\\\nKeep content structured...\",\n \"hero_image_url\": \"https://surnex.io/assets/opengraph/default-hero.png\",\n \"excerpt\": \"A practical model for balancing traditional SEO and LLM discoverability.\",\n \"checksum\": \"abc123\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.surnex.io/v1/webhooks/marketing/blog")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"event_id\": \"evt_3f2bce4a\",\n \"slug\": \"search-intent-update-q1\",\n \"title\": \"How LLM Search Changes Content Strategy in 2026\",\n \"description\": \"A practical model for balancing traditional SEO and LLM discoverability.\",\n \"published_at\": \"2026-02-25T00:00:00Z\",\n \"updated_at\": \"2026-02-26T00:00:00Z\",\n \"author\": \"Editorial Team\",\n \"tags\": [\n \"seo\",\n \"ai\",\n \"llm\"\n ],\n \"status\": \"published\",\n \"content_markdown\": \"# Heading\\\\n\\\\nKeep content structured...\",\n \"hero_image_url\": \"https://surnex.io/assets/opengraph/default-hero.png\",\n \"excerpt\": \"A practical model for balancing traditional SEO and LLM discoverability.\",\n \"checksum\": \"abc123\"\n}"
response = http.request(request)
puts response.read_body{
"request_id": "req_123",
"event_id": "evt_3f2bce4a",
"slug": "search-intent-update-q1",
"status": "accepted",
"commit_sha": "abc123456"
}marketing
Post v1webhooksmarketingblog
POST
/
v1
/
webhooks
/
marketing
/
blog
cURL
curl --request POST \
--url https://api.surnex.io/v1/webhooks/marketing/blog \
--header 'Content-Type: application/json' \
--data '
{
"event_id": "evt_3f2bce4a",
"slug": "search-intent-update-q1",
"title": "How LLM Search Changes Content Strategy in 2026",
"description": "A practical model for balancing traditional SEO and LLM discoverability.",
"published_at": "2026-02-25T00:00:00Z",
"updated_at": "2026-02-26T00:00:00Z",
"author": "Editorial Team",
"tags": [
"seo",
"ai",
"llm"
],
"status": "published",
"content_markdown": "# Heading\\n\\nKeep content structured...",
"hero_image_url": "https://surnex.io/assets/opengraph/default-hero.png",
"excerpt": "A practical model for balancing traditional SEO and LLM discoverability.",
"checksum": "abc123"
}
'import requests
url = "https://api.surnex.io/v1/webhooks/marketing/blog"
payload = {
"event_id": "evt_3f2bce4a",
"slug": "search-intent-update-q1",
"title": "How LLM Search Changes Content Strategy in 2026",
"description": "A practical model for balancing traditional SEO and LLM discoverability.",
"published_at": "2026-02-25T00:00:00Z",
"updated_at": "2026-02-26T00:00:00Z",
"author": "Editorial Team",
"tags": ["seo", "ai", "llm"],
"status": "published",
"content_markdown": "# Heading\n\nKeep content structured...",
"hero_image_url": "https://surnex.io/assets/opengraph/default-hero.png",
"excerpt": "A practical model for balancing traditional SEO and LLM discoverability.",
"checksum": "abc123"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
event_id: 'evt_3f2bce4a',
slug: 'search-intent-update-q1',
title: 'How LLM Search Changes Content Strategy in 2026',
description: 'A practical model for balancing traditional SEO and LLM discoverability.',
published_at: '2026-02-25T00:00:00Z',
updated_at: '2026-02-26T00:00:00Z',
author: 'Editorial Team',
tags: ['seo', 'ai', 'llm'],
status: 'published',
content_markdown: '# Heading\n\nKeep content structured...',
hero_image_url: 'https://surnex.io/assets/opengraph/default-hero.png',
excerpt: 'A practical model for balancing traditional SEO and LLM discoverability.',
checksum: 'abc123'
})
};
fetch('https://api.surnex.io/v1/webhooks/marketing/blog', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.surnex.io/v1/webhooks/marketing/blog",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'event_id' => 'evt_3f2bce4a',
'slug' => 'search-intent-update-q1',
'title' => 'How LLM Search Changes Content Strategy in 2026',
'description' => 'A practical model for balancing traditional SEO and LLM discoverability.',
'published_at' => '2026-02-25T00:00:00Z',
'updated_at' => '2026-02-26T00:00:00Z',
'author' => 'Editorial Team',
'tags' => [
'seo',
'ai',
'llm'
],
'status' => 'published',
'content_markdown' => '# Heading\\n\\nKeep content structured...',
'hero_image_url' => 'https://surnex.io/assets/opengraph/default-hero.png',
'excerpt' => 'A practical model for balancing traditional SEO and LLM discoverability.',
'checksum' => 'abc123'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.surnex.io/v1/webhooks/marketing/blog"
payload := strings.NewReader("{\n \"event_id\": \"evt_3f2bce4a\",\n \"slug\": \"search-intent-update-q1\",\n \"title\": \"How LLM Search Changes Content Strategy in 2026\",\n \"description\": \"A practical model for balancing traditional SEO and LLM discoverability.\",\n \"published_at\": \"2026-02-25T00:00:00Z\",\n \"updated_at\": \"2026-02-26T00:00:00Z\",\n \"author\": \"Editorial Team\",\n \"tags\": [\n \"seo\",\n \"ai\",\n \"llm\"\n ],\n \"status\": \"published\",\n \"content_markdown\": \"# Heading\\\\n\\\\nKeep content structured...\",\n \"hero_image_url\": \"https://surnex.io/assets/opengraph/default-hero.png\",\n \"excerpt\": \"A practical model for balancing traditional SEO and LLM discoverability.\",\n \"checksum\": \"abc123\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.surnex.io/v1/webhooks/marketing/blog")
.header("Content-Type", "application/json")
.body("{\n \"event_id\": \"evt_3f2bce4a\",\n \"slug\": \"search-intent-update-q1\",\n \"title\": \"How LLM Search Changes Content Strategy in 2026\",\n \"description\": \"A practical model for balancing traditional SEO and LLM discoverability.\",\n \"published_at\": \"2026-02-25T00:00:00Z\",\n \"updated_at\": \"2026-02-26T00:00:00Z\",\n \"author\": \"Editorial Team\",\n \"tags\": [\n \"seo\",\n \"ai\",\n \"llm\"\n ],\n \"status\": \"published\",\n \"content_markdown\": \"# Heading\\\\n\\\\nKeep content structured...\",\n \"hero_image_url\": \"https://surnex.io/assets/opengraph/default-hero.png\",\n \"excerpt\": \"A practical model for balancing traditional SEO and LLM discoverability.\",\n \"checksum\": \"abc123\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.surnex.io/v1/webhooks/marketing/blog")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"event_id\": \"evt_3f2bce4a\",\n \"slug\": \"search-intent-update-q1\",\n \"title\": \"How LLM Search Changes Content Strategy in 2026\",\n \"description\": \"A practical model for balancing traditional SEO and LLM discoverability.\",\n \"published_at\": \"2026-02-25T00:00:00Z\",\n \"updated_at\": \"2026-02-26T00:00:00Z\",\n \"author\": \"Editorial Team\",\n \"tags\": [\n \"seo\",\n \"ai\",\n \"llm\"\n ],\n \"status\": \"published\",\n \"content_markdown\": \"# Heading\\\\n\\\\nKeep content structured...\",\n \"hero_image_url\": \"https://surnex.io/assets/opengraph/default-hero.png\",\n \"excerpt\": \"A practical model for balancing traditional SEO and LLM discoverability.\",\n \"checksum\": \"abc123\"\n}"
response = http.request(request)
puts response.read_body{
"request_id": "req_123",
"event_id": "evt_3f2bce4a",
"slug": "search-intent-update-q1",
"status": "accepted",
"commit_sha": "abc123456"
}Body
application/json
MarketingBlogIngestionInput
Minimum string length:
1Required string length:
1 - 190Minimum string length:
1Minimum string length:
1Minimum string length:
1Minimum string length:
1Minimum string length:
1Minimum string length:
1Available options:
draft, published ⌘I