POST
/ainews_feedsAinews Feeds
여러 RSS/Atom 피드 병렬 fetch → 단일 timeline. 10분 캐시. 본문 X.
Request body
feedsobject[]requiredfill_ogbooleanlimit_per_feedintegerResponses
200 Successful Response422 Validation Error
objectcURL
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
{}