Item logo image for API Inspector - XHR & Fetch Debugger

API Inspector - XHR & Fetch Debugger

cloudgeeks.com.au
ExtensionDeveloper Tools
Item media 5 (screenshot) for API Inspector - XHR & Fetch Debugger
Item media 1 (screenshot) for API Inspector - XHR & Fetch Debugger
Item media 2 (screenshot) for API Inspector - XHR & Fetch Debugger
Item media 3 (screenshot) for API Inspector - XHR & Fetch Debugger
Item media 4 (screenshot) for API Inspector - XHR & Fetch Debugger
Item media 5 (screenshot) for API Inspector - XHR & Fetch Debugger
Item media 1 (screenshot) for API Inspector - XHR & Fetch Debugger
Item media 1 (screenshot) for API Inspector - XHR & Fetch Debugger
Item media 2 (screenshot) for API Inspector - XHR & Fetch Debugger
Item media 3 (screenshot) for API Inspector - XHR & Fetch Debugger
Item media 4 (screenshot) for API Inspector - XHR & Fetch Debugger
Item media 5 (screenshot) for API Inspector - XHR & Fetch Debugger

Overview

Intercept & inspect XHR/fetch calls β€” headers, payloads, timing, CORS & auth errors. Essential for dev & QA. By Cloud Geeks.

