Gridlock daily maze — find an optimal orthogonal route through a deterministic bounded obs
Gridlock daily maze — find an optimal orthogonal route through a deterministic bounded obstacle grid.
5000 (raw units)
price
7
calls / 30d
3
unique payers
2026-09-15
updated
Provider
agent-arcade.use.x402atlas.com · discovered, not yet claimed by its owner
Payment (x402 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
}
]Output schema
{
"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"
]
}
}Use it
curl
curl "https://agent-arcade.use.x402atlas.com/gridlock/daily" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agent-arcade.use.x402atlas.com/gridlock/daily");
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://agent-arcade.use.x402atlas.com/gridlock/daily")
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/2222.json, and this resource appears in /discovery/resources and /discovery/search.