Skip to main content
GET
/
api
/
v1
/
graffitiwall
Graffiti wall pixels
curl --request GET \
  --url 'https://beaconcha.in/api/v1/graffitiwall?apikey='
{
"status": "OK",
"data": [
{
"x": 203,
"y": 420,
"color": "C3423F",
"slot": 12764598,
"validator": 1843949
}
]
}

Authorizations

apikey
string
query
required

Query Parameters

startx
integer

Inclusive start X coordinate (>= 0). If omitted, the full X range is used.

Required range: x >= 0
Example:

0

starty
integer

Inclusive start Y coordinate (>= 0). If omitted, the full Y range is used.

Required range: x >= 0
Example:

0

endx
integer

Inclusive end X coordinate (>= startx). If omitted, the full X range is used.

Required range: x >= 0
Example:

511

endy
integer

Inclusive end Y coordinate (>= starty). If omitted, the full Y range is used.

Required range: x >= 0
Example:

511

startSlot
integer

Start of the slot range (inclusive). Defaults to slot - 10000 when omitted.

Required range: x >= 0
Example:

12754598

slot
integer

End of the slot range (inclusive). Defaults to the latest processed slot when omitted.

Required range: x >= 0
Example:

12764598

summarize
boolean
default:false

When true, return only the final state for each pixel within the requested rectangle and slot range. When false (default), return every change to pixels within the range.

Response

Pixels were retrieved successfully. The data array contains one entry per painted pixel event (or one per pixel when summarize=true).

Standard success envelope used by all API endpoints.

status
enum<string>

HTTP-independent status of the API operation. For successful responses this is always "OK".

Available options:
OK
data
object[]

Response payload specific to the endpoint.