# Friday Seller Tools – Brand Name Screen

> Friday Seller Tools – Brand Name Screen is a paid API for AI agents from friday-seller-tools-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Screens a brand name for marketplace eligibility and conflicts before listing on Amazon, Walmart, Shopify, or eBay.

## Facts

- Endpoint: POST https://friday-seller-tools-production.up.railway.app/v1/brands/name-screen
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/friday-seller-tools-brand-name-screen-18d38f1d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8Wb9MVqibrDXdJfV-DU-f

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 friday-seller-tools-brand-name-screen-18d38f1d -d '<json body>'
```

Example prompt: Can you screen the brand name 'NovaPeak' to make sure it's eligible and conflict-free before I start listing products on Amazon?

## When to prefer this

Use this endpoint when you need to pre-screen a brand name for marketplace policy compliance and conflict detection before creating product listings on Amazon, Walmart, Shopify, or eBay. Prefer this over generic trademark search tools when you specifically need ecommerce-platform eligibility context and want low-cost, instant results as part of an automated seller workflow.

## Known failure modes

- Missing or empty brand name input returns a 400 validation error
- Unsupported marketplace specified returns an error
- Service unavailable or Railway deployment cold-start causes timeout
- Payment failure via x402 protocol blocks the request
- Job queue overload may delay result availability

## How this service works

Instant, low-cost Amazon, Walmart, Shopify, and eBay listing, upload-preparation, advertising, and image-brief deliverables.

## Output

Returns a job ID and a 'queued' status immediately, indicating the brand name screening job has been accepted and is being processed asynchronously. The agent should poll for results using the job ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "known_names": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 80,
    "minLength": 2
   },
   "title": "Known Names",
   "maxItems": 100
  },
  "marketplace": {
   "enum": [
    "amazon_us",
    "walmart_us",
    "shopify",
    "ebay_us"
   ],
   "type": "string",
   "title": "Marketplace",
   "default": "amazon_us"
  },
  "candidate_names": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 80,
    "minLength": 2
   },
   "title": "Candidate Names",
   "maxItems": 20,
   "minItems": 1
  },
  "forbidden_terms": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 80,
    "minLength": 1
   },
   "title": "Forbidden Terms",
   "maxItems": 50
  },
  "product_category": {
   "type": "string",
   "title": "Product Category",
   "maxLength": 150,
   "minLength": 2
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "job_id": "example",
  "status": "queued"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/friday-seller-tools-brand-name-screen-18d38f1d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from friday-seller-tools-production.up.railway.app](https://www.zero.xyz/host/friday-seller-tools-production.up.railway.app/llms.txt)
