GET /api/v1/combined

Last updated March 23, 2026

Document + insight merged into a single payload.

Request

GET /api/v1/combined

All endpoint requests require the X-SYNTHLINK-KEY header. See Authentication and Rate Limits.

Query parameters

NameTypeDescription
limitnumberMax records to return. Default: 10
sourcestringFilter by document source (e.g. openai_news)
content_sourcestringOptional filter by document content source (e.g. rss)
start_datestringOnly return items whose document.created_at is on or after an ISO 8601 date/date-time
end_datestringOnly return items whose document.created_at is on or before an ISO 8601 date/date-time

Examples

cURL
curl -H "X-SYNTHLINK-KEY: sk_live_your_key_here" "https://synth-link.com/api/v1/combined?limit=1&source=openai_news&start_date=2026-03-20T00:00:00Z&end_date=2026-03-24T00:00:00Z"
Fetch
const res = await fetch("https://synth-link.com/api/v1/combined?limit=1&source=openai_news&start_date=2026-03-20T00:00:00Z&end_date=2026-03-24T00:00:00Z", {
  headers: { "X-SYNTHLINK-KEY": "sk_live_your_key_here" },
});
const data = await res.json();
console.log(data);
Python
import requests

res = requests.get(
  "https://synth-link.com/api/v1/combined?limit=1&source=openai_news&start_date=2026-03-20T00:00:00Z&end_date=2026-03-24T00:00:00Z",
  headers={"X-SYNTHLINK-KEY": "sk_live_your_key_here"},
  timeout=10,
)
print(res.status_code)
print(res.json())

Response example

[
  {
    "document": {
      "title": "GPT-4o System Card",
      "url": "https://openai.com/..."
    },
    "insight": {
      "category": "AI Research",
      "llm_summary": "GPT-4o introduces multimodal...",
      "keywords": ["gpt-4o", "multimodal", "openai"],
      "tags": ["release", "model"],
      "source": "openai_news",
      "created_at": "2026-03-19T06:01:00Z"
    }
  }
]

Related docs

For usage guidance and workflow context, see Querying Data.

Was this helpful?