Forward and backward calendar over the AI policy registry
Forward and backward calendar over the AI policy registry. Each entry classified relative to now (past / active / upcoming), days-until-effective, with next-3-milestones for upcoming items. Filter by jurisdiction (EU, US, UK, etc) and time window. The "what AI rules are about to bite" feed.
20000 (raw units)
price
2
calls / 30d
2
unique payers
2026-05-25
updated
Provider
tensorfeed.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x549c82e6bfc54bdae9a2073744cbc2af5d1fc6d1",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryFields": {
"days_back": {
"example": 90,
"type": "integer"
},
"days_forward": {
"example": 365,
"type": "integer"
},
"jurisdiction": {
"example": "EU",
"type": "string"
}
},
"queryParams": {
"days_back": 90,
"days_forward": 365,
"jurisdiction": "EU"
},
"type": "http"
},
"output": {
"example": {
"billing": {
"credits_charged": 1,
"credits_remaining": 49
},
"capturedAt": "2026-05-23T07:00:00Z",
"counts": {
"active": 4,
"past": 12,
"upcoming": 9
},
"entries": [
{
"days_until_effective": 71,
"effective_date": "2026-08-02",
"id": "eu-ai-act-gpai-codes",
"jurisdiction": "EU",
"next_milestones": [
{
"date": "2026-07-01",
"name": "Codes finalized"
},
{
"date": "2026-08-02",
"name": "Enforcement begins"
}
],
"relative_to_now": "upcoming",
"source_url": "https://artificialintelligenceact.eu",
"title": "EU AI Act: General-Purpose AI codes of practice"
}
],
"ok": true,
"window": {
"days_back": 90,
"days_forward": 365,
"jurisdiction": "EU"
}
},
"schema": {
"properties": {
"billing": {
"properties": {
"credits_charged": {
"example": 1,
"type": "integer"
},
"credits_remaining": {
"example": 49,
"type": "integer"
}
},
"type": "object"
},
"capturedAt": {
"example": "2026-05-23T07:00:00Z",
"type": "string"
},
"counts": {
"properties": {
"active": {
"example": 4,
"type": "integer"
},
"past": {
"example": 12,
"type": "integer"
},
"upcoming": {
"example": 9,
"type": "integer"
}
},
"type": "object"
},
"entries": {
"items": {
"properties": {
"days_until_effective": {
"example": 71,
"type": "integer"
},
"effective_date": {
"example": "2026-08-02",
"type": "string"
},
"id": {
"example": "eu-ai-act-gpai-codes",
"type": "string"
},
"jurisdiction": {
"example": "EU",
"type": "string"
},
"next_milestones": {
"items": {
"properties": {
"date": {
"example": "2026-07-01",
"type": "string"
},
"name": {
"example": "Codes finalized",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"relative_to_now": {
"example": "upcoming",
"type": "string"
},
"source_url": {
"example": "https://artificialintelligenceact.eu",
"type": "string"
},
"title": {
"example": "EU AI Act: General-Purpose AI codes of practice",
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"ok": {
"type": "boolean"
},
"window": {
"properties": {
"days_back": {
"example": 90,
"type": "integer"
},
"days_forward": {
"example": 365,
"type": "integer"
},
"jurisdiction": {
"example": "EU",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"type": "json"
}
},
"schema": {
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"days_back": {
"maximum": 3650,
"minimum": 0,
"type": "integer"
},
"days_forward": {
"maximum": 3650,
"minimum": 0,
"type": "integer"
},
"jurisdiction": {
"description": "ISO country/region code or known bloc (EU, US, UK, CN, etc).",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://tensorfeed.ai/api/premium/policy/timeline" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://tensorfeed.ai/api/premium/policy/timeline");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://tensorfeed.ai/api/premium/policy/timeline")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4188.json, and this resource appears in /discovery/resources and /discovery/search.