🌐
GitHub
github.com › anthropics › anthropic-sdk-python
GitHub - anthropics/anthropic-sdk-python
AnthropicBedrock( aws_profile='...', aws_region='us-east' aws_secret_key='...', aws_access_key='...', aws_session_token='...', ) For a more fully fledged example see examples/bedrock.py. This library also provides support for the Anthropic Vertex API if you install this library with the vertex extra, e.g.
Starred by 2.5K users
Forked by 410 users
Languages   Python
🌐
GitHub
github.com › karthink › gptel › discussions › 275
Retrieve the Anthropics API key using 'auth-source'. · karthink/gptel · Discussion #275
Maybe you want to include it into your library?! (defun get-anthropic-key () "Retrieve the Anthropics API key using 'auth-source'." (require 'auth-source) (let* ((auth-source-creation-prompts '((secret .
Author   karthink
🌐
Claude
docs.claude.com › en › api › admin-api › apikeys › get-api-key
Get API Key - Claude Docs
{ "created_at": "2024-10-30T23:58:27.427722Z", "created_by": { "id": "user_01WCz1FkmYMm4gnmykNKUu3Q", "type": "user" }, "id": "apikey_01Rj2N8SVvo6BePZj99NhmiT", "name": "Developer Key", "partial_key_hint": "sk-ant-api03-R2D...igAA", "status": "active", "type": "api_key", "workspace_id": "wrkspc_01JwQvzr7rXLA5AGx3HKfFUJ" } ... curl "https://api.anthropic.com/v1/organizations/api_keys/apikey_01Rj2N8SVvo6BePZj99NhmiT" \ --header "anthropic-version: 2023-06-01" \ --header "content-type: application/json" \ --header "x-api-key: $ANTHROPIC_ADMIN_KEY"
🌐
GitHub
github.com › timshim › anthropic
GitHub - timshim/anthropic: An unofficial wrapper for Anthropic API
# config/config.exs import Config config :anthropic, api_key: System.get_env("ANTHROPIC_API_KEY")
Author   timshim
🌐
GitHub
github.com › Alle-AI › anthropic-api-php
GitHub - Alle-AI/anthropic-api-php: A PHP library for interacting with Anthropic's API.
Integrating Anthropic's Claude ... autoloader $api_key = 'your-anthropic-api-key'; $anthropic_version = "2023-06-01"; $anthropic_api = new Alle_AI\Anthropic\AnthropicAPI($api_key, $anthropic_version); $prompt = "How many ...
Starred by 26 users
Forked by 4 users
Languages   PHP
🌐
GitHub
github.com › mikerhodesideas › free › blob › main › test-anthropic-apikey
free/test-anthropic-apikey at main · mikerhodesideas/free
// Enter your Anthropic API Key ... to ask a simple question to test the connection · const PROMPT = 'Describe the view from the top of the tallest mountain in the world?'; ·...
Author   mikerhodesideas
🌐
Claude
docs.claude.com › en › docs › claude-code › github-actions
Claude Code GitHub Actions - Anthropic
- uses: anthropics/claude-code-action@v1 with: prompt: "Review this PR for security issues" anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} claude_args: | --system-prompt "Follow our coding standards" --max-turns 10 --model claude-sonnet-4-5-20250929 · The action now automatically detects whether to run in interactive mode (responds to @claude mentions) or automation mode (runs immediately with a prompt) based on your configuration. Claude Code GitHub Actions can help you with a variety of tasks. The examples directory contains ready-to-use workflows for different scenarios.
🌐
GitHub
github.com › alexrudall › ruby-anthropic
GitHub - alexrudall/ruby-anthropic: Anthropic (Claude) API + Ruby! 🤖🌌
client = Anthropic::Client.new( access_token: "access_token_goes_here", log_errors: true # Highly recommended in development, so you can see what errors Anthropic is returning. Not recommended in production because it could leak private data ...
Starred by 227 users
Forked by 46 users
Languages   Ruby 99.7% | Shell 0.3%
🌐
GitHub
github.com › topics › anthropic-api
anthropic-api · GitHub Topics · GitHub
javascript thunderbird gemini thunderbird-extension thunderbird-addon gemini-api thunderbird-addons openai-api chatgpt chatgpt-app anthropic ollama ollama-client ollama-app ollama-api gemini-ai openai-compatible-api anthropic-api ... is a local reverse proxy providing unified access to multiple AI providers (Claude, Codex) through a single interface, using your existing subscriptions without API key billing.
Find elsewhere
🌐
GitHub
github.com › anthropics › claude-quickstarts
GitHub - anthropics/claude-quickstarts: A collection of projects designed to help developers quickly get started with building deployable applications using the Claude API
To use these quickstarts, you'll need an Claude API key. If you don't have one yet, you can sign up for free at console.anthropic.com.
Starred by 12.8K users
Forked by 2.1K users
Languages   Python 56.1% | TypeScript 26.2% | Jupyter Notebook 7.2% | JavaScript 6.3% | Shell 1.5% | HTML 1.1%
🌐
GitHub
github.com › anthropics › anthropic-sdk-typescript
GitHub - anthropics/anthropic-sdk-typescript: Access to Anthropic's safety-first language model APIs in TypeScript
If you want to use a different ... globalThis.fetch = fetch; ... import Anthropic from '@anthropic-ai/sdk'; import fetch from 'my-fetch'; const client = new Anthropic({ fetch });...
Starred by 1.4K users
Forked by 181 users
Languages   TypeScript 96.8% | Shell 2.1% | JavaScript 1.1%
🌐
GitHub
github.com › anthropics › claude-code-base-action
GitHub - anthropics/claude-code-base-action: This repo is a mirror of the contents of base-action in https://github.com/anthropics/claude-code-action.
The claude_env input accepts YAML multiline format with key-value pairs: - name: Deploy with custom environment uses: anthropics/claude-code-base-action@beta with: prompt: "Deploy the application to the staging environment" claude_env: | ENVIRONMENT: staging API_BASE_URL: https://api-staging.example.com DATABASE_URL: ${{ secrets.STAGING_DB_URL }} DEBUG: true LOG_LEVEL: debug allowed_tools: "Bash(git:*),View,GlobTool,GrepTool,BatchTool" anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
Starred by 537 users
Forked by 597 users
Languages   TypeScript 97.8% | Shell 2.2%
🌐
GitHub
github.com › anthropics › claude-code › issues › 1511
[BUG] ANTHROPIC_API_KEY in env does not properly override · Issue #1511 · anthropics/claude-code
June 2, 2025 - The only issue is that, although it says "overrides", the API key is not one in the environment, it's still the one from `/login1, so though it says it's overriding, it's not. ... Run claude. Observe that the override message is showing a different key than the one set in the ANTHROPIC_API_KEY environment variable
Published   Jun 02, 2025
🌐
GitHub
github.com › anthropics › anthropic-tools
GitHub - anthropics/anthropic-tools
# MacOS export ANTHROPIC_API_KEY={your_anthropic_api_key}
Starred by 333 users
Forked by 39 users
Languages   Python
🌐
GitHub
github.com › anthropics › claude-code › issues › 1084
Employer provided me with an Anthropic API key to use Claude Code but there's no way to configure this key · Issue #1084 · anthropics/claude-code
May 13, 2025 - Employer provided me with an Anthropic API key to use Claude Code but there's no way to configure this key#1084
Published   May 13, 2025
🌐
GitHub
github.com › tghamm › Anthropic.SDK
GitHub - tghamm/Anthropic.SDK: An unofficial C#/.NET SDK for accessing the Anthropic Claude API. This package is not affiliated with, endorsed by, or sponsored by Anthropic. Anthropic and Claude are trademarks of Anthropic, PBC.
Note: This package is not affiliated with, endorsed by, or sponsored by Anthropic. Anthropic and Claude are trademarks of Anthropic, PBC. ... You can load the API Key from an environment variable named ANTHROPIC_API_KEY by default.
Starred by 206 users
Forked by 38 users
Languages   C#
🌐
GitHub
github.com › kirodotdev › Kiro › issues › 695
Anthropic API Key (Bring Your Own API KEY) · Issue #695 · kirodotdev/Kiro
July 17, 2025 - Feature Description Allow a user to provide their own API key to reduce rate limits. Use Case Allow a user to provide their own API key to reduce rate limits. Additional Context I am receiving rate limits, many of us have anthropic api k...
Published   Jul 17, 2025