# Bytemine Company Enrichment

> Bytemine Company Enrichment is a paid API for AI agents from agents.bytemine.ai, paid per call via MPP or x402, $0.01/call, status healthy (last checked 2026-09-15, last successful call 2026-09-02).

Looks up a company by name, website, LinkedIn URL, or company ID and returns a full company profile including description, employee count, industries, NAICS codes, locations, and funding data.

## Facts

- Endpoint: POST https://agents.bytemine.ai/functions/v1/api-gateway/b2b-enrich
- Price: $0.01/call
- Payment: MPP, x402
- Status: healthy
- Last checked: 2026-09-15
- Last successful call: 2026-09-02
- Success rate: 100% of calls made through Zero
- Activations on Zero: 15
- Provider: agents.bytemine.ai
- Website: https://agents.bytemine.ai
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agents-bytemine-ai-bytemine-company-enrichment-8c13b08a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r6NvLlRCY77S2G3F2gS8Z

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 agents-bytemine-ai-bytemine-company-enrichment-8c13b08a -d '<json body>'
```

Example prompt: Can you pull up the full company profile for Stripe — I need their employee count, industry classifications, founding year, and any funding data you can find?

## When to prefer this

Use this endpoint when you need a full firmographic profile for a single known company and have at least one identifying attribute (name, domain, LinkedIn URL, or company_id). Prefer company_id for fastest lookup. Choose this over the company search endpoint when you already know which company you want and just need to hydrate its profile. Prefer this over web scraping or live intelligence endpoints when structured, indexed data (employee count, NAICS codes, funding) is sufficient and real-time accuracy is not critical.

## Known failure modes

- No match found if the company name or domain is ambiguous or not in the database
- Partial profile returned if some fields are not available for the matched company
- Incorrect match if the company name is common and no disambiguating field is provided
- Rate limiting or payment failure if the account balance is insufficient ($0.01 per call)
- Invalid input if none of the lookup fields (company_name, website, linkedin_url, company_id) are provided

## How this service works

Look up a company by company_name, website, linkedin_url, or company_id. Any one lookup field is sufficient; company_id is the fastest indexed lookup. Returns the best match with the full company profile including description, employee count, industries, NAICS codes, locations, posts, and funding data.

## Output

Returns a matched company object containing the company's name, website, company_id, LinkedIn URL, description, employee count, follower count, founded year, industries (as structured objects), NAICS codes, specialties, office locations, and Crunchbase funding data. Only returns the best single match.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "website": {
   "type": "string",
   "description": "Company website domain, for example stripe.com."
  },
  "company_id": {
   "type": "integer",
   "description": "Exact company_id for the fastest lookup."
  },
  "company_name": {
   "type": "string",
   "description": "Company name to look up."
  },
  "linkedin_url": {
   "type": "string",
   "description": "LinkedIn company page URL."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "company": {
     "type": "object",
     "properties": {
      "name": {
       "type": "string"
      },
      "website": {
       "type": "string"
      },
      "locations": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "company_id": {
       "type": "string"
      },
      "industries": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "description": {
       "type": "string"
      },
      "naics_codes": {
       "type": "array"
      },
      "specialties": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "founded_year": {
       "type": "integer"
      },
      "linkedin_url": {
       "type": "string"
      },
      "employee_count": {
       "type": "integer"
      },
      "follower_count": {
       "type": "integer"
      },
      "crunchbase_funding": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-bytemine-ai-bytemine-company-enrichment-8c13b08a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.bytemine.ai](https://www.zero.xyz/host/agents.bytemine.ai/llms.txt)
