mirrored listing x402 eip155:8453

Weather forecast: Current conditions plus daily forecast for coordinates

Weather forecast: Current conditions plus daily forecast for coordinates. Use geocode first for a city name. Smart run on Cracked, the tool router for agents: POST {"capability":"weather-forecast","input":{...}} with input fields latitude, longitude, days, units; free schema at GET /v1/capabilities?id=weather-forecast. Quote = provider price + platform fee, never below $0.01; failed runs are never settled.

Do you run cracked.ai? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
10000 (raw units)
price
3
calls / 30d
2
unique payers
2026-09-06
updated

Provider

cracked.ai · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x9cfa76148b8c3c3b624bc83bb5df1c3bd7c987ca",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "10000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "capability": "weather-forecast",
          "input": {
            "latitude": 30.27,
            "longitude": -97.74
          }
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "billing": {
            "totalUsd": 0.01
          },
          "capability": "weather-forecast",
          "output": {},
          "payment": {
            "network": "eip155:8453",
            "settled": true,
            "transaction": "0x5b1e0b1f5e2c7a5f4d3b2a1908f7e6d5c4b3a291807f6e5d4c3b2a1908f7e6d5"
          },
          "runId": "run_01J8X0Q5M3N7V9Y2K4T6W8Z0A1",
          "status": "COMPLETED"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "description": "Smart run of Weather forecast: Cracked routes the input to the best live tool for this capability",
              "properties": {
                "capability": {
                  "const": "weather-forecast",
                  "description": "Capability id (Weather forecast)",
                  "type": "string"
                },
                "input": {
                  "additionalProperties": false,
                  "properties": {
                    "days": {
                      "default": 3,
                      "description": "Forecast days 1-16",
                      "type": "number"
                    },
                    "latitude": {
                      "description": "Latitude",
                      "type": "number"
                    },
                    "longitude": {
                      "description": "Longitude",
                      "type": "number"
                    },
                    "units": {
                      "default": "fahrenheit",
                      "description": "celsius or fahrenheit",
                      "type": "string"
                    }
                  },
                  "required": [
                    "latitude",
                    "longitude"
                  ],
                  "type": "object"
                }
              },
              "required": [
                "capability",
                "input"
              ],
              "type": "object"
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST",
                "PUT",
                "PATCH"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "billing": {
                  "properties": {
                    "totalUsd": {
                      "type": "number"
                    }
                  },
                  "type": "object"
                },
                "capability": {
                  "type": "string"
                },
                "endpoint": {
                  "type": "string"
                },
                "output": {},
                "payment": {
                  "properties": {
                    "network": {
                      "type": "string"
                    },
                    "settled": {
                      "type": "boolean"
                    },
                    "transaction": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "provider": {
                  "type": "string"
                },
                "runId": {
                  "type": "string"
                },
                "status": {
                  "enum": [
                    "COMPLETED",
                    "FAILED",
                    "BLOCKED",
                    "TIMED_OUT",
                    "STOPPED",
                    "RUNNING"
                  ],
                  "type": "string"
                }
              },
              "required": [
                "runId",
                "status"
              ],
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://cracked.ai/v1/run"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://cracked.ai/v1/run");
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://cracked.ai/v1/run")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/8267.json, and this resource appears in /discovery/resources and /discovery/search.