> ## 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.

# Fact Search

> Fact Search 활용 베스트 프랙티스

## 핵심 키워드 사용

전체 문장보다 짧고 구체적인 키워드가 더 나은 결과를 반환합니다.

```bash theme={null}
# 좋은 예
q=bitcoin+ETF+approval

# 피할 예
q=what+is+the+latest+news+about+bitcoin+ETF+approval
```

## 언어와 국가로 필터링

특정 지역을 대상으로 한다면 노이즈를 줄이기 위해 항상 `language`와 `country`를 함께 전달하세요.

```bash theme={null}
# 한국 뉴스만
q=삼성전자&language=korean&country=KR

# 미국 영어 뉴스만
q=federal+reserve&language=english&country=US
```

## 속보에는 `sortBy=date` 사용

연관도보다 최신성이 더 중요할 때는 정렬 순서를 바꾸세요.

```bash theme={null}
q=earthquake&sortBy=date&timespan=24h
```

## 성능을 위한 결과 수 제한

기본 `limit`은 10입니다. 실시간 사용 사례에서는 3–5로 줄여 응답 시간을 단축하세요.

```bash theme={null}
q=nvidia&limit=3
```

## Fact Checker와 결합

Fact Search로 최근 기사를 찾은 뒤, 핵심 클레임을 [Fact Checker](/ko/api-reference/fact-checker)에 넘겨 검증하세요.

```
Fact Search → 기사에서 클레임 추출 → Fact Checker
```
