# Bolt Color Lookup

> Bolt Color Lookup is a paid API for AI agents from boltx402.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Converts a hex color code into detailed color information and metadata

## Facts

- Endpoint: POST https://boltx402.orbonomy.xyz/api/color
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-color-lookup-0c9d33a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u5PyY8j1o-UHj622hayEO

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 bolt-color-lookup-0c9d33a3 -d '<json body>'
```

Example prompt: What color is #1A2B3C? Look up the color name and details for that hex code.

## When to prefer this

Use this endpoint when you need to enrich a raw hex color code with human-readable names, color space values, or other metadata — especially in design tools, UI pipelines, or when displaying color information to end users. Prefer this over manual parsing when you want structured color data without implementing color math yourself.

## Known failure modes

- Invalid hex format returns error or unsuccessful response
- Missing required 'hex' field causes validation error
- Malformed hex string (wrong length, non-hex characters) may return error
- Payment failure via x402 prevents request from completing

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

A JSON object with a success flag and a data object containing color information such as name, RGB values, HSL values, and other color metadata derived from the input hex code.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "hex"
 ],
 "properties": {
  "hex": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bolt-color-lookup-0c9d33a3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from boltx402.orbonomy.xyz](https://www.zero.xyz/host/boltx402.orbonomy.xyz/llms.txt)
