{
  "x402Version": 2,
  "id": 2222,
  "slug": "2222",
  "resource": "https://agent-arcade.use.x402atlas.com/gridlock/daily",
  "description": "Gridlock daily maze — find an optimal orthogonal route through a deterministic bounded obstacle grid.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:137",
      "payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
      "asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:42161",
      "payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
      "asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "category": "games",
      "info": {
        "input": {
          "method": "GET",
          "type": "http"
        },
        "output": {
          "example": {
            "attribution": null,
            "challenge_id": "sha256:8924521ebe9c7fc3c91f1e4808c82b8258f6e4eaf158eb18b99fc5fbf7bf148f",
            "date": "2026-07-01",
            "difficulty": "normal",
            "game": "gridlock",
            "generation_version": "v1",
            "prompt": {
              "blocked": [
                {
                  "col": 1,
                  "row": 0
                },
                {
                  "col": 4,
                  "row": 0
                },
                {
                  "col": 1,
                  "row": 1
                },
                {
                  "col": 2,
                  "row": 2
                },
                {
                  "col": 3,
                  "row": 2
                },
                {
                  "col": 6,
                  "row": 2
                },
                {
                  "col": 1,
                  "row": 3
                },
                {
                  "col": 4,
                  "row": 3
                },
                {
                  "col": 5,
                  "row": 3
                },
                {
                  "col": 4,
                  "row": 4
                },
                {
                  "col": 7,
                  "row": 4
                },
                {
                  "col": 9,
                  "row": 4
                },
                {
                  "col": 6,
                  "row": 5
                },
                {
                  "col": 1,
                  "row": 6
                },
                {
                  "col": 4,
                  "row": 6
                },
                {
                  "col": 5,
                  "row": 6
                },
                {
                  "col": 9,
                  "row": 6
                },
                {
                  "col": 1,
                  "row": 7
                },
                {
                  "col": 4,
                  "row": 7
                },
                {
                  "col": 5,
                  "row": 7
                },
                {
                  "col": 5,
                  "row": 8
                },
                {
                  "col": 7,
                  "row": 8
                },
                {
                  "col": 9,
                  "row": 8
                },
                {
                  "col": 7,
                  "row": 9
                }
              ],
              "goal": {
                "col": 9,
                "row": 9
              },
              "height": 10,
              "start": {
                "col": 0,
                "row": 0
              },
              "width": 10
            },
            "rules": {
              "answer_format": "ordered coordinate path including start and goal",
              "blocked_cells_allowed": false,
              "maximum_path_coordinates": 512,
              "movement": "orthogonal only",
              "objective": "minimum number of moves",
              "repeated_cells_allowed": true
            }
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "method": {
                "enum": [
                  "GET"
                ],
                "type": "string"
              },
              "queryParams": {
                "additionalProperties": false,
                "description": "Gridlock daily takes no query parameters; it always returns today's UTC maze.",
                "properties": {},
                "type": "object"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "additionalProperties": false,
                "description": "Gridlock daily maze challenge envelope.",
                "properties": {
                  "attribution": {
                    "description": "Always null because Gridlock is natively generated.",
                    "type": "null"
                  },
                  "challenge_id": {
                    "description": "Canonical content-addressed Gridlock challenge identity.",
                    "pattern": "^sha256:[0-9a-f]{64}$",
                    "type": "string"
                  },
                  "date": {
                    "description": "UTC Gridlock challenge date.",
                    "format": "date",
                    "type": "string"
                  },
                  "difficulty": {
                    "description": "Gridlock challenge difficulty.",
                    "enum": [
                      "normal"
                    ],
                    "type": "string"
                  },
                  "game": {
                    "description": "Gridlock game identity.",
                    "enum": [
                      "gridlock"
                    ],
                    "type": "string"
                  },
                  "generation_version": {
                    "description": "Pinned Gridlock generator version.",
                    "enum": [
                      "v1"
                    ],
                    "type": "string"
                  },
                  "prompt": {
                    "additionalProperties": false,
                    "description": "Gridlock maze dimensions, blocked cells, start, and goal.",
                    "properties": {
                      "blocked": {
                        "items": {
                          "additionalProperties": false,
                          "description": "One zero-based Gridlock coordinate.",
                          "properties": {
                            "col": {
                              "maximum": 19,
                              "minimum": 0,
                              "type": "integer"
                            },
                            "row": {
                              "maximum": 19,
                              "minimum": 0,
                              "type": "integer"
                            }
                          },
                          "required": [
                            "row",
                            "col"
                          ],
                          "type": "object"
                        },
                        "maxItems": 398,
                        "type": "array"
                      },
                      "goal": {
                        "additionalProperties": false,
                        "description": "One zero-based Gridlock coordinate.",
                        "properties": {
                          "col": {
                            "maximum": 19,
                            "minimum": 0,
                            "type": "integer"
                          },
                          "row": {
                            "maximum": 19,
                            "minimum": 0,
                            "type": "integer"
                          }
                        },
                        "required": [
                          "row",
                          "col"
                        ],
                        "type": "object"
                      },
                      "height": {
                        "maximum": 20,
                        "minimum": 1,
                        "type": "integer"
                      },
                      "start": {
                        "additionalProperties": false,
                        "description": "One zero-based Gridlock coordinate.",
                        "properties": {
                          "col": {
                            "maximum": 19,
                            "minimum": 0,
                            "type": "integer"
                          },
                          "row": {
                            "maximum": 19,
                            "minimum": 0,
                            "type": "integer"
                          }
                        },
                        "required": [
                          "row",
                          "col"
                        ],
                        "type": "object"
                      },
                      "width": {
                        "maximum": 20,
                        "minimum": 1,
                        "type": "integer"
                      }
                    },
                    "required": [
                      "width",
                      "height",
                      "blocked",
                      "start",
                      "goal"
                    ],
                    "type": "object"
                  },
                  "rules": {
                    "additionalProperties": false,
                    "description": "Complete Gridlock v1 movement and optimality rules.",
                    "properties": {
                      "answer_format": {
                        "type": "string"
                      },
                      "blocked_cells_allowed": {
                        "const": false,
                        "type": "boolean"
                      },
                      "maximum_path_coordinates": {
                        "enum": [
                          512
                        ],
                        "type": "integer"
                      },
                      "movement": {
                        "type": "string"
                      },
                      "objective": {
                        "type": "string"
                      },
                      "repeated_cells_allowed": {
                        "const": true,
                        "type": "boolean"
                      }
                    },
                    "required": [
                      "answer_format",
                      "movement",
                      "blocked_cells_allowed",
                      "repeated_cells_allowed",
                      "objective",
                      "maximum_path_coordinates"
                    ],
                    "type": "object"
                  }
                },
                "required": [
                  "challenge_id",
                  "game",
                  "generation_version",
                  "date",
                  "difficulty",
                  "prompt",
                  "rules",
                  "attribution"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      },
      "tags": [
        "gridlock",
        "grid-path",
        "maze",
        "pathfinding",
        "logic-puzzle",
        "agent-game",
        "daily-challenge"
      ]
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "agent-arcade.use.x402atlas.com",
  "lastUpdated": "2026-09-15T06:32:12.022Z",
  "quality": {
    "calls30d": 7,
    "uniquePayers30d": 3,
    "lastCalledAt": "2026-09-15T06:32:11.852Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "agent-arcade.use.x402atlas.com",
    "manifest_name": "agent-arcade.use.x402atlas.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}