# CollectablesPulse Grading Service Guide

> CollectablesPulse Grading Service Guide is a paid API for AI agents from collectablespulse.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns which grading service to use (PSA, BGS, CGC, PCGS, NGC), estimated cost, turnaround time, and whether an item is worth grading for a given collectible.

## Facts

- Endpoint: GET https://collectablespulse.vercel.app/api/collect/grade
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/collectablespulse-grading-service-guide-d814782c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vfUFI08e-yc341xhrVKSW

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 collectablespulse-grading-service-guide-d814782c
```

Example prompt: I have a 1986 Fleer Michael Jordan rookie basketball card in what looks like near-mint condition — should I get it graded, and if so, which service should I use, how much will it cost, and how long will it take?

## When to prefer this

Use this endpoint when a collector or investor agent needs to decide whether to submit an item for third-party grading and which of the major grading companies (PSA, BGS, CGC, PCGS, NGC) is most appropriate. Prefer this over generic web search when you need structured, actionable grading guidance with cost and turnaround data in a single call.

## Known failure modes

- Unrecognized or insufficiently described item type returns generic or null recommendations
- Very obscure collectibles may not have grading service coverage
- Grading costs and turnaround times may be outdated if services change pricing
- Missing item condition input may result in incomplete worth-grading assessment

## How this service works

Card grading guide: is this card/coin/comic worth grading, and which service? Returns which grading service to use (PSA, BGS, CGC, PCGS, NGC), cost, turnaround time, and whether grading adds value for any collectible. Worldwide. For collector and investor agents.

## Output

Returns a recommendation on which grading service (PSA, BGS, CGC, PCGS, NGC) is best suited for the item, an estimated cost for grading, expected turnaround time, and a verdict on whether grading the item is financially worthwhile given its type and condition.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "item"
 ],
 "properties": {
  "item": {
   "type": "string",
   "description": "item"
  },
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "service": {
   "type": "string",
   "description": "Preferred service (PSA|BGS|CGC|PCGS|NGC|etc)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/collectablespulse-grading-service-guide-d814782c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from collectablespulse.vercel.app](https://www.zero.xyz/host/collectablespulse.vercel.app/llms.txt)
