# Karma.Domains Report Lookup

> Karma.Domains Report Lookup is a paid API for AI agents from api.karma.domains, paid per call via x402, $1.5/call, status unknown (last checked 2026-09-15).

Fetch a specific domain intelligence report by ID and type from the Karma.Domains platform

## Facts

- Endpoint: GET https://api.karma.domains/v1/reports/report
- Price: $1.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/karma-domains-report-lookup-66ac2ba3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AvWKvaR7XjvFcDZEDnYS9

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 karma-domains-report-lookup-66ac2ba3
```

Example prompt: Pull up the expired domain report with ID 507f1f77bcf86cd799439011 from Karma.Domains so I can review the domain intelligence data.

## When to prefer this

Use this endpoint when you already have a specific report_id and need to retrieve the full details of a previously generated Karma.Domains domain intelligence report. Prefer this over search/list endpoints when you have the exact report reference and want direct lookup without filtering or pagination overhead.

## Known failure modes

- Invalid or non-existent report_id returns 404 Not Found
- Missing required query parameters (report_type or report_id) returns 400 Bad Request
- Unauthenticated requests return HTTP 402 with PAYMENT-REQUIRED header requiring x402 payment or Bearer token
- Rate limit exceeded returns HTTP 429 with Retry-After header
- Daily row quota exhausted returns quota-related error with X-Quota headers
- Rate-limit storage unavailable returns HTTP 503

## How this service works

Public API for Karma.Domains: programmatic access to domain intelligence — reports across auctions, expired, backorder, and buy-now inventories, SEO and authority metrics, Wayback history, availability checks, and Karma Metric. Use it to search, filter, and automate the same data workflows as the Karma.Domains web app.

**Authentication:** `Authorization: Bearer <api_key>` (Pro subscription or agent credits).
**Agent credits (x402):** HTTP 402 + `PAYMENT-REQUIRED` when unauthenticated; retry same URL with `PAYMENT-SIGNATURE` and optional `X-Karma-Plan-Id`.

**Rate limits:** 60 requests per minute per API key (all endpoints share one counter). Response headers: `X-RateLimit-Limit`, `X-RateLimit-Remaining`, `X-RateLimit-Reset`. On exceed: HTTP 429 with `Retry-After`. If rate-limit storage is unavailable: HTTP 503.

**Row quota:** 50,000 list rows per day per account (UTC reset). List responses include `X-Quota-Limit`, `X-Quota-Remaining`, `X-Quota-Reset`. Pagination: `page_size` 1–100 (Public API); `page × page_size ≤ 5000`.

## Output

Returns a domain intelligence report object identified by the given report_id and report_type, containing data such as domain metrics, SEO authority scores, Wayback history, availability status, auction/expired/backorder/buy-now inventory details, and Karma Metric values for the domains in that report.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "report_type",
      "report_id"
     ],
     "properties": {
      "report_id": {
       "type": "string",
       "example": "507f1f77bcf86cd799439011"
      },
      "report_type": {
       "type": "string",
       "example": "expired"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "report_id": "507f1f77bcf86cd799439011",
  "report_type": "expired"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/karma-domains-report-lookup-66ac2ba3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.karma.domains](https://www.zero.xyz/host/api.karma.domains/llms.txt)
