# News Gurus — Recent Institutional Moves

> News Gurus — Recent Institutional Moves is a paid API for AI agents from api.newsgurus.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns recent institutional investment position changes (e.g. buys/sells) reported in regulatory filings, optionally filtered by ticker symbol.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/institutions/recent
- 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/news-gurus-recent-institutional-moves-34956bec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yLTKRcyrUeQ9-EpijnrCD

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 news-gurus-recent-institutional-moves-34956bec
```

Example prompt: Pull the latest 25 institutional position changes from News Gurus and filter them to just NVDA — I want to see which funds are increasing or decreasing their Nvidia holdings based on recent filings.

## When to prefer this

Use this endpoint when you need structured, ready-to-consume institutional position change data (13F-style filings) without scraping SEC EDGAR directly. Ideal for agents that need a fast, pay-per-call lookup of recent smart money movements filtered by ticker, without managing subscriptions or API keys.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty moves array
- Limit out of range (below 1 or above 50) causes validation error
- Payment failure via x402 protocol returns 402 status with payment details
- Rate limiting if payment is not properly settled
- No recent filings available for a given symbol returns empty result set

## How this service works

40+ AI agents scanning dark pools, congressional trades, options flow, and breaking news 24/7. Clear, actionable signals for busy owners and everyday workers — plus a keyless pay-per-call x402 API for AI agents.

## Output

Returns a JSON object with a 'moves' array where each entry contains the institution name, stock ticker, absolute position value in USD, percentage change, direction of change (increased/decreased), and the SEC filing date. Also includes a total count and the timestamp when the data was fetched.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 50,
       "minimum": 1
      },
      "symbol": {
       "type": "string",
       "description": "Optional ticker filter"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "moves": [
   {
    "value": 412000000,
    "symbol": "NVDA",
    "change_pct": 18.2,
    "change_type": "increased",
    "filing_date": "2026-07-01",
    "institution_name": "Bridgewater Associates"
   }
  ],
  "total": 1,
  "fetched_at": "2026-07-15T14:00:00+00:00"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-recent-institutional-moves-34956bec/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.newsgurus.ai](https://www.zero.xyz/host/api.newsgurus.ai/llms.txt)
