Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
One change · api

data-residency changed

manage-claude/data-residency

Nearest release: v2.1.280, published under an hour before this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

Recorded here
Lines+9added
Lines−9removed
From line 35 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits4to this page, all time

The whole hunk

from line 35, old and new numbered
/
lines
from line 35
3535 -H "anthropic-version: 2023-06-01" \
3636 -H "content-type: application/json" \
3737 -d '{
38 "model": "claude-opus-5",
38 "model": "claude-opus-5-5",
3939 "max_tokens": 1024,
4040 "inference_geo": "us",
4141 "messages": [{
from line 47
4747 
4848 ```bash CLI
4949 ant messages create \
50 --model claude-opus-5 \
50 --model claude-opus-5-5 \
5151 --max-tokens 1024 \
5252 --inference-geo us \
5353 --message '{role: user, content: "Summarize the key points of this document."}' \
from line 58
5858 client = anthropic.Anthropic()
5959 
6060 response = client.messages.create(
61 model="claude-opus-5",
61 model="claude-opus-5-5",
6262 max_tokens=1024,
6363 inference_geo="us",
6464 messages=[
from line 77
7777 const client = new Anthropic();
7878 
7979 const response = await client.messages.create({
80 model: "claude-opus-5",
80 model: "claude-opus-5-5",
8181 max_tokens: 1024,
8282 inference_geo: "us",
8383 messages: [
from line 102
102102 var response = await client.Messages.Create(
103103 new MessageCreateParams
104104 {
105 Model = Model.ClaudeOpus5,
105 Model = Model.ClaudeOpus5_5,
106106 MaxTokens = 1024,
107107 InferenceGeo = "us",
108108 Messages =
from line 128
128128 client := anthropic.NewClient()
129129 
130130 message, err := client.Messages.New(context.Background(), anthropic.MessageNewParams{
131 Model: anthropic.ModelClaudeOpus5,
131 Model: anthropic.ModelClaudeOpus5_5,
132132 MaxTokens: 1024,
133133 InferenceGeo: anthropic.String("us"),
134134 Messages: []anthropic.MessageParam{
from line 153
153153 
154154 Message response = client.messages().create(
155155 MessageCreateParams.builder()
156 .model(Model.CLAUDE_OPUS_5)
156 .model(Model.CLAUDE_OPUS_5_5)
157157 .maxTokens(1024L)
158158 .inferenceGeo("us")
159159 .addUserMessage("Summarize the key points of this document.")
from line 170
170170 $client = new Client();
171171 
172172 $response = $client->messages->create(
173 model: 'claude-opus-5',
173 model: 'claude-opus-5-5',
174174 maxTokens: 1024,
175175 inferenceGeo: 'us',
176176 messages: [
from line 191
191191 client = Anthropic::Client.new
192192 
193193 response = client.messages.create(
194 model: "claude-opus-5",
194 model: "claude-opus-5-5",
195195 max_tokens: 1024,
196196 inference_geo: "us",
197197 messages: [