provider

AWS Bedrock

Direct answerAWS-managed platform for foundation models from multiple providers, with unified inference, model discovery, and cloud integrations.

Updated · Reviewed

Separate the hosting platform from model providers

Amazon Bedrock is AWS's managed multi-provider foundation-model platform, not a model originator. One AWS service can expose models from Amazon, Anthropic, Meta, Mistral, and others; verify the author, license, region, capability, and price for the exact modelId. This site's /v1/chat/completions is an adapted gateway route, not a Bedrock-native URL, and represents only the models enabled by the current channel.

Direct access has two authentication choices

The traditional path uses IAM credentials and AWS Signature Version 4 (SigV4) request signing. Bedrock also supports API keys: a short-term key inherits IAM permissions and region and lasts no more than 12 hours, subject to the current IAM session duration. AWS prefers short-term credentials for production; long-term keys are better limited to initial exploration, with production moved to short-lived credentials, least privilege, rotation, and secret management. A Bedrock API-key Bearer value, AWS IAM credentials, and this site's API key are not interchangeable.

Model access can involve subscription and an EULA

Having API permissions does not guarantee that every third-party model is immediately callable. A first invocation can initiate an AWS Marketplace subscription and signifies acceptance of the applicable end-user license agreement; selected providers also require first-use information. For AccessDeniedException, check IAM, Marketplace permissions, region, model-access conditions, and provider requirements instead of merely rotating the key.

Choose Converse, InvokeModel, or asynchronous jobs

Converse/ConverseStream provides a more uniform message shape across models and is useful for chat or reduced migration work, but does not make tool or content support identical. InvokeModel/InvokeModelWithResponseStream uses the model-native payload for synchronous or streaming inference and provider-specific parameters. Asynchronous capabilities such as video use StartAsyncInvoke to create a job followed by result retrieval; do not wait for them with a synchronous response parser.

modelId is not always a base-model name

The request can identify a base-model ID or ARN, an inference profile, provisioned throughput, or another deployed model resource. Confirm region and inference mode before copying an example, and persist the effective resource identifier, request ID, latency, and usage. Run regression tests when aliases or versions move.

Limits, cost, and security

For 401/403, check credentials, IAM, and model access; for 404, check region and resource identifier; for 429, lower concurrency according to AWS guidance; retry only transient 5xx failures with bounded exponential backoff and jitter. Configure service quotas, budget alerts, CloudTrail/CloudWatch, input and output limits, and sensitive-data controls. Guardrails are an additional control, not a replacement for application authorization, audit, or content safety.

Reviewed provider catalog

Latest models by capability

These are provider-catalog models, not a promise of availability on this site. Confirm callable IDs, endpoints, and pricing in the model marketplace.

Text, reasoning, and code

  • amazon.nova-2-lite-v1:0 Stable

    An Amazon Nova 2 low-latency multimodal text model hosted by Bedrock.

    Origin: Amazon Release date not stated in the cited official source

Image generation and editing

  • amazon.nova-canvas-v1:0 Legacy

    Amazon's native image model on Bedrock; some regions mark it Legacy with support ending on 2026-09-30.

    Origin: Amazon

Video generation and editing

  • amazon.nova-reel-v1:0 Legacy

    Amazon's native video model on Bedrock; some regions mark it Legacy with support ending on 2026-09-30.

    Origin: Amazon

Speech and audio

  • amazon.nova-2-sonic-v1:0 Stable

    An Amazon Nova 2 realtime spoken-conversation model hosted by Bedrock.

    Origin: Amazon Release date not stated in the cited official source

Embeddings, retrieval, and reranking

  • amazon.nova-2-multimodal-embeddings-v1:0 Stable

    An Amazon multimodal embedding model on Bedrock for text, image, video, and audio.

    Origin: Amazon Release date not stated in the cited official source
Check live availability in the model marketplace

Use cases

  • Multi-provider model catalog
  • Unified managed inference
  • AWS security and service integrations

API protocols

  • /v1/chat/completions

FAQ

Does Amazon Bedrock require IAM and SigV4 only?

No. Direct access supports IAM credentials with SigV4 and Bedrock API keys. A short-term key lasts at most 12 hours, inherits IAM permissions and region, and is preferred for production.

How do I choose Converse, InvokeModel, or StartAsyncInvoke?

Use the uniform Converse shape for cross-model chat, InvokeModel for model-native fields, and StartAsyncInvoke for asynchronous capabilities such as video followed by result retrieval.

Why can a model fail even when I have Bedrock API permission?

Also check region, model-access conditions, AWS Marketplace subscription, and the EULA. First use of selected third-party models can initiate subscription, and some providers request first-use information.

Is a Bedrock modelId always a base-model name?

No. It can also be an ARN, inference profile, provisioned-throughput resource, or another deployment identifier. Use the exact value for the selected region and inference mode.

Official sources

  1. Amazon Bedrock Supported Models Official
  2. Amazon Bedrock ListFoundationModels API Official
  3. Amazon Bedrock API Keys Official
  4. Amazon Bedrock Model Access Official
  5. Amazon Bedrock APIs Official
  6. Amazon Bedrock Inference API Official