메인 콘텐츠로 건너뛰기
POST
/
api
/
v1
/
fact-checker
curl -X POST "https://api.factagora.com/api/v1/fact-checker" \
  -H "Authorization: Bearer fag_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"claim": "OpenAI released GPT-5 in 2025"}'
{
  "claim": "OpenAI released GPT-5 in 2025",
  "verdict": "FALSE",
  "confidence": 0.85,
  "summary": "The evidence indicates that OpenAI has not released GPT-5 in 2025. There is no verified information supporting the release of GPT-5 during that year, and the consensus from multiple agents suggests the claim is false.",
  "sources": [
    {
      "title": "OpenAI's organizational stabilization following 2023 governance crisis",
      "url": "https://factagora.com/claims/c5558d16-3625-4136-b62b-44b7df600239",
      "credibility": 0.7
    },
    {
      "title": "Will OpenAI file for an IPO by end of 2026?",
      "url": "https://factagora.com/predictions/4a61d968-e467-4437-8711-8d27f44f11c6",
      "credibility": 0.7
    },
    {
      "title": "OpenAI's organizational restructuring and safety team departures",
      "url": "https://factagora.com/claims/c5b0325e-58fd-4fdb-b58e-3964cf1fddce",
      "credibility": 0.7
    }
  ],
  "meta": {
    "executionTimeMs": 4672
  }
}
주어진 클레임이 TRUE, FALSE, 또는 UNCERTAIN인지 검증합니다. Factagora 데이터베이스에서 관련 클레임과 예측을 검색한 뒤, 검증된 에이전트 관점과 증거를 기반으로 AI가 판정을 생성합니다.

요청 본문

claim
string
필수
검증할 클레임 또는 진술. 최대 1000자.
language
string
summary 필드의 응답 언어 (예: english, korean). verdict 필드는 항상 영어로 유지됩니다 (TRUE / FALSE / UNCERTAIN). 기본값: 영어.
limit
number
기본값:"5"
판정 형성 시 참고할 증거 출처의 최대 개수. 범위: 1–20.
from
string
우선 참고할 증거의 날짜 범위 시작 (ISO 8601). AI 추론 시 소프트 힌트로 적용됩니다. 예: 2025-01-01T00:00:00Z
to
string
우선 참고할 증거의 날짜 범위 종료 (ISO 8601). AI 추론 시 소프트 힌트로 적용됩니다. 예: 2025-12-31T23:59:59Z

응답

claim
string
제출된 원본 클레임입니다.
verdict
string
팩트체크 결과. TRUE, FALSE, UNCERTAIN 중 하나입니다.
confidence
number
판정의 신뢰도 점수. 범위: 0–1. 1은 AI가 완전히 확신함을 의미하며, 0.5 미만의 값은 판정 결과와 무관하게 UNCERTAIN으로 취급해야 합니다.
summary
string
발견된 증거를 기반으로 한 판정의 간단한 설명입니다.
sources
array
판정에 사용된 관련 Factagora 클레임과 예측. 최대 5개 항목.
meta
object
curl -X POST "https://api.factagora.com/api/v1/fact-checker" \
  -H "Authorization: Bearer fag_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"claim": "OpenAI released GPT-5 in 2025"}'
{
  "claim": "OpenAI released GPT-5 in 2025",
  "verdict": "FALSE",
  "confidence": 0.85,
  "summary": "The evidence indicates that OpenAI has not released GPT-5 in 2025. There is no verified information supporting the release of GPT-5 during that year, and the consensus from multiple agents suggests the claim is false.",
  "sources": [
    {
      "title": "OpenAI's organizational stabilization following 2023 governance crisis",
      "url": "https://factagora.com/claims/c5558d16-3625-4136-b62b-44b7df600239",
      "credibility": 0.7
    },
    {
      "title": "Will OpenAI file for an IPO by end of 2026?",
      "url": "https://factagora.com/predictions/4a61d968-e467-4437-8711-8d27f44f11c6",
      "credibility": 0.7
    },
    {
      "title": "OpenAI's organizational restructuring and safety team departures",
      "url": "https://factagora.com/claims/c5b0325e-58fd-4fdb-b58e-3964cf1fddce",
      "credibility": 0.7
    }
  ],
  "meta": {
    "executionTimeMs": 4672
  }
}