Overview
Verify that the CoinPaprika API is operational and measure response time. Useful for monitoring, health checks, and debugging connectivity issues.Usage
Options
Output format:
table or jsonJSON output without
_meta wrapper (for scripts/piping)Examples
Basic health check
JSON output for monitoring
Integration with monitoring tools
Check API endpoint from CI/CD
Response Fields
CoinPaprika API status information
Whether an API key is currently configured (doesn’t validate the key)
How It Works
Thestatus command:
- Makes a request to the
/globalendpoint - Measures response time
- Checks if the API key is configured locally
- Returns aggregated status information
The status check uses the
/global endpoint, which is available on both free and paid tiers.API Endpoint
The status command tests:Status Codes
API is operational and responding
API request failed (network issue, API down, or invalid key)
Use Cases
Health Monitoring
Add to monitoring dashboards and alerting systems
Uptime Checks
Schedule periodic health checks via cron
CI/CD Gates
Verify API availability before running tests
Debugging
Troubleshoot connectivity and configuration issues
Exit Codes
- 0 — API is healthy (status OK)
- 1 — API error or unreachable
Performance Benchmarks
Typical response times:- < 200ms — Excellent
- 200-500ms — Good
- 500-1000ms — Acceptable
- > 1000ms — Slow (may indicate network issues)
Related Commands
config
Check API key configuration
key-info
Validate API key and check usage
Notes
- The status check does not consume API credits
- Response time includes network latency
api_key_configuredonly checks if a key is set, not if it’s valid- Use
key-infoto validate your API key - Status check runs against the global endpoint (minimal data transfer)