# DataVault Color Lookup

> DataVault Color Lookup is a paid API for AI agents from zetavault.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns color metadata and information for a given HEX color code

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/color
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-color-lookup-d14c3eb6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XfswIgECTgs7PkDh1SbUR

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 datavault-color-lookup-d14c3eb6 -d '<json body>'
```

Example prompt: What color is #E91E63? Can you look it up and tell me its name and any other details about it?

## When to prefer this

Use this endpoint when you need to identify or describe a color given its hexadecimal code — for example, to display a human-readable color name in a UI, enrich design data, or help users understand what a specific hex value looks like in plain language.

## Known failure modes

- Invalid or malformed hex code returns error
- Missing required 'hex' field returns validation error
- Hex code not recognized may return empty or null data
- Payment failure results in 402 response before processing

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with success boolean and a data object containing color metadata such as the color name, properties, and other descriptive information associated with the provided 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/datavault-color-lookup-d14c3eb6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
