# AgentShare Meteora DLMM Brief

> AgentShare Meteora DLMM Brief is a paid API for AI agents from agentshare.dev, paid per call via x402, $0.053983/call, status unknown (last checked 2026-09-14).

Returns a ranked brief of top Meteora DLMM liquidity pools on Solana with freshness metadata and billing info for AI agents

## Facts

- Endpoint: GET https://agentshare.dev/api/v1/agent/defi/meteora/brief
- Price: $0.053983/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentshare-meteora-dlmm-brief-bf77fd28
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r8goP9gd9RsQjQfc6rqle

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 agentshare-meteora-dlmm-brief-bf77fd28
```

Example prompt: Pull me a compact brief of the top 10 Meteora DLMM pools on Solana from AgentShare, using a 5-minute freshness window.

## When to prefer this

Choose this endpoint when you need structured, ranked intelligence on Meteora DLMM liquidity pools on Solana specifically, especially in agent pipelines that require freshness guarantees and x402-compatible micropayment billing. Prefer this over generic Solana RPC queries when you want pre-processed, agent-friendly pool briefs without writing custom aggregation logic.

## Known failure modes

- Empty pools array if no data is available within the requested freshness window
- Invalid limit value (must be 1-50) returns a validation error
- Invalid format enum value returns a bad request error
- Unpaid or insufficient x402 billing triggers a payment-required response
- Stale data returned if freshness window is too broad and cache is not refreshed

## How this service works

AgentShare — agent-paid API access for autonomous agents. Dual-auth (API key or x402 USDC), machine-readable discovery, MCP. Commerce and Solana/Meteora DeFi tools are secondary modules.

## Output

A JSON object containing a list of Meteora DLMM pool records (up to 50) and a metadata block with billing info including the endpoint ID. Pool data freshness is controlled by the window parameter. Response density varies between compact and full formats.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 10,
       "maximum": 50,
       "minimum": 1,
       "description": "Number of pools to return."
      },
      "format": {
       "enum": [
        "compact",
        "full"
       ],
       "type": "string",
       "description": "Response density."
      },
      "window": {
       "type": "string",
       "description": "Freshness window (e.g. 5m, 1h)."
      }
     },
     "additionalProperties": true
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "meta": {
      "billing": {
       "endpoint_id": "meteora_brief"
      }
     },
     "pools": []
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "meta": {
   "billing": {
    "endpoint_id": "meteora_brief"
   }
  },
  "pools": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentshare-meteora-dlmm-brief-bf77fd28/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentshare.dev](https://www.zero.xyz/host/agentshare.dev/llms.txt)
