# Messari Organizations Funding Discovery

> Messari Organizations Funding Discovery is a paid API for AI agents from api.messari.io, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Discover and list crypto organizations with their funding and investment activity, filterable by sector, category, founding date, and tags.

## Facts

- Endpoint: GET https://api.messari.io/funding/v1/organizations
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-messari-io-e150275f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VtuB4yqC-AhpkZoSuV2j9

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 api-messari-io-e150275f
```

Example prompt: Show me crypto organizations in the DeFi sector on Messari, filtered to those founded after 2019, in the lending category — give me the first 20 results.

## When to prefer this

Use this endpoint when you need to discover or enumerate crypto/Web3 organizations with funding context, especially when filtering by sector, category, or founding date range. Prefer this over the funding rounds endpoint when your primary interest is organizations themselves rather than specific investment rounds. Use when building org directories, sector analyses, or investor research pipelines.

## Known failure modes

- Invalid sector or category value returns empty results or 400 error
- foundedAfter/foundedBefore date format mismatch causes parse error
- Page number out of range returns empty result set
- Payment not completed via x402 protocol returns 402 Payment Required
- Rate limiting returns 429 Too Many Requests
- Invalid organization ID in id array returns 404 or empty results

## How this service works

Discover organizations with funding and investment activity.

## Output

A paginated list of crypto organizations including their names, IDs, sectors, categories, tags, founding dates, and associated funding and investment activity metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "page": {
   "type": "integer",
   "minimum": 1
  },
  "tags": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "limit": {
   "type": "integer",
   "minimum": 1
  },
  "sector": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "category": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "foundedAfter": {
   "type": "string"
  },
  "foundedBefore": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "data": [
   {
    "id": "org-001",
    "name": "Example Ventures",
    "sector": "infrastructure",
    "category": "venture-capital",
    "location": "Singapore",
    "foundedDate": "2018-03-12"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-messari-io-e150275f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.messari.io](https://www.zero.xyz/host/api.messari.io/llms.txt)
