# Karma.Domains Reports by Domain

> Karma.Domains Reports by Domain 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-14).

Fetches domain intelligence reports (auctions, expired, backorder, buy-now, SEO metrics, Wayback history, Karma Metric) for a specific domain name

## Facts

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

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-reports-by-domain-15e013f7
```

Example prompt: Pull the full Karma.Domains intelligence report for techstartup.io — I want to see its auction and buy-now listings, SEO authority metrics, Wayback history, and Karma Metric score.

## When to prefer this

Use this endpoint when you need comprehensive domain intelligence for a specific known domain — including market listings (auctions, expired, backorder, buy-now), SEO signals, authority metrics, historical Wayback data, and the Karma Metric score. Prefer this over search/filter endpoints when you already know the exact domain name and want a full multi-dimensional report on it.

## Known failure modes

- Missing required 'domain' query parameter returns 400 Bad Request
- Invalid or malformed domain string may return empty matches array
- HTTP 402 Payment Required when no valid API key or agent credits provided — retry with PAYMENT-SIGNATURE header
- HTTP 429 Too Many Requests when 60 req/min rate limit exceeded — check Retry-After header
- HTTP 503 when rate-limit storage is unavailable
- Daily row quota of 50,000 exhausted returns quota error with X-Quota-Reset header

## 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

A JSON object containing domain intelligence for the queried domain, including matches across auction, expired, backorder, and buy-now inventories, SEO and authority metrics, Wayback Machine history, availability status, and the proprietary Karma Metric score.

## 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": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "example": "example.com"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "domain": "example.com",
  "matches": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/karma-domains-reports-by-domain-15e013f7/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)
