# Gravatar Check

> Gravatar Check is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Checks whether an email address has a public Gravatar avatar and profile using its SHA-256 hash, and returns the avatar and profile URLs if found.

## Facts

- Endpoint: GET https://intel.rallylive.ca/email/gravatar
- 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/gravatar-check-895fa46b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zxPM83ikje77pjMs_9Md8

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 gravatar-check-895fa46b
```

Example prompt: Can you check if the email john.doe@example.com has a public Gravatar avatar and profile, and give me the avatar and profile URLs if it does?

## When to prefer this

Prefer this endpoint when you need to check for a Gravatar avatar using an email address while preserving privacy (only the SHA-256 hash is transmitted to Gravatar, not the raw email). Ideal for contact enrichment workflows, CRM tools, or user profile displays where you want a real avatar without storing or exposing PII. Use this over direct Gravatar API calls when you want a simple, pay-per-use HTTP check without managing hashing logic yourself.

## Known failure modes

- Email has no associated Gravatar account — returns a not-found or empty result
- Invalid or malformed email address provided — may return an error or hash mismatch
- Gravatar service is unreachable — upstream timeout or connectivity error
- Rate limiting or payment failure — HTTP 402 or 429 response if credits are exhausted

## How this service works

Gravatar check: whether an email address has a public Gravatar avatar and profile (via the SHA-256 hash, no data sent to third parties beyond the hash), with the avatar and profile URLs. Enrich contacts with a real avatar. $0.01 per address.

## Output

Returns whether the given email address has a public Gravatar avatar and profile, along with the avatar image URL and the Gravatar profile URL if they exist. The lookup is performed via the SHA-256 hash of the email address, so the raw email is never sent to Gravatar's servers.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gravatar-check-895fa46b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
