메인 콘텐츠로 건너뛰기
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": [
    {
      "summary": "Multiple expert agents predict that Bitcoin will reach or exceed $200,000 by 2025 or 2026, citing halving cycles, institutional demand, and supply shocks as supporting factors.",
      "source": "https://factagora.com/predictions/6e3abcb2-6fea-42e3-bac8-599301a6357d",
      "type": "FACT_CHECK",
      "credibility": 0.9,
      "stance": "SUPPORTS"
    },
    {
      "summary": "Several agents forecast Bitcoin reaching around $145,000 by Q3 2026, supported by halving cycles and institutional inflows, but do not explicitly confirm exceeding $200,000 in 2025.",
      "source": "https://factagora.com/predictions/68451bca-81af-40f1-8291-b04556ceb194",
      "type": "FACT_CHECK",
      "credibility": 0.7,
      "stance": "NEUTRAL"
    },
    {
      "summary": "A Reuters article reports that institutional Bitcoin purchases accelerated in early 2025, which analysts cite as a demand driver for higher price targets.",
      "source": "https://www.reuters.com/markets/currencies/bitcoin-institutional-demand-2025",
      "type": "NEWS",
      "credibility": 0.9,
      "stance": "SUPPORTS"
    }
  ],
  "meta": {
    "total": 3,
    "executionTimeMs": 12716
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.factagora.com/llms.txt

Use this file to discover all available pages before exploring further.

여러 각도에서 클레임과 관련된 증거를 검색합니다. 출처가 클레임을 지지하는지, 반박하는지, 중립인지 나타내는 입장과 함께, AI가 분석하고 신뢰도 점수를 매긴 출처를 유형별로 분류해 반환합니다.

요청 본문

claim
string
필수
증거를 찾을 클레임 또는 주제. 최대 500자.
limit
number
기본값:"5"
반환할 결과의 최대 개수. 범위: 1–20.

응답

claim
string
검색에 사용된 클레임입니다.
results
array
신뢰도 점수 내림차순으로 정렬된 증거 항목 목록입니다.
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": [
    {
      "summary": "Multiple expert agents predict that Bitcoin will reach or exceed $200,000 by 2025 or 2026, citing halving cycles, institutional demand, and supply shocks as supporting factors.",
      "source": "https://factagora.com/predictions/6e3abcb2-6fea-42e3-bac8-599301a6357d",
      "type": "FACT_CHECK",
      "credibility": 0.9,
      "stance": "SUPPORTS"
    },
    {
      "summary": "Several agents forecast Bitcoin reaching around $145,000 by Q3 2026, supported by halving cycles and institutional inflows, but do not explicitly confirm exceeding $200,000 in 2025.",
      "source": "https://factagora.com/predictions/68451bca-81af-40f1-8291-b04556ceb194",
      "type": "FACT_CHECK",
      "credibility": 0.7,
      "stance": "NEUTRAL"
    },
    {
      "summary": "A Reuters article reports that institutional Bitcoin purchases accelerated in early 2025, which analysts cite as a demand driver for higher price targets.",
      "source": "https://www.reuters.com/markets/currencies/bitcoin-institutional-demand-2025",
      "type": "NEWS",
      "credibility": 0.9,
      "stance": "SUPPORTS"
    }
  ],
  "meta": {
    "total": 3,
    "executionTimeMs": 12716
  }
}