serpapi-debug-bundle

Featured

Collect SerpApi debug diagnostics: account status, recent searches, and error logs. Use when troubleshooting SerpApi issues, checking credit usage, or preparing support tickets. Trigger: "serpapi debug", "serpapi diagnostic", "serpapi support".

AI & Automation 2,274 stars 319 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# SerpApi Debug Bundle ## Overview Collect diagnostic data for SerpApi issues using the Account API and Searches Archive API. SerpApi stores all search results for retrieval without additional credit charges. ## Instructions ### Step 1: Collect Diagnostics ```bash #!/bin/bash BUNDLE="serpapi-debug-$(date +%Y%m%d-%H%M%S)" mkdir -p "$BUNDLE" KEY="${SERPAPI_API_KEY:?Set SERPAPI_API_KEY}" # Account status curl -s "https://serpapi.com/account.json?api_key=$KEY" \ | jq '{plan: .plan_name, used: .this_month_usage, remaining: .plan_searches_left, rate_limit: .searches_per_month}' \ > "$BUNDLE/account.json" # Recent searches (last 10) curl -s "https://serpapi.com/searches.json?api_key=$KEY" \ | jq '.[0:10] | .[] | {id: .id, status: .status, engine: .search_parameters.engine, query: .search_parameters.q, created: .created_at}' \ > "$BUNDLE/recent-searches.json" # Test search curl -s "https://serpapi.com/search.json?q=test&engine=google&num=1&api_key=$KEY" \ | jq '.search_metadata' > "$BUNDLE/test-search.json" # Environment echo "Node: $(node --version 2>/dev/null || echo N/A)" > "$BUNDLE/env.txt" echo "Python: $(python3 --version 2>/dev/null || echo N/A)" >> "$BUNDLE/env.txt" pip show serpapi 2>/dev/null >> "$BUNDLE/env.txt" || true npm list serpapi 2>/dev/null >> "$BUNDLE/env.txt" || true tar -czf "$BUNDLE.tar.gz" "$BUNDLE" echo "Bundle: $BUNDLE.tar.gz" ``` ### Step 2: Retrieve Failed Search Details ```python # Use the Searches Archive API to get details of any p...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

elevenlabs-debug-bundle

Collect ElevenLabs debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for ElevenLabs problems. Trigger: "elevenlabs debug", "elevenlabs support bundle", "collect elevenlabs logs", "elevenlabs diagnostic", "elevenlabs support ticket".

2,274 Updated today
jeremylongshore
AI & Automation Featured

salesloft-debug-bundle

Collect SalesLoft debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic info for SalesLoft API problems. Trigger: "salesloft debug", "salesloft diagnostic", "salesloft support bundle".

2,274 Updated today
jeremylongshore
AI & Automation Featured

serpapi-common-errors

Diagnose and fix SerpApi errors: invalid keys, exhausted credits, blocked searches. Use when SerpApi returns errors, empty results, or unexpected status codes. Trigger: "serpapi error", "fix serpapi", "serpapi not working", "serpapi empty results".

2,274 Updated today
jeremylongshore
AI & Automation Featured

hubspot-debug-bundle

Collect HubSpot debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for HubSpot API problems. Trigger with phrases like "hubspot debug", "hubspot support bundle", "collect hubspot logs", "hubspot diagnostic", "hubspot correlation id".

2,274 Updated today
jeremylongshore
AI & Automation Solid

clari-debug-bundle

Collect Clari API diagnostic info for support cases. Use when preparing a support ticket, collecting API response samples, or documenting integration issues. Trigger with phrases like "clari debug", "clari support bundle", "collect clari diagnostics", "clari troubleshoot".

2,274 Updated today
jeremylongshore