메인 콘텐츠로 건너뛰기
POST
/
api
/
v1
/
evidence-finder
curl -X POST "https://api.factagora.com/api/v1/evidence-finder" \
  -H "Authorization: Bearer fag_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"claim": "Bitcoin price will exceed 200000 dollars in 2025", "limit": 5}'
{
  "claim": "Bitcoin price will exceed 200000 dollars in 2025",
  "results": [
    {
      "title": "Bitcoin surges past $100,000 as institutional demand accelerates",
      "summary": "Reuters reports a surge in institutional Bitcoin purchases in early 2025, which analysts cite as a key demand driver toward higher price targets.",
      "snippet": "Bitcoin climbed above $100,000 for the first time on Thursday as institutional inflows accelerated...",
      "source": "https://www.reuters.com/markets/currencies/bitcoin-surge-institutional-2025",
      "publishedAt": "2025-03-14T09:30:00Z",
      "type": "NEWS",
      "credibility": 0.92,
      "stance": "SUPPORTS"
    },
    {
      "title": "Bitcoin's path to $200K: what analysts say",
      "summary": "Bloomberg analysis reviews multiple price forecasts, with some projecting Bitcoin could reach $200,000 by late 2025 under favorable macro conditions.",
      "snippet": "",
      "source": "https://www.bloomberg.com/news/articles/bitcoin-200k-forecast",
      "publishedAt": "2025-02-28T14:00:00Z",
      "type": "NEWS",
      "credibility": 0.88,
      "stance": "SUPPORTS"
    },
    {
      "title": "Why Bitcoin may not hit $200,000 this cycle",
      "summary": "The Guardian outlines bearish scenarios including regulatory headwinds and macro tightening that could prevent Bitcoin from reaching $200,000 in 2025.",
      "snippet": "Analysts warn that tightening monetary policy and regulatory uncertainty could cap Bitcoin's gains this year...",
      "source": "https://www.theguardian.com/technology/bitcoin-200k-skeptics",
      "publishedAt": "2025-01-20T11:00:00Z",
      "type": "NEWS",
      "credibility": 0.88,
      "stance": "CONTRADICTS"
    }
  ],
  "meta": {
    "total": 8,
    "executionTimeMs": 4821
  }
}
실시간 뉴스 출처에서 클레임과 관련된 증거를 검색합니다. 출처가 클레임을 지지하는지, 반박하는지, 중립인지 나타내는 입장과 함께, AI가 분석하고 신뢰도 점수를 매긴 출처를 유형별로 분류해 반환합니다.

요청 본문

claim
string
필수
증거를 찾을 클레임 또는 주제. 최대 500자.
limit
number
기본값:"5"
반환할 결과의 최대 개수. 범위: 1–20.
language
string
증거 수집 시 뉴스 출처 언어 필터. 예: english, korean
country
string
증거 수집 시 뉴스 출처 국가 코드 필터. 예: US, KR
sortBy
string
기본값:"relevance"
뉴스 기반 증거의 정렬 순서. 옵션: relevance, date
from
string
뉴스 기반 증거의 날짜 범위 시작 (ISO 8601). 예: 2025-01-01T00:00:00Z
to
string
뉴스 기반 증거의 날짜 범위 종료 (ISO 8601). 예: 2025-05-01T23:59:59Z

응답

claim
string
검색에 사용된 클레임입니다.
results
array
증거 항목 목록입니다. sortByrelevance(기본값)이면 검색 관련도 순, date이면 최신순으로 정렬됩니다.
meta
object
curl -X POST "https://api.factagora.com/api/v1/evidence-finder" \
  -H "Authorization: Bearer fag_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"claim": "Bitcoin price will exceed 200000 dollars in 2025", "limit": 5}'
{
  "claim": "Bitcoin price will exceed 200000 dollars in 2025",
  "results": [
    {
      "title": "Bitcoin surges past $100,000 as institutional demand accelerates",
      "summary": "Reuters reports a surge in institutional Bitcoin purchases in early 2025, which analysts cite as a key demand driver toward higher price targets.",
      "snippet": "Bitcoin climbed above $100,000 for the first time on Thursday as institutional inflows accelerated...",
      "source": "https://www.reuters.com/markets/currencies/bitcoin-surge-institutional-2025",
      "publishedAt": "2025-03-14T09:30:00Z",
      "type": "NEWS",
      "credibility": 0.92,
      "stance": "SUPPORTS"
    },
    {
      "title": "Bitcoin's path to $200K: what analysts say",
      "summary": "Bloomberg analysis reviews multiple price forecasts, with some projecting Bitcoin could reach $200,000 by late 2025 under favorable macro conditions.",
      "snippet": "",
      "source": "https://www.bloomberg.com/news/articles/bitcoin-200k-forecast",
      "publishedAt": "2025-02-28T14:00:00Z",
      "type": "NEWS",
      "credibility": 0.88,
      "stance": "SUPPORTS"
    },
    {
      "title": "Why Bitcoin may not hit $200,000 this cycle",
      "summary": "The Guardian outlines bearish scenarios including regulatory headwinds and macro tightening that could prevent Bitcoin from reaching $200,000 in 2025.",
      "snippet": "Analysts warn that tightening monetary policy and regulatory uncertainty could cap Bitcoin's gains this year...",
      "source": "https://www.theguardian.com/technology/bitcoin-200k-skeptics",
      "publishedAt": "2025-01-20T11:00:00Z",
      "type": "NEWS",
      "credibility": 0.88,
      "stance": "CONTRADICTS"
    }
  ],
  "meta": {
    "total": 8,
    "executionTimeMs": 4821
  }
}