# CodePulse Brand Logo Lookup

> CodePulse Brand Logo Lookup is a paid API for AI agents from codepulse-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a logo image URL for a given company domain name using Clearbit-style lookup

## Facts

- Endpoint: POST https://codepulse-api.hahavoid0.workers.dev/brand/logo
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/codepulse-brand-logo-lookup-f4e90dae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pf5-RLZwKNRkiYancKsgw

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 codepulse-brand-logo-lookup-f4e90dae -d '<json body>'
```

Example prompt: Can you get me the logo URL for stripe.com?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call logo URL lookup for a known company domain without managing API keys. Prefer this over direct Clearbit integration when you want x402 USDC micropayment billing and no authentication overhead. Best for agent workflows that need to enrich company data with brand visuals on demand.

## Known failure modes

- Unknown or obscure domain may return supported:false with no logo URL
- Low-confidence results may return confidence:'low' with a potentially inaccurate logo
- Malformed domain input may cause a validation error
- The Clearbit backend may occasionally return stale or incorrect logos for rebranded companies

## How this service works

Extracts high-resolution logo links using Clearbit's free logo API.

## Output

Returns a JSON object containing a logo URL (hosted on logo.clearbit.com), a boolean 'supported' field indicating whether the domain is recognized, a confidence level string (e.g. 'high'), a data freshness date, and any warnings or disclaimers.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Domain name of the company (e.g. stripe.com)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "logo": "https://logo.clearbit.com/stripe.com"
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/codepulse-brand-logo-lookup-f4e90dae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from codepulse-api.hahavoid0.workers.dev](https://www.zero.xyz/host/codepulse-api.hahavoid0.workers.dev/llms.txt)
