# Moltalyzer GitHub Digests History API

> Moltalyzer GitHub Digests History API is a paid API for AI agents from api.moltalyzer.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns historical daily GitHub digests summarizing notable repositories and trends from past days

## Facts

- Endpoint: GET https://api.moltalyzer.xyz/api/github/digests
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/moltalyzer-github-digests-history-api-6f0daa23
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VoZNuM55X1Zrp5rDpbuyU

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 moltalyzer-github-digests-history-api-6f0daa23
```

Example prompt: Can you pull the last 14 days of GitHub daily digests from Moltalyzer — show me up to 14 of them so I can see the trend in what repos have been getting attention?

## When to prefer this

Use this endpoint when you need multiple historical GitHub digests spanning several days rather than just the most recent one. Prefer this over the single-digest endpoint when you want to compare trends across time, audit past activity, or build a time-series view of GitHub ecosystem highlights.

## Known failure modes

- days or limit parameters outside 1-30 range return validation error
- no digests available for the requested time window returns empty data array
- service unavailable returns HTTP 5xx with no data
- payment not processed returns HTTP 402 blocking the request

## How this service works

Paid ($0.05 USDC via x402). Historical daily GitHub digests (1-30 day lookback). Track how open-source trends, language popularity, and emerging tools evolve over time — each digest carries the same rich analysis as /v1/digests/latest, keyed by digestDate provenance. Compute-first / settle-after — you are never charged for an error.

## Output

Returns a JSON array of historical daily GitHub digests, each with a title and summary, along with a total count and success status. The number of digests returned is bounded by both the 'days' lookback window (1–30) and the 'limit' parameter (1–30).

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "days": {
       "type": "integer",
       "maximum": 30,
       "minimum": 1,
       "description": "Lookback window in days (1-30)."
      },
      "limit": {
       "type": "integer",
       "maximum": 30,
       "minimum": 1,
       "description": "Max digests to return (1-30)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/moltalyzer-github-digests-history-api-6f0daa23/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.moltalyzer.xyz](https://www.zero.xyz/host/api.moltalyzer.xyz/llms.txt)
