Branding
Extract a site's brand identity in one call: color palette, typography, logo, favicon, OG image, button styles, and spacing tokens. Perfect for clone tools, design audits, and competitor research.
POST
/api/v1/brandingRequest body
| Field | Type | Description |
|---|---|---|
| urlrequired | string | Absolute URL of the page to analyze. |
| waitFor | number | Milliseconds to wait after load before extraction. |
Example
bash
curl https://neuroapi.me/api/v1/branding \ -H "Authorization: Bearer $NEUROAPI_KEY" \ -H "Content-Type: application/json" \ -d '{ "url": "https://stripe.com" }'Response shape
json
{ "success": true, "data": { "branding": { "colorScheme": "light", "logo": "https://example.com/logo.svg", "colors": { "primary": "#635BFF", "secondary": "#0A2540", "accent": "#00D924", "background": "#FFFFFF", "textPrimary": "#0A2540" }, "fonts": [{ "family": "Inter" }], "typography": { "fontFamilies": { "primary": "Inter" } }, "spacing": { "baseUnit": 8, "borderRadius": "8px" }, "components": { "buttonPrimary": { "background": "#635BFF" } }, "images": { "favicon": "...", "ogImage": "..." } } }, "creditsCharged": 1}Cost: 1 credit.