# DataSig FTC Enforcement Signal

> DataSig FTC Enforcement Signal is a paid API for AI agents from datasig.ai, paid per call via x402, $0.056/call, status unknown (last checked 2026-09-14).

Returns live FTC enforcement action signals for a given company, flagging regulatory vendor risk in supply chains

## Facts

- Endpoint: GET https://datasig.ai/signals/regulatory/ftc-enforcement
- Price: $0.056/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datasig-ftc-enforcement-signal-012a1455
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nhikVTuJmVuIZ_oO_oFtr

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 datasig-ftc-enforcement-signal-012a1455
```

Example prompt: Check DataSig for any active FTC enforcement actions against Acme Logistics — they're in the freight and transportation sector and I need to know if I should flag them as a vendor risk.

## When to prefer this

Use this endpoint when you need real-time FTC regulatory enforcement intelligence for a specific company as part of supply chain due diligence, vendor onboarding, or ongoing supplier risk monitoring. Prefer this over general web search when you need structured, agent-actionable signals with clear risk flags rather than unstructured news results. Best suited for procurement agents, compliance workflows, and vendor risk platforms that need machine-readable regulatory status per call.

## Known failure modes

- Company name not found — returns no signal or empty result
- Missing required 'company' query parameter — returns validation error
- Payment failure via x402 micropayment — returns 402 Payment Required
- Network timeout if upstream regulatory data source is temporarily unavailable
- Ambiguous company name matching multiple entities — may return results for wrong entity

## How this service works

DataSig delivers live supply chain action intelligence to AI agents via x402 micropayments. Tariff changes, port congestion, blank sailing risk, supplier distress. Pay per call in USDC on Base. No API key.

## Output

A JSON object containing a signal field (e.g. FTC_ACTION_DETECTED) and an agent_action field (e.g. FLAG_VENDOR_RISK), indicating whether the queried company currently has an active FTC enforcement action and what risk action the AI agent should take.

## 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": [
      "company"
     ],
     "properties": {
      "sector": {
       "type": "string",
       "description": "Industry sector (optional)"
      },
      "company": {
       "type": "string",
       "description": "Company name"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "signal": "FTC_ACTION_DETECTED",
  "agent_action": "FLAG_VENDOR_RISK"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datasig-ftc-enforcement-signal-012a1455/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from datasig.ai](https://www.zero.xyz/host/datasig.ai/llms.txt)
