14.2.7
Read API
GET

/api/seeds

The list of known seeds, newest dump first, paged by cursor. Seeds with an open block window are left out.

no authpublicsince v1
Path · query
FieldInTypeRequiredDescription
cursorqueryintegeroptionalnextCursor of the previous page. Omit for the first page.
limitqueryintegeroptional1..500, default 200.
Responses
StatusBodyWhen
200{"items":[{"seed":1848055747,"roomCount":103,"spawns":218,"markers":0,"dumped":true,"detected":true}],"total":36252,"nextCursor":1848055747}items are the seeds on this page, total the overall count, nextCursor the cursor for the next page (null on the last page). Blocked seeds are absent and reappear when the window ends.
400{"error":"invalid cursor"}cursor is not a valid seed.
Response fields
FieldTypenullDescription
itemsarraynoSeeds on this page. Items are {seed, roomCount, spawns, markers, dumped, detected}.
items[].seedintegernoThe seed.
items[].roomCountintegernoNumber of rooms.
items[].spawnsintegernoNumber of candidate spawn points.
items[].markersintegernoActual placements recorded at dump time. Not included in the public map response.
items[].dumpedbooleannotrue when the map has been generated.
items[].detectedbooleannotrue when Seed Sniffer has seen it.
totalintegernoTotal number of seeds, not counting blocked ones.
nextCursorintegeryescursor for the next page. null on the last page.
Example
curl https://slmaps.com/api/seeds -H "User-Agent: MyServer/1.0"
Response example
{
  "items": [
    {
      "seed": 1848055747,
      "roomCount": 103,
      "spawns": 218,
      "markers": 0,
      "dumped": true,
      "detected": true
    }
  ],
  "total": 36252,
  "nextCursor": 1848055747
}

What the viewer does

Public stats (seed counts and so on) are unaffected by blocking; only this list omits blocked seeds. New seeds are prepended, so paging never shifts or repeats items.

SLMAPS is the seed-map viewer for SCP: Secret Laboratory. These pages describe the public API of slmaps.com.slmaps.com ·