check-tavily-credits

Check remaining Tavily API credits across keys in a .env file.

97|2|Updated Jan 1, 2026
One-click install
npx skills add https://github.com/minorun365/my-claude-code-settings --skill check-tavily-credits
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: check-tavily-credits
Source: https://github.com/minorun365/my-claude-code-settings/tree/main/claude/skills/check-tavily-credits
Command: npx skills add https://github.com/minorun365/my-claude-code-settings --skill check-tavily-credits

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Tavily APIキーの残りクレジットを環境変数から複数のキーを横断して把握できるようにします。複数の Tavily API キーを含む env ファイルを対象に、クレジット切れを未然に防ぐためのモニタリングを提供します。

Core Features & Use Cases

  • env ファイルから TAVILY_API_KEY 系キーを抽出
  • 各キーの使用量と上限、残量を Tavily API に照会して集計
  • Use Case: 複数環境での API キー管理や CI/CD パイプラインのクレジット監視

Quick Start

Read your project's env file and generate a report of remaining Tavily API credits.

Frequently Asked Questions about check-tavily-credits

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check remaining Tavily API credits across multiple keys in my project?

To check remaining Tavily API credits, extract TAVILY_API_KEY variables from your .env file, query the Tavily usage API with each key, and compile the results into a tabular report showing usage limits and remaining balances.

Can I monitor Tavily API credit usage in a CI/CD pipeline using environment variables?

Yes, you can monitor Tavily API credit usage in CI workflows by reading the project environment file, extracting all TAVILY_API_KEY entries, and querying the Tavily usage endpoint to prevent credit exhaustion during automated builds.

What is the best way to track Tavily API key usage limits for local development?

The best way to track Tavily API key usage is by scanning your local .env file for TAVILY_API_KEY patterns, sending HTTP requests to the Tavily usage endpoint with each Bearer token, and formatting the returned limits into a readable usage table.

Do I need curl to query the Tavily usage endpoint for API credit balances?

You need an HTTP client like curl to query the Tavily usage endpoint, sending a Bearer token for each API key found in your environment variables to retrieve and compile the remaining credit balances successfully.

Why does my Tavily API key run out of credits unexpectedly during automated testing?

Your Tavily API key runs out of credits unexpectedly when multiple keys are not monitored across environments; extracting TAVILY_API_KEY entries from .env and querying usage limits helps prevent credit exhaustion in CI pipelines.