AI EngineerGuide

How to use OpenAI models on AWS Bedrock

by Ashik Nesin Ashik Nesin

OpenAI models like GPT-5.4 and GPT-5.5 are available on AWS Bedrock platform

How to use it?

curl --location 'https://bedrock-mantle.us-east-2.api.aws/openai/v1/responses' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer $BEDROCK_API_KEY' \
--data '{
    "model": "openai.gpt-5.4",
    "input": "Write a one-sentence bedtime story about a unicorn."
  }'

Replace BEDROCK_API_KEY with your AWS Bedrock long-term API key.

2026-06-02-at-23.49.37.png

And update us-east-2 with your region but make sure that it is available on that region.

You can read more about it in their docs here: https://docs.aws.amazon.com/bedrock/latest/userguide/model-cards-openai.html

Stay Updated

Get the latest AI engineering insights delivered to your inbox.

No spam. Unsubscribe at any time.