# Get API Key
Source: https://docs.anthropic.com/en/api/admin-api/apikeys/get-api-key
get /v1/organizations/api_keys/{api_key_id}
# List API Keys
Source: https://docs.anthropic.com/en/api/admin-api/apikeys/list-api-keys
get /v1/organizations/api_keys
# Update API Keys
Source: https://docs.anthropic.com/en/api/admin-api/apikeys/update-api-key
post /v1/organizations/api_keys/{api_key_id}
# Create Invite
Source: https://docs.anthropic.com/en/api/admin-api/invites/create-invite
post /v1/organizations/invites
# Delete Invite
Source: https://docs.anthropic.com/en/api/admin-api/invites/delete-invite
delete /v1/organizations/invites/{invite_id}
# Get Invite
Source: https://docs.anthropic.com/en/api/admin-api/invites/get-invite
get /v1/organizations/invites/{invite_id}
# List Invites
Source: https://docs.anthropic.com/en/api/admin-api/invites/list-invites
get /v1/organizations/invites
# Get User
Source: https://docs.anthropic.com/en/api/admin-api/users/get-user
get /v1/organizations/users/{user_id}
# List Users
Source: https://docs.anthropic.com/en/api/admin-api/users/list-users
get /v1/organizations/users
# Remove User
Source: https://docs.anthropic.com/en/api/admin-api/users/remove-user
delete /v1/organizations/users/{user_id}
# Update User
Source: https://docs.anthropic.com/en/api/admin-api/users/update-user
post /v1/organizations/users/{user_id}
# Get Workspace Member
Source: https://docs.anthropic.com/en/api/admin-api/workspace_members/create-workspace-member
post /v1/organizations/workspaces/{workspace_id}/members
# Delete Workspace Member
Source: https://docs.anthropic.com/en/api/admin-api/workspace_members/delete-workspace-member
delete /v1/organizations/workspaces/{workspace_id}/members/{user_id}
# Get Workspace Member
Source: https://docs.anthropic.com/en/api/admin-api/workspace_members/get-workspace-member
get /v1/organizations/workspaces/{workspace_id}/members/{user_id}
# List Workspace Members
Source: https://docs.anthropic.com/en/api/admin-api/workspace_members/list-workspace-members
get /v1/organizations/workspaces/{workspace_id}/members
# Update Workspace Member
Source: https://docs.anthropic.com/en/api/admin-api/workspace_members/update-workspace-member
post /v1/organizations/workspaces/{workspace_id}/members/{user_id}
# Archive Workspace
Source: https://docs.anthropic.com/en/api/admin-api/workspaces/archive-workspace
post /v1/organizations/workspaces/{workspace_id}/archive
# Create Workspace
Source: https://docs.anthropic.com/en/api/admin-api/workspaces/create-workspace
post /v1/organizations/workspaces
# Get Workspace
Source: https://docs.anthropic.com/en/api/admin-api/workspaces/get-workspace
get /v1/organizations/workspaces/{workspace_id}
# List Workspaces
Source: https://docs.anthropic.com/en/api/admin-api/workspaces/list-workspaces
get /v1/organizations/workspaces
# Update Workspace
Source: https://docs.anthropic.com/en/api/admin-api/workspaces/update-workspace
post /v1/organizations/workspaces/{workspace_id}
# Cancel a Message Batch
Source: https://docs.anthropic.com/en/api/canceling-message-batches
post /v1/messages/batches/{message_batch_id}/cancel
Batches may be canceled any time before processing ends. Once cancellation is initiated, the batch enters a `canceling` state, at which time the system may complete any in-progress, non-interruptible requests before finalizing cancellation.
The number of canceled requests is specified in `request_counts`. To determine which requests were canceled, check the individual results within the batch. Note that cancellation may not result in any canceled requests if they were non-interruptible.
Learn more about the Message Batches API in our [user guide](/en/docs/build-with-claude/batch-processing)
# Amazon Bedrock API
Source: https://docs.anthropic.com/en/api/claude-on-amazon-bedrock
Anthropic’s Claude models are now generally available through Amazon Bedrock.
Calling Claude through Bedrock slightly differs from how you would call Claude when using Anthropic’s client SDK’s. This guide will walk you through the process of completing an API call to Claude on Bedrock in either Python or TypeScript.
Note that this guide assumes you have already signed up for an [AWS account](https://portal.aws.amazon.com/billing/signup) and configured programmatic access.
## Install and configure the AWS CLI
1. [Install a version of the AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html) at or newer than version `2.13.23`
2. Configure your AWS credentials using the AWS configure command (see [Configure the AWS CLI](https://alpha.www.docs.aws.a2z.com/cli/latest/userguide/cli-chap-configure.html)) or find your credentials by navigating to “Command line or programmatic access” within your AWS dashboard and following the directions in the popup modal.
3. Verify that your credentials are working:
```bash Shell
aws sts get-caller-identity
```
## Install an SDK for accessing Bedrock
Anthropic's [client SDKs](/en/api/client-sdks) support Bedrock. You can also use an AWS SDK like `boto3` directly.
Usage Tier | Credit Purchase | Wait After First Purchase | Max Usage per Month |
---|---|---|---|
Tier 1 | \$5 | 0 days | \$100 |
Tier 2 | \$40 | 7 days | \$500 |
Tier 3 | \$200 | 7 days | \$1,000 |
Tier 4 | \$400 | 14 days | \$5,000 |
Monthly Invoicing | N/A | N/A | N/A |
Explore optimized prompts for a breadth of business and personal tasks.
Learn at your own pace
Instructor: John Doe
Course description goes here.
Instructor: Jane Smith
Course description goes here.