πŸ”¬ **A Cleaner API Inspector, Right Inside Chrome DevTools** API Inspector adds a dedicated panel to Chrome DevTools for intercepting, viewing, and analyzing XHR and fetch network requests. Filter by URL, method, or status. Inspect full request and response payloads. Export traffic logs. All in a focused, purpose-built interface β€” no Network tab clutter. If you work with APIs, you need API Inspector. ━━━━━━━━━━━━━━━━━━━━━━ ✨ **KEY FEATURES** πŸ“‘ **Real-Time Request Interception** β€’ Captures every XHR and fetch() call made by the page β€’ Updates in real time as requests fire β€’ Displays request method, URL, status code, and timing β€’ Colour-coded by HTTP method (GET, POST, PUT, DELETE, PATCH) β€’ Status indicators: 2xx green, 3xx blue, 4xx orange, 5xx red πŸ” **Request Detail View** β€’ Full URL with query parameters parsed and formatted β€’ Request headers β€” every header, readable and searchable β€’ Request body β€” JSON, FormData, and plain text, pretty-printed β€’ Response headers β€” full header set β€’ Response body β€” JSON auto-formatted, syntax-highlighted β€’ Response timing: DNS, connect, TTFB, total 🎯 **Powerful Filtering** β€’ Filter by URL pattern (substring or regex) β€’ Filter by HTTP method (GET, POST, PUT, DELETE, etc.) β€’ Filter by status code or status range (4xx, 5xx) β€’ Filter by response content type (application/json, etc.) β€’ Clear filters instantly to return to full traffic view β€’ Save filter presets for frequently used views πŸ’Ύ **Export & Sharing** β€’ Export selected requests as HAR (HTTP Archive) format β€’ Export as JSON for custom processing β€’ Copy individual request/response to clipboard β€’ Export filtered view only β€” not the entire traffic log β€’ One-click copy of any URL, header, or body value πŸ”Ž **Search Across Traffic** β€’ Full-text search across URLs, headers, and response bodies β€’ Find the request that contains a specific value or key β€’ Highlight matching terms in results β€’ Search history for quick re-runs ━━━━━━━━━━━━━━━━━━━━━━ πŸš€ **HOW IT WORKS** API Inspector lives inside Chrome DevTools β€” not in a popup or sidebar. 1. **Open Chrome DevTools** (F12 or right-click β†’ Inspect) 2. **Click the "API Inspector" tab** in the DevTools panel 3. **Reload the page** or interact with the app to trigger requests 4. **Watch requests appear** in real time with full details 5. **Click any request** to inspect headers and body 6. **Filter, search, and export** as needed ━━━━━━━━━━━━━━━━━━━━━━ πŸ’‘ **USE CASES** **For Frontend Developers:** β€’ Debug API calls without hunting through the Network tab β€’ Verify request payloads are being sent correctly β€’ Check authentication headers are present on every request β€’ Inspect paginated API calls and compare responses β€’ Understand what a third-party script is sending in the background **For Backend Developers Debugging APIs:** β€’ See exactly what the frontend is sending before it hits your server β€’ Verify JSON request bodies are structured correctly β€’ Debug CORS issues by inspecting preflight OPTIONS requests β€’ Compare expected vs. actual request format during integration work **For QA Engineers:** β€’ Capture API traffic during manual test runs β€’ Verify correct API calls fire when UI actions occur β€’ Export HAR files for bug reports and test documentation β€’ Check error responses return the correct status codes and bodies **For Developers Learning How Sites Work:** β€’ Inspect what APIs power a web app β€’ Learn real-world API patterns from production applications β€’ Understand authentication flows (tokens, cookies, OAuth) β€’ See how modern SPAs fetch and update data ━━━━━━━━━━━━━━━━━━━━━━ πŸ› οΈ **COMPARED TO THE NETWORK TAB** The Chrome DevTools Network tab is powerful but general-purpose. API Inspector focuses exclusively on XHR and fetch: | Feature | Network Tab | API Inspector | |---|---|---| | XHR/fetch focus | Mixed with all resources | Dedicated view | | JSON pretty-print | Manual | Automatic | | Filter presets | No | Yes | | Regex URL filtering | No | Yes | | Body search | No | Yes | | Export (HAR/JSON) | HAR only | HAR + JSON | ━━━━━━━━━━━━━━━━━━━━━━ πŸ† **WHY CHOOSE API INSPECTOR?** βœ… **DevTools Native** - Integrated panel, not a floating popup βœ… **API-Focused** - Built for XHR/fetch, not general network traffic βœ… **JSON Auto-Format** - Every JSON body pretty-printed automatically βœ… **Regex Filtering** - Power-user filtering without extra tools βœ… **Body Search** - Find any value across all captured requests βœ… **HAR Export** - Industry-standard format for sharing and analysis βœ… **No Page Modification** - Passive capture only, never alters requests βœ… **Works on Any Site** - SPAs, server-rendered, or hybrid apps ━━━━━━━━━━━━━━━━━━━━━━ πŸ”¬ **TECHNICAL NOTES** API Inspector uses Chrome's `devtools_page` API to integrate directly into DevTools. It intercepts network events through the DevTools protocol, which provides access to full request and response data including bodies β€” something the standard `webRequest` API alone cannot do. This approach means API Inspector is a DevTools extension and opens only inside DevTools, not as a browser action popup. ━━━━━━━━━━━━━━━━━━━━━━ ⭐ **WHAT USERS SAY** *"The Network tab is great for everything. API Inspector is perfect for APIs. I switch between them constantly."* - Tom A., Frontend Developer *"Being able to search response bodies is something DevTools can't do natively. This alone makes it worth installing."* - Keiko M., Full Stack Developer *"I use this for QA. Export the HAR, attach to the bug ticket, done. Saves so much time reproducing issues."* - Ben S., QA Engineer ━━━━━━━━━━━━━━━━━━━━━━ πŸ” **PRIVACY & SECURITY** β€’ βœ… **No Data Collection** β€” Captured request/response data stays in your browser session β€’ βœ… **DevTools Only** β€” The panel is only accessible when DevTools is open β€’ βœ… **No External Calls** β€” API Inspector does not transmit captured traffic anywhere β€’ βœ… **Session-Scoped** β€” Captured traffic is cleared when DevTools is closed β€’ βœ… **Developer-First** β€” Built for people who understand what they're inspecting ━━━━━━━━━━━━━━━━━━━━━━ πŸ†˜ **SUPPORT** Feature requests, bug reports, or questions? β€’ πŸ“§ Email: support@cchk.info β€’ 🌐 Website: https://extensions.cchk.info/api-inspector β€’ πŸ”’ Privacy Policy: https://extensions.cchk.info/api-inspector/privacy ━━━━━━━━━━━━━━━━━━━━━━ πŸš€ **GET STARTED** Click "Add to Chrome," open DevTools on any web app, and click the API Inspector tab. Perfect for frontend developers, backend developers, QA engineers, and anyone who needs to understand what a web application is doing at the API level. ━━━━━━━━━━━━━━━━━━━━━━ **Made with ❀️ by Cloud Geeks** For developers who want to see everything. ━━━━━━━━━━━━━━━━━━━━━━ 🏒 **Built by Cloud Geeks** β€” a division of **Ganda Tech Services** IT Support & Cloud Solutions for Sydney businesses and beyond. 🌐 Visit us: https://cloudgeeks.com.au | https://g-t-s.com.au

Details

  • Version
    1.0.7
  • Updated
    May 5, 2026
  • Size
    26.07KiB
  • Languages
    English
  • Developer
    Ashish Ganda
    18 Patel St Rouse Hill, NSW 2155 AU
    Website
    Email
    ash@eawesome.com.au
    Phone
    +61 433 309 677
  • Trader
    This developer has identified itself as a trader per the definition from the European Union and committed to only offer products or services that comply with EU laws.

Privacy

Manage extensions and learn how they're being used in your organization
The developer has disclosed that it will not collect or use your data. To learn more, see the developer’s privacy policy.

This developer declares that your data is

  • Not being sold to third parties, outside of the approved use cases
  • Not being used or transferred for purposes that are unrelated to the item's core functionality
  • Not being used or transferred to determine creditworthiness or for lending purposes

Support

For help with questions, suggestions, or problems, visit the developer's support site

Google apps