웹 페치 도구를 사용하면 Claude가 지정된 웹 페이지와 PDF 문서에서 전체 콘텐츠를 검색할 수 있습니다.
웹 페치 도구는 현재 베타 버전입니다. 이를 활성화하려면 API 요청에서 베타 헤더 web-fetch-2025-09-10을 사용하세요.
이 양식을 사용하여 모델 응답의 품질, API 자체 또는 문서의 품질에 대한 피드백을 제공하세요.
Claude가 신뢰할 수 없는 입력을 민감한 데이터와 함께 처리하는 환경에서 웹 페치 도구를 활성화하면 데이터 유출 위험이 발생합니다. 신뢰할 수 있는 환경에서만 또는 민감하지 않은 데이터를 처리할 때만 이 도구를 사용하는 것을 권장합니다.
유출 위험을 최소화하기 위해 Claude는 동적으로 URL을 구성할 수 없습니다. Claude는 사용자가 명시적으로 제공한 URL 또는 이전 웹 검색 또는 웹 페치 결과에서 나온 URL만 페치할 수 있습니다. 그러나 이 도구를 사용할 때 신중하게 고려해야 할 잔여 위험이 여전히 있습니다.
데이터 유출이 우려되는 경우 다음을 고려하세요:
max_uses 매개변수를 사용하여 요청 수 제한allowed_domains 매개변수를 사용하여 알려진 안전한 도메인으로 제한웹 페치는 다음에서 사용 가능합니다:
claude-sonnet-4-5-20250929)claude-sonnet-4-20250514)claude-3-7-sonnet-20250219)claude-haiku-4-5-20251001)claude-3-5-haiku-latest)claude-opus-4-5-20251101)claude-opus-4-1-20250805)claude-opus-4-20250514)API 요청에 웹 페치 도구를 추가하면:
웹 페치 도구는 현재 Javascript를 통해 동적으로 렌더링되는 웹 사이트를 지원하지 않습니다.
API 요청에 웹 페치 도구를 제공하세요:
웹 페치 도구는 다음 매개변수를 지원합니다:
{
"type": "web_fetch_20250910",
"name": "web_fetch",
// 선택사항: 요청당 페치 수 제한
"max_uses": 10,
// 선택사항: 이 도메인에서만 페치
"allowed_domains": ["example.com", "docs.example.com"],
// 선택사항: 이 도메인에서는 절대 페치하지 않음
"blocked_domains": ["private.example.com"],
// 선택사항: 페치된 콘텐츠에 대한 인용 활성화
"citations": {
"enabled": true
},
// 선택사항: 토큰 단위의 최대 콘텐츠 길이
"max_content_tokens": 100000
}max_uses 매개변수는 수행되는 웹 페치 수를 제한합니다. Claude가 허용된 것보다 많은 페치를 시도하면 web_fetch_tool_result는 max_uses_exceeded 오류 코드가 있는 오류가 됩니다. 현재 기본 제한이 없습니다.
도메인 필터를 사용할 때:
https://example.com 대신 example.com 사용)example.com은 docs.example.com을 포함)example.com/blog)allowed_domains 또는 blocked_domains 중 하나를 사용할 수 있지만 같은 요청에서 둘 다 사용할 수는 없습니다.도메인 이름의 유니코드 문자는 시각적으로 유사한 다양한 스크립트의 문자가 도메인 필터를 우회할 수 있는 동형 공격을 통해 보안 취약점을 만들 수 있습니다. 예를 들어 аmazon.com (키릴 문자 'а' 사용)은 amazon.com과 동일하게 보일 수 있지만 다른 도메인을 나타냅니다.
도메인 허용/차단 목록을 구성할 때:
max_content_tokens 매개변수는 컨텍스트에 포함될 콘텐츠의 양을 제한합니다. 페치된 콘텐츠가 이 제한을 초과하면 잘립니다. 이는 큰 문서를 페치할 때 토큰 사용을 제어하는 데 도움이 됩니다.
max_content_tokens 매개변수 제한은 대략적입니다. 실제 입력 토큰 수는 약간 다를 수 있습니다.
웹 검색과 달리 인용이 항상 활성화되는 경우와 달리 웹 페치의 경우 인용은 선택사항입니다. "citations": {"enabled": true}를 설정하여 Claude가 페치된 문서의 특정 구절을 인용하도록 활성화하세요.
API 출력을 최종 사용자에게 직접 표시할 때 원본 소스에 대한 인용이 포함되어야 합니다. API 출력을 수정하는 경우, 자신의 자료로 재처리 및/또는 결합하여 최종 사용자에게 표시하기 전에 법무팀과 상담을 기반으로 적절하게 인용을 표시하세요.
다음은 응답 구조의 예입니다:
{
"role": "assistant",
"content": [
// 1. Claude의 페치 결정
{
"type": "text",
"text": "I'll fetch the content from the article to analyze it."
},
// 2. 페치 요청
{
"type": "server_tool_use",
"id": "srvtoolu_01234567890abcdef",
"name": "web_fetch",
"input": {
"url": "https://example.com/article"
}
},
// 3. 페치 결과
{
"type": "web_fetch_tool_result",
"tool_use_id": "srvtoolu_01234567890abcdef",
"content": {
"type": "web_fetch_result",
"url": "https://example.com/article",
"content": {
"type": "document",
"source": {
"type": "text",
"media_type": "text/plain",
"data": "Full text content of the article..."
},
"title": "Article Title",
"citations": {"enabled": true}
},
"retrieved_at": "2025-08-25T10:30:00Z"
}
},
// 4. Claude의 인용과 함께한 분석 (활성화된 경우)
{
"text": "Based on the article, ",
"type": "text"
},
{
"text": "the main argument presented is that artificial intelligence will transform healthcare",
"type": "text",
"citations": [
{
"type": "char_location",
"document_index": 0,
"document_title": "Article Title",
"start_char_index": 1234,
"end_char_index": 1456,
"cited_text": "Artificial intelligence is poised to revolutionize healthcare delivery..."
}
]
}
],
"id": "msg_a930390d3a",
"usage": {
"input_tokens": 25039,
"output_tokens": 931,
"server_tool_use": {
"web_fetch_requests": 1
}
},
"stop_reason": "end_turn"
}페치 결과에는 다음이 포함됩니다:
url: 페치된 URLcontent: 페치된 콘텐츠를 포함하는 문서 블록retrieved_at: 콘텐츠가 검색된 시간 타임스탬프웹 페치 도구는 성능을 개선하고 중복 요청을 줄이기 위해 결과를 캐시합니다. 이는 반환된 콘텐츠가 항상 URL에서 사용 가능한 최신 버전이 아닐 수 있음을 의미합니다. 캐시 동작은 자동으로 관리되며 다양한 콘텐츠 유형과 사용 패턴에 최적화하기 위해 시간이 지남에 따라 변경될 수 있습니다.
PDF 문서의 경우 콘텐츠는 base64 인코딩 데이터로 반환됩니다:
{
"type": "web_fetch_tool_result",
"tool_use_id": "srvtoolu_02",
"content": {
"type": "web_fetch_result",
"url": "https://example.com/paper.pdf",
"content": {
"type": "document",
"source": {
"type": "base64",
"media_type": "application/pdf",
"data": "JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmo..."
},
"citations": {"enabled": true}
},
"retrieved_at": "2025-08-25T10:30:02Z"
}
}웹 페치 도구에서 오류가 발생하면 Claude API는 응답 본문에 표현된 오류와 함께 200 (성공) 응답을 반환합니다:
{
"type": "web_fetch_tool_result",
"tool_use_id": "srvtoolu_a93jad",
"content": {
"type": "web_fetch_tool_error",
"error_code": "url_not_accessible"
}
}가능한 오류 코드는 다음과 같습니다:
invalid_input: 잘못된 URL 형식url_too_long: URL이 최대 길이(250자)를 초과함url_not_allowed: 도메인 필터링 규칙 및 모델 제한으로 차단된 URLurl_not_accessible: 콘텐츠 페치 실패 (HTTP 오류)too_many_requests: 속도 제한 초과unsupported_content_type: 지원되지 않는 콘텐츠 유형 (텍스트 및 PDF만)max_uses_exceeded: 최대 웹 페치 도구 사용 횟수 초과unavailable: 내부 오류 발생보안상의 이유로 웹 페치 도구는 이전에 대화 컨텍스트에 나타난 URL만 페치할 수 있습니다. 여기에는 다음이 포함됩니다:
도구는 Claude가 생성하는 임의의 URL이나 컨테이너 기반 서버 도구(코드 실행, Bash 등)의 URL을 페치할 수 없습니다.
웹 페치는 웹 검색과 원활하게 작동하여 포괄적인 정보 수집을 수행합니다:
import anthropic
client = anthropic.Anthropic()
response = client.messages.create(
model="claude-sonnet-4-5",
max_tokens=4096,
messages=[
{
"role": "user",
"content": "Find recent articles about quantum computing and analyze the most relevant one in detail"
}
],
tools=[
{
"type": "web_search_20250305",
"name": "web_search",
"max_uses": 3
},
{
"type": "web_fetch_20250910",
"name": "web_fetch",
"max_uses": 5,
"citations": {"enabled": True}
}
],
extra_headers={
"anthropic-beta": "web-fetch-2025-09-10"
}
)이 워크플로우에서 Claude는:
웹 페치는 프롬프트 캐싱과 함께 작동합니다. 프롬프트 캐싱을 활성화하려면 요청에 cache_control 중단점을 추가하세요. 캐시된 페치 결과는 대화 턴 전체에서 재사용될 수 있습니다.
import anthropic
client = anthropic.Anthropic()
# 웹 페치를 사용한 첫 번째 요청
messages = [
{
"role": "user",
"content": "Analyze this research paper: https://arxiv.org/abs/2024.12345"
}
]
response1 = client.messages.create(
model="claude-sonnet-4-5",
max_tokens=1024,
messages=messages,
tools=[{
"type": "web_fetch_20250910",
"name": "web_fetch"
}],
extra_headers={
"anthropic-beta": "web-fetch-2025-09-10"
}
)
# Claude의 응답을 대화에 추가
messages.append({
"role": "assistant",
"content": response1.content
})
# 캐시 중단점을 사용한 두 번째 요청
messages.append({
"role": "user",
"content": "What methodology does the paper use?",
"cache_control": {"type": "ephemeral"}
})
response2 = client.messages.create(
model="claude-sonnet-4-5",
max_tokens=1024,
messages=messages,
tools=[{
"type": "web_fetch_20250910",
"name": "web_fetch"
}],
extra_headers={
"anthropic-beta": "web-fetch-2025-09-10"
}
)
# 두 번째 응답은 캐시된 페치 결과의 이점을 얻습니다
print(f"Cache read tokens: {response2.usage.get('cache_read_input_tokens', 0)}")스트리밍이 활성화되면 페치 이벤트는 콘텐츠 검색 중 일시 중지와 함께 스트림의 일부입니다:
event: message_start
data: {"type": "message_start", "message": {"id": "msg_abc123", "type": "message"}}
event: content_block_start
data: {"type": "content_block_start", "index": 0, "content_block": {"type": "text", "text": ""}}
// Claude의 페치 결정
event: content_block_start
data: {"type": "content_block_start", "index": 1, "content_block": {"type": "server_tool_use", "id": "srvtoolu_xyz789", "name": "web_fetch"}}
// 페치 URL 스트리밍
event: content_block_delta
data: {"type": "content_block_delta", "index": 1, "delta": {"type": "input_json_delta", "partial_json": "{\"url\":\"https://example.com/article\"}"}}
// 페치 실행 중 일시 중지
// 페치 결과 스트리밍
event: content_block_start
data: {"type": "content_block_start", "index": 2, "content_block": {"type": "web_fetch_tool_result", "tool_use_id": "srvtoolu_xyz789", "content": {"type": "web_fetch_result", "url": "https://example.com/article", "content": {"type": "document", "source": {"type": "text", "media_type": "text/plain", "data": "Article content..."}}}}}
// Claude의 응답 계속...메시지 배치 API에 웹 페치 도구를 포함할 수 있습니다. 메시지 배치 API를 통한 웹 페치 도구 호출은 일반 메시지 API 요청과 동일하게 가격이 책정됩니다.
Web fetch usage has no additional charges beyond standard token costs:
"usage": {
"input_tokens": 25039,
"output_tokens": 931,
"cache_read_input_tokens": 0,
"cache_creation_input_tokens": 0,
"server_tool_use": {
"web_fetch_requests": 1
}
}The web fetch tool is available on the Claude API at no additional cost. You only pay standard token costs for the fetched content that becomes part of your conversation context.
To protect against inadvertently fetching large content that would consume excessive tokens, use the max_content_tokens parameter to set appropriate limits based on your use case and budget considerations.
Example token usage for typical content:
curl https://api.anthropic.com/v1/messages \
--header "x-api-key: $ANTHROPIC_API_KEY" \
--header "anthropic-version: 2023-06-01" \
--header "anthropic-beta: web-fetch-2025-09-10" \
--header "content-type: application/json" \
--data '{
"model": "claude-sonnet-4-5",
"max_tokens": 1024,
"messages": [
{
"role": "user",
"content": "Please analyze the content at https://example.com/article"
}
],
"tools": [{
"type": "web_fetch_20250910",
"name": "web_fetch",
"max_uses": 5
}]
}'