# Skim Signal: Film Incentives Feed

> Skim Signal: Film Incentives Feed is a paid API for AI agents from skim402.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the latest structured news items about state film incentive award rounds and allocations across CA, NY, GA, NM, and TX, refreshed every 30 minutes.

## Facts

- Endpoint: GET https://skim402.com/api/v2/signal/film-incentives/latest
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/skim-signal-film-incentives-feed-8d9b5dbd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__O_zlSGA7x8l0m2XGkMjW

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 skim-signal-film-incentives-feed-8d9b5dbd
```

Example prompt: Pull the latest film incentive news for California and Georgia — I want to see the newest award rounds and allocations, up to 25 items.

## When to prefer this

Choose this endpoint when you need structured, near-real-time intelligence on US state film incentive programs — specifically award rounds and allocation announcements — filtered by state. It is purpose-built for the entertainment finance and production industry, sourcing from official government and commission channels rather than general news aggregators. Prefer it over generic news APIs when you need state-tagged, film-incentive-specific structured items ready for downstream agent workflows.

## Known failure modes

- Invalid state code in ?states= parameter returns an error or empty result
- Requesting limit above 100 is rejected by schema validation
- Service may return stale data if the 30-minute refresh cycle is behind
- Empty result set if no new incentive items have been published recently for the filtered states
- Network or payment (x402) failure if the $0.005 USDC micropayment is not properly handled

## How this service works

Skim Signal: film incentives — new state film-incentive award rounds and allocations across California, New York, Georgia, New Mexico, and Texas as structured items: official California Film Commission and Texas Governor announcements plus incentive-focused press coverage per state, tagged with the state they cover. Optional ?states= filter. Refreshed on a 30-minute cycle.

## Output

A newest-first list of structured news items covering film incentive award rounds and allocations, each tagged with the relevant US state (CA, NY, GA, NM, or TX). Items draw from official sources like the California Film Commission and Texas Governor's office, plus incentive-focused press coverage, and reflect data refreshed on a 30-minute cycle.

## 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": {
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1,
       "description": "Maximum number of items to return (default 50, no upper cap). Newest-first."
      },
      "states": {
       "type": "string",
       "description": "Optional comma-separated two-letter state filter. Tracked states: CA, NY, GA, NM, TX."
      }
     }
    }
   },
   "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/skim-signal-film-incentives-feed-8d9b5dbd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from skim402.com](https://www.zero.xyz/host/skim402.com/llms.txt)
