# MAKO Pulse Endpoint Reliability Score

> MAKO Pulse Endpoint Reliability Score is a paid API for AI agents from mako.pollinateresearch.com, paid per call via x402, $0.020000/call, status unknown (last checked 2026-09-14).

Returns a reliability score for a given API endpoint based on MAKO's verification history, including callable rate, schema compliance, settlement success, latency percentiles, and confidence level over a configurable time window.

## Facts

- Endpoint: GET https://mako.pollinateresearch.com/api/pulse/score
- Price: $0.020000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mako-pollinateresearch-com-3a3cfb97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-XkOoITWxbaFGeet-m3Ns

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 mako-pollinateresearch-com-3a3cfb97
```

Example prompt: What's the 30-day reliability score for https://api.example.com/v1/generate — is it healthy, and how confident is MAKO Pulse in that score?

## When to prefer this

Use this endpoint when an AI agent needs to assess the trustworthiness of another x402 or agent-commerce API endpoint before paying for it or integrating it into a workflow. Especially valuable when combining with the MAKO Agent Commerce Verifier for pre-flight checks. Prefer this over generic uptime monitors when you need settlement success rates and schema compliance metrics specific to paid agent API calls.

## Known failure modes

- Missing required 'endpoint' query parameter — returns validation error
- Invalid or non-HTTP/HTTPS endpoint URL — rejected by schema
- Unknown endpoint with no verification history — returns status 'unknown' and confidence 'none' with null reliability score
- Network timeout fetching pulse data — returns server error
- Invalid window enum value — returns validation error

## How this service works

_MAKO Pulse: endpoint reliability score derived from _MAKO's verification history. Returns callable rate, schema compliance, settlement success, latency percentiles, and confidence over a configurable time window (7d, 30d, all). Pairs with the _MAKO Agent Commerce Verifier: every paid verify call makes Pulse smarter. Keywords: MAKO, _MAKO, Pollinate Research, endpoint reliability, uptime, x402 trust monitor, agent commerce, agent reliability, x402, USDC. Informational only.

## Output

Returns a JSON object with the target endpoint's reliability status (healthy/degraded/down/unknown), a numeric reliability score (0-100 or null), confidence level (high/medium/low/none), time window used, callable rate, schema compliance metrics, settlement success stats, latency percentiles, verification count, first/last verified timestamps, any warnings, and a payment receipt for the call.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "window": "7d",
   "endpoint": "https://api.github.com/repos/github/docs"
  }
 },
 "output": {
  "type": "reliability_score"
 }
}
```

## 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",
     "required": [
      "endpoint"
     ],
     "properties": {
      "window": {
       "enum": [
        "7d",
        "30d",
        "90d",
        "all"
       ],
       "type": "string",
       "default": "30d",
       "description": "Time window for the score."
      },
      "endpoint": {
       "type": "string",
       "maxLength": 500,
       "description": "Target endpoint URL to score (must be http or https)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "endpoint",
      "status",
      "window",
      "confidence",
      "receipt"
     ],
     "properties": {
      "rates": {
       "type": "object"
      },
      "status": {
       "enum": [
        "healthy",
        "degraded",
        "down",
        "unknown"
       ],
       "type": "string"
      },
      "window": {
       "enum": [
        "7d",
        "30d",
        "90d",
        "all"
       ],
       "type": "string"
      },
      "latency": {
       "type": "object"
      },
      "receipt": {
       "type": "object"
      },
      "endpoint": {
       "type": "string"
      },
      "confidence": {
       "enum": [
        "high",
        "medium",
        "low",
        "none"
       ],
       "type": "string"
      },
      "first_seen_at": {
       "type": [
        "string",
        "null"
       ]
      },
      "verifications": {
       "type": "object"
      },
      "last_verified_at": {
       "type": [
        "string",
        "null"
       ]
      },
      "warnings_summary": {
       "type": "array"
      },
      "reliability_score": {
       "type": [
        "integer",
        "null"
       ]
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mako-pollinateresearch-com-3a3cfb97/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mako.pollinateresearch.com](https://www.zero.xyz/host/mako.pollinateresearch.com/llms.txt)
