# MDataAccess Company Enrichment

> MDataAccess Company Enrichment is a paid API for AI agents from api.mdataaccess.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Enrich a company profile by looking up firmographic data using a company name or website domain.

## Facts

- Endpoint: GET https://api.mdataaccess.com/company
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mdataaccess-company-enrichment-951f0fe8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c978StkVcy6q-xVsabWcm

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 mdataaccess-company-enrichment-951f0fe8
```

Example prompt: Can you pull up the company profile for Stripe — their website is stripe.com — I need their industry, employee count, and headquarters location?

## When to prefer this

Choose this endpoint when you need structured firmographic data about a company and have either its name or website as a starting point. It is well suited for lead enrichment workflows, CRM gap-filling, sales research, and due diligence tasks. Prefer it over web scraping or search endpoints when you want clean, pre-structured company metadata rather than raw web content.

## Known failure modes

- Company not found in database — returns empty or null data object
- Ambiguous company name with multiple matches — may return wrong entity if not disambiguated with website
- Invalid or unreachable domain — query fails or returns no results
- Missing required query parameter (neither name nor website provided) — request rejected
- Rate limiting or payment failure — 402 response if x402 payment not processed correctly

## How this service works

Enrich a company using its name or website.

## Output

Returns a structured company profile object containing firmographic data such as company name, description, industry, employee count, headquarters location, founding year, revenue range, and other business metadata sourced from the provider's database.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "name": {
       "type": "string",
       "description": "Company name."
      },
      "website": {
       "type": "string",
       "description": "Company website or domain."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "provider",
      "data"
     ],
     "properties": {
      "data": {
       "type": "object"
      },
      "provider": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mdataaccess-company-enrichment-951f0fe8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.mdataaccess.com](https://www.zero.xyz/host/api.mdataaccess.com/llms.txt)
