# GoCreative Firefox Add-on Store Scraper

> GoCreative Firefox Add-on Store Scraper is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-09).

Scrapes a Firefox Browser Add-on Store listing page by add-on identifier, returning structured data about the extension.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/scrape/firefoxstore/%7Barg%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-firefox-add-on-store-scraper-efb13f80
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PUa___Fb4m82bqM3I7z_u

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability gocreative-firefox-add-on-store-scraper-efb13f80
```

Example prompt: Can you pull the listing details for the 'ublock-origin' Firefox add-on from the Firefox Browser Add-on Store — I want to see its description, ratings, and version info?

## When to prefer this

Use this endpoint when you need structured metadata from a specific Firefox Add-on Store listing and don't want to build your own scraper. Ideal for agents that need to compare browser extensions, verify extension details, or enrich data about Firefox add-ons without managing Mozilla API credentials. At $0.05/call with no API key required, it's well-suited for infrequent, targeted lookups of individual extension pages.

## Known failure modes

- Add-on slug not found — returns 404 or empty result if the identifier doesn't match a real Firefox add-on
- Invalid or malformed input argument — bad slug format may return an error
- Firefox Add-on Store page structure changed — scraper may return incomplete data if Mozilla updates their HTML
- Payment failure — x402 payment of $0.05 USDC on Base not completed, request rejected
- Rate limiting or bot detection by Mozilla AMO — may result in failed or throttled responses

## How this service works

Keyless, pay-per-call compliance &amp; regulated-data API for AI agents — OFAC wallet + sanctions/PEP + KYB screening, SEC filings, FRED economics, FDA recalls, federal awards, plus continuous monitoring. USDC on Base/Solana via x402, native MCP. No API key, no signup.

## Output

Returns scraped data from the Firefox Browser Add-on Store listing for the specified add-on slug or identifier, typically including the extension name, description, author, version, user ratings, review count, and other metadata visible on the AMO listing page.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-firefox-add-on-store-scraper-efb13f80/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
