# USGS Significant Earthquakes Feed

> USGS Significant Earthquakes Feed is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns USGS significant earthquakes from the past month with magnitude, location, depth, tsunami flag, and a 1–10 significance score, with optional filtering by minimum significance and time window.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/earthquakes-significant/changes
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/usgs-significant-earthquakes-feed-61f08f3b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uXDAzJACEEfiHJnHe_nUE

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 usgs-significant-earthquakes-feed-61f08f3b
```

Example prompt: What are the most significant earthquakes from the past month? Show me only the ones with a significance score of 8 or higher, up to 20 results.

## When to prefer this

Choose this endpoint when you need a scored, pre-filtered list of globally significant earthquakes from USGS with a structured significance ranking (1–10), especially when you want to programmatically threshold on importance (e.g. only score ≥ 8) or detect changes since a specific timestamp. Prefer this over raw USGS feeds when you want normalized significance scoring and change-detection semantics rather than raw earthquake catalog queries.

## Known failure modes

- Invalid min_significance value outside 1–10 range returns a 400 error
- Invalid since date-time format returns a 400 validation error
- No earthquakes matching filters returns an empty changes array with count 0
- Payment not included or insufficient returns 402 Payment Required
- Service downtime or upstream USGS API unavailability returns 5xx error

## How this service works

USGS earthquakes (significant, past month) with magnitude, location, depth, tsunami flag, and a 1-10 significance score. Filter ?min_significance=8 for the largest events.

## Output

A JSON object with a count, source attribution, and an array of earthquake change events — each containing an entityId, title, summary, detectedAt timestamp, effectiveDate, a 1–10 significance score, a detail object with magnitude/location/depth/tsunami flag, and a sourceUrl linking to the USGS event page.

## 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",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 500,
       "minimum": 1
      },
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Only changes detected after this ISO-8601 instant"
      },
      "min_significance": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1,
       "description": "Keep only changes scored at least this"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "integer"
      },
      "source": {
       "type": "string"
      },
      "changes": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "type": {
          "type": "string"
         },
         "title": {
          "type": "string"
         },
         "detail": {
          "type": "object"
         },
         "summary": {
          "type": "string"
         },
         "entityId": {
          "type": "string"
         },
         "sourceUrl": {
          "type": [
           "string",
           "null"
          ],
          "description": "Primary-source link for verification"
         },
         "detectedAt": {
          "type": "string",
          "format": "date-time"
         },
         "significance": {
          "type": "integer",
          "maximum": 10,
          "minimum": 1
         },
         "effectiveDate": {
          "type": [
           "string",
           "null"
          ]
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/usgs-significant-earthquakes-feed-61f08f3b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
