# TickOrigin Dev Momentum

> TickOrigin Dev Momentum is a paid API for AI agents from api.tickorigin.com, paid per call via x402, $0.03/call, status down (last checked 2026-09-15).

Returns GitHub developer-activity momentum score for a single tracked crypto token

## Facts

- Endpoint: GET https://api.tickorigin.com/v1/dev-momentum
- Price: $0.03/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tickorigin-dev-momentum-2a6b8007
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xNa-uVbt0rherq2Bf_bn4

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 tickorigin-dev-momentum-2a6b8007
```

Example prompt: What's the current GitHub developer-activity momentum score for Ethereum on TickOrigin — is development momentum trending up or down right now?

## When to prefer this

Use this endpoint when you need a time-series momentum signal (rate-of-change) for developer activity on a specific crypto token, rather than a snapshot ranking across all tokens. Prefer this over the sibling cross-sectional ranking endpoint when you care about a single token's trajectory rather than comparative positioning.

## Known failure modes

- Token not tracked by TickOrigin — 404 or empty result
- Payment not provided or rejected — 402 Payment Required
- Invalid or missing token parameter — 400 Bad Request
- Rate limit exceeded — 429 Too Many Requests
- Service temporarily unavailable — 503

## How this service works

GitHub developer-activity momentum for one crypto token

## Output

A momentum score reflecting recent GitHub developer activity trends for the specified crypto token, likely including directional trend signals derived from commit/contributor activity data.

## 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": {}
    }
   },
   "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/tickorigin-dev-momentum-2a6b8007/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.tickorigin.com](https://www.zero.xyz/host/api.tickorigin.com/llms.txt)
