# Karma.Domains Favorites Reports List

> Karma.Domains Favorites Reports List 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).

Retrieves a paginated list of domain intelligence reports saved as favorites in the user's Karma.Domains account

## Facts

- Endpoint: GET https://api.karma.domains/v1/reports/favorites
- 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-favorites-reports-list-27c39720
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fWxOLTzqmVT4tc_BzXaIc

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-favorites-reports-list-27c39720
```

Example prompt: Show me my saved favorite domain reports on Karma.Domains — get the first 25, sorted by most recently added.

## When to prefer this

Use this endpoint when you need to retrieve a user's personally curated list of saved/bookmarked domain reports from Karma.Domains — ideal for building watchlists, reviewing previously starred domains, or resuming domain research sessions. Prefer over search endpoints when the user wants to revisit already-identified domains rather than discover new ones.

## Known failure modes

- HTTP 401 if Bearer token is missing or invalid
- HTTP 402 if unauthenticated and agent credits not supplied via PAYMENT-SIGNATURE header
- HTTP 429 if 60 requests/minute rate limit exceeded — Retry-After header indicates wait time
- HTTP 503 if rate-limit storage backend is unavailable
- HTTP 400 if page or page_size parameters are out of allowed range (page < 1, page_size < 1 or > 100)
- Empty results list if account has no favorited reports
- Daily row quota exhaustion returning 0 remaining rows in X-Quota-Remaining

## 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 paginated list of the authenticated user's favorited domain intelligence reports, including domain names, associated metrics (SEO, authority, Karma Metric), and inventory type (auction, expired, backorder, buy-now), along with quota and rate-limit headers indicating remaining daily row allowance.

## 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",
     "properties": {
      "page": {
       "type": "integer",
       "minimum": 1
      },
      "sort_by": {
       "type": "string"
      },
      "page_size": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      },
      "sort_desc": {
       "type": "boolean"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "ok",
  "message": "Report added to favorites"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/karma-domains-favorites-reports-list-27c39720/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)
