1 Answer
- Newest
- Most votes
- Most comments
0
Claude 3.5+ and 4.x models are priced under a separate service code, AmazonBedrockService, which covers cross-region inference profiles, rather than AmazonBedrock, which only reflects standard regional inference for older models. This is why your current queries return only the legacy Claude models.
You can access the updated pricing data using the following:-
Bulk CSV endpoint:-
$ curl -s "https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonBedrockService/current/eu-central-1/index.csv" | grep -i claude
Price List API:-
$ aws pricing get-products \
--service-code AmazonBedrockService \
--region us-east-1 \
--filters Type=TERM_MATCH,Field=regionCode,Value=eu-central-1 \
--output text > bedrockservice_products.json
Additionally, please note that not all Claude models are fully represented in the Pricing API at this time, and there are ongoing efforts to improve consistency across all Bedrock models and regions. There is no specific timeline to commit, however, we encourage you to monitor the links below for any upcoming announcements [1][2][3][4].
References:-
- AWS What's New - https://aws.amazon.com/new/
- AWS News Blog - https://aws.amazon.com/blogs/aws/
- AWS Discussion Forums - https://forums.aws.amazon.com/
- Amazon Bedrock Pricing - https://aws.amazon.com/bedrock/pricing/
answered 8 days ago
Relevant content
- AWS OFFICIALUpdated a year ago
