# Skim Signal: Entity Formations Feed

> Skim Signal: Entity Formations 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 new legal entity formations (NY and TX) relevant to film/TV from official government registries, refreshed every 6 hours

## Facts

- Endpoint: GET https://skim402.com/api/v2/signal/entity-formations/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-entity-formations-feed-6689c889
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__bfikDzpGyLqbvD9d17VW

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-entity-formations-feed-6689c889
```

Example prompt: Pull the latest batch of new film and TV-related legal entity formations from NY and TX government registries — give me up to 100 of the newest filings with entity names, jurisdictions, filing dates, and registered agents.

## When to prefer this

Choose this endpoint when you need a structured, ready-to-consume feed of new film/TV-relevant legal entity filings from NY and TX official government sources, refreshed every 6 hours, without having to scrape or parse raw registry pages yourself. Prefer this over general web scrapers or business entity search APIs when you specifically want entertainment-industry-filtered new formations in these two high-activity jurisdictions.

## Known failure modes

- No new formations available since last refresh — empty result set returned
- limit parameter out of range (must be 1–100) returns validation error
- Upstream government registry temporarily unavailable — stale or missing data
- Rate limit exceeded — too many calls in short window
- Payment (x402) not confirmed — request blocked before data is returned

## How this service works

Skim Signal: entity formations — new film/TV production-company registrations from official registries in CA, NY, TX, NM, and the UK (production/post SIC codes only). Entity name, jurisdiction, filing date, registry ID, agent. Balanced across jurisdictions by default; ?jurisdictions= filter. New formations only. Refreshed every 6 hours.

## Output

A newest-first list of up to 100 (default 50) new legal entity formation records, each containing: entity name, jurisdiction (NY or TX), filing date, registry ID, entity type, and registered agent. Only new formations are included — no amendments or dissolutions. Data is refreshed every 6 hours from NY Dept of State (daily) and TX Comptroller.

## 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 formation items to return (default 50, no upper cap). Newest-first by filing date. Without a jurisdictions filter, results are balanced: each jurisdiction is guaranteed a floor of newest rows (up to 25) so high-volume registries can't crowd the others out; use limit=100 for the fullest balanced window."
      },
      "jurisdictions": {
       "type": "string",
       "description": "Optional comma-separated jurisdiction codes to include (NY, TX, NM, UK, CA). Example: jurisdictions=NY,CA. Omit for a balanced mix of all covered jurisdictions."
      }
     }
    }
   },
   "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-entity-formations-feed-6689c889/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)
