addedOutput schema / properties / common / properties / free_tier
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "credits_per_ip_day": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "remaining_today": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "resets": {
+ "description": "UTC midnight when the day budget resets. ISO 8601.",
+ "type": "string"
+ },
+ "used_today": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "credits_per_ip_day",
+ "used_today",
+ "remaining_today",
+ "resets"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Present on trial keys: the shared per-IP day budget this key actually spends (balance_remaining stays 0 on the free tier; other callers on the same IP draw from the same pool). Null on paid plans."
+}
changedOutput schema / properties / common / required
Previous value: -[
- "plan",
- "platforms",
- "balance_remaining",
- "realtime_ops_used",
- "realtime_ops_limit",
- "concurrent_limit",
- "recent_receipts",
- "claim_url",
- "upgrade_url",
- "manage_url"
-]New value: +[
+ "plan",
+ "platforms",
+ "balance_remaining",
+ "free_tier",
+ "realtime_ops_used",
+ "realtime_ops_limit",
+ "concurrent_limit",
+ "recent_receipts",
+ "claim_url",
+ "upgrade_url",
+ "manage_url"
+]
changedOutput schema / properties / freshness / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "properties": {
- "cache_age_seconds": {
- "anyOf": [
- {
- "maximum": 9007199254740991,
- "minimum": -9007199254740991,
- "type": "integer"
- },
- {
- "type": "null"
- }
- ]
- },
- "freshness_requested": {
- "enum": [
- "recent",
- "realtime"
- ],
- "type": "string"
- },
- "freshness_served": {
- "enum": [
- "recent",
- "realtime",
- "stale"
- ],
- "type": "string"
- },
- "served_at": {
- "type": "string"
- },
- "source_retrieved_at": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "When the data was fetched from the source. ISO 8601."
- }
- },
- "required": [
- "source_retrieved_at",
- "served_at",
- "cache_age_seconds",
- "freshness_requested",
- "freshness_served"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "cache_age_seconds": {
+ "anyOf": [
+ {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "freshness_requested": {
+ "enum": [
+ "recent",
+ "realtime"
+ ],
+ "type": "string"
+ },
+ "freshness_served": {
+ "enum": [
+ "recent",
+ "realtime",
+ "stale"
+ ],
+ "type": "string"
+ },
+ "served_at": {
+ "type": "string"
+ },
+ "served_from_cache": {
+ "description": "True when these bytes were served from cache rather than fetched for this call. source_retrieved_at says how old they are.",
+ "type": "boolean"
+ },
+ "source_retrieved_at": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "When the data was fetched from the source. ISO 8601."
+ }
+ },
+ "required": [
+ "source_retrieved_at",
+ "served_at",
+ "cache_age_seconds",
+ "served_from_cache",
+ "freshness_requested",
+ "freshness_served"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
addedOutput schema / properties / platform / anyOf
Added value: +[
+ {
+ "enum": [
+ "linkedin",
+ "reddit",
+ "x"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
removedOutput schema / properties / platform / const
Removed value: -"linkedin"
removedOutput schema / properties / platform / type
Removed value: -"string"
addedOutput schema / properties / usage / properties / free_tier_hint
Added value: +{
+ "description": "Present on free-tier trial-key calls: what budget the call drew from and that paying upgrades this same key. Near the daily cap on unclaimed keys it also carries a claim link to relay to your human (claiming adds one-time credits).",
+ "type": "string"
+}
removedOutput schema / properties / usage / properties / keyless_hint
Removed value: -{
- "description": "Present on keyless calls: what budget the call drew from and how to get a key with its own balance.",
- "type": "string"
-}