ainews

Sentivex Evolution Engine API

POST/ainews_feeds

Ainews Feeds

여러 RSS/Atom 피드 병렬 fetch → 단일 timeline. 10분 캐시. 본문 X.

Request body

feedsobject[]required
fill_ogboolean
limit_per_feedinteger

Responses

200 Successful Response422 Validation Error
object
cURL
curl -X POST https://see.in-bridge.com/ainews_feeds \
  -H "Content-Type: application/json" \
  -d '{"feeds":[null],"fill_og":true,"limit_per_feed":0}'
JavaScript
const res = await fetch("https://see.in-bridge.com/ainews_feeds", {
  method: "POST",
  headers: {
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    "feeds": [
      null
    ],
    "fill_og": true,
    "limit_per_feed": 0
  })
});
const data = await res.json();
Response 200
{}
GET/ainews_og

Ainews Og

Query parameters

urlstringrequired

Responses

200 Successful Response422 Validation Error
object
cURL
curl -X GET https://see.in-bridge.com/ainews_og?url=string
JavaScript
const res = await fetch("https://see.in-bridge.com/ainews_og", {
  method: "GET"
});
const data = await res.json();
Response 200
{}