# Oracles Grants Status Lookup

> Oracles Grants Status Lookup is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves stored detail for a single tracked grant opportunity by entityId, or lists all tracked grant entities.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/grants/status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oracles-grants-status-lookup-3461cd38
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xpNMwOSOUiwMHoUTh9m5d

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 oracles-grants-status-lookup-3461cd38
```

Example prompt: Can you pull up the stored details for grant opportunity grant:141593 from the oracles grants tracker?

## When to prefer this

Use this endpoint when you need to retrieve detailed, previously-stored information about a specific grant opportunity identified by its entityId (e.g. 'grant:141593'), or when you need to enumerate all grant entities being tracked by this oracle service. Best suited for agents monitoring funding opportunities or checking grant status in automated workflows.

## Known failure modes

- Invalid or unknown entityId returns empty or error response
- Malformed entityId format (not matching 'grant:XXXXXX' pattern) may return no results
- Payment failure ($0.01 USDC x402) blocks request
- Network timeout from Railway-hosted service

## How this service works

Stored detail for a single opportunity (entityId like 'grant:141593').

## Output

Returns a JSON object containing stored details for the specified grant entity, including entity metadata and opportunity details. If no id is provided, returns a list of all tracked grant entities.

## 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": {
      "id": {
       "type": "string",
       "description": "entityId to look up; omit to list tracked entities"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "entity": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oracles-grants-status-lookup-3461cd38/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)
