Discover/Lexaloffle API
live

Lexaloffle APIlexaloffle.com

Access PICO-8 cart listings from the Lexaloffle BBS: titles, authors, tags, likes, cart PNG URLs, and more via 3 structured endpoints.

Endpoint health
verified 4d ago
get_cart_details
collect_new_cart_ids
list_carts
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the Lexaloffle API?

This API exposes 3 endpoints for reading PICO-8 cartridge data from the Lexaloffle BBS community catalog. The list_carts endpoint returns paginated listings sorted newest-first, with up to 30 carts per page including fields like title, author, likes, tags, and cart PNG URL. The get_cart_details endpoint delivers per-cart metadata including license type, slug, and direct thread URL. A dedicated collect_new_cart_ids endpoint supports incremental collection by stopping once a previously seen PID is encountered.

Try it
Page number (1-indexed)
Max carts to return per page (max 30)
api.parse.bot/scraper/7feda12b-58d0-4529-be4c-8f739b343709/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/7feda12b-58d0-4529-be4c-8f739b343709/list_carts?page=1&limit=5' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace lexaloffle-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.lexaloffle_pico_8_carts_api import Lexaloffle, CartSummary, Cart

client = Lexaloffle()

# Browse recent PICO-8 carts
for cart in client.cartsummaries.list(limit=5):
    print(cart.title, cart.author, cart.likes, cart.date_created)

# Get full details for a specific cart
detail = client.carts.get(pid="188412")
print(detail.title, detail.author, detail.license, detail.thread_url)

# Navigate from summary to detail
summary = client.cartsummary(pid="188412")
full = summary.details()
print(full.title, full.tags, full.date_edited)

# Incremental collection - find new carts since last scrape
for new_cart in client.cartsummaries.collect(known_ids="188399,188392", max_pages=2):
    print(new_cart.pid, new_cart.title, new_cart.author, new_cart.thumb_url)
All endpoints · 3 totalmissing one? ·

List PICO-8 carts sorted by newest first (date added). Returns up to 30 carts per page with metadata including title, author, tags, dates, likes, cart PNG URL, and thumbnail URL. Pagination via integer page counter.

Input
ParamTypeDescription
pageintegerPage number (1-indexed)
limitintegerMax carts to return per page (max 30)
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "carts": "array of cart objects with pid, tid, title, display_name, author, author_uid, date_created, date_modified, tags, likes, post_count, slug, thumb_url, cart_png_url, has_cc4_license, detail_url",
    "carts_on_page": "integer, number of carts returned on this page",
    "has_next_page": "boolean, whether more pages are available"
  },
  "sample": {
    "data": {
      "page": 1,
      "carts": [
        {
          "pid": "191372",
          "tid": 157427,
          "slug": "fiwijijose-0",
          "tags": [],
          "likes": 0,
          "title": "fiwijijose",
          "author": "Toosmallshoes",
          "thumb_url": "https://www.lexaloffle.com/bbs/thumbs/pico8_fiwijijose-0.png",
          "author_uid": 140866,
          "detail_url": "https://www.lexaloffle.com/bbs/?pid=191372#p",
          "post_count": 1,
          "cart_png_url": "https://www.lexaloffle.com/bbs/cposts/fi/fiwijijose-0.p8.png",
          "date_created": "2026-06-10 21:36:09",
          "display_name": "fiwijijose",
          "date_modified": "2026-06-10 21:36:09",
          "has_cc4_license": true
        }
      ],
      "carts_on_page": 5,
      "has_next_page": true
    },
    "status": "success"
  }
}

About the Lexaloffle API

Cart Listings and Pagination

The list_carts endpoint returns arrays of cart objects sorted by date added, newest first. Each object includes pid, tid, title, author, author_uid, date_created, date_modified, tags, likes, and post_count. The optional page parameter (1-indexed) and limit parameter (max 30) control pagination. The has_next_page boolean and carts_on_page count let you walk the full catalog without guessing when to stop.

Per-Cart Detail

The get_cart_details endpoint accepts a single required pid string and returns expanded metadata for that cart: slug, license (e.g. CC4-BY-NC-SA), detail_url, and thread_url alongside the same title, author, and tag data available in the listing. Note that legacy carts created before 2016 may return empty title fields and numeric slugs rather than descriptive ones — callers should handle both cases.

Incremental Collection

The collect_new_cart_ids endpoint is designed for pipelines that need to stay current without re-fetching the full catalog. Pass a comma-separated list of previously collected PIDs as known_ids. Scanning proceeds newest-first and halts when the first matching PID is found, indicated by stopped_at_known_id: true. The pages_scanned and new_cart_count fields report exactly how much of the catalog was traversed. If no known IDs match within max_pages, all carts encountered are returned.

Reliability & maintenanceVerified

The Lexaloffle API is a managed, monitored endpoint for lexaloffle.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when lexaloffle.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official lexaloffle.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a PICO-8 game discovery feed sorted by newest releases using list_carts with paginated browsing.
  • Index cart licenses (e.g. CC4-BY-NC-SA) from get_cart_details to filter for openly reusable games.
  • Track community engagement trends over time by collecting likes and post_count across the cart catalog.
  • Monitor new cart releases incrementally by passing previously seen PIDs to collect_new_cart_ids.
  • Generate a tag-based taxonomy of the PICO-8 catalog using the tags arrays from list_carts.
  • Link directly to game threads using the thread_url field returned by get_cart_details for community tooling.
  • Identify prolific authors by aggregating author_uid and author fields across paginated cart listings.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Lexaloffle provide an official developer API for the BBS cart catalog?+
Lexaloffle does not publish a documented public API for the BBS cartridge listings. The data is community-facing, accessible through the BBS web interface at lexaloffle.com/bbs.
What does `get_cart_details` return that `list_carts` does not?+
get_cart_details adds license, slug, detail_url, and thread_url — fields not present in the listing response. It requires a specific pid and returns metadata for that single cart only.
How should I handle legacy carts with empty title fields?+
Legacy PICO-8 carts created before 2016 may return an empty string for title and a numeric value for slug rather than a human-readable name. Your code should treat empty titles as a known edge case rather than an error.
Does the API return the cart's playable binary or sprite data?+
The API returns a cart PNG URL (the cartridge image file used by PICO-8) but does not parse or expose internal cart data such as Lua source code, sprite sheets, or map data. You can fork this API on Parse and revise it to add an endpoint that fetches and parses cart PNG contents.
Can I search or filter carts by tag, author, or date range?+
The current endpoints do not support server-side filtering by tag, author, or date range — list_carts returns carts newest-first with optional page and limit controls only. You can fork this API on Parse and revise it to add filtered listing endpoints targeting specific tags or authors.
Page content last updated . Spec covers 3 endpoints from lexaloffle.com.
Related APIs in Developer ToolsSee all →
poki.com API
Discover and browse thousands of free online games with detailed information about genres, popularity, and platform compatibility. Find new games by exploring categories or searching through Poki's complete game catalog to access metadata and recommendations.
pokemontcg.io API
Search and retrieve detailed information about Pokémon Trading Card Game cards, including card stats, types, attacks, abilities, rarity, set information, images, and pricing data.
cardmarket.com API
Search and browse trading cards across Europe's largest marketplace, accessing detailed card information, listings, seller profiles, and finding the best bargains all in one place. Explore games and expansions to discover available singles and compare prices from multiple sellers.
itch.io API
itch.io API
ygoprodeck.com API
Search and retrieve detailed Yu-Gi-Oh! card information including attributes, effects, and images from the comprehensive YGOProDeck database. Browse the complete card catalog or look up specific cards to find everything you need about their stats and abilities.
en.onepiece-cardgame.com API
Search and explore One Piece trading card data across all series, view detailed card information including stats, abilities, and artwork, and stay up to date with the latest news, events, and product releases from the official game site. Browse recommended deck strategies and discover upcoming tournaments and expansions.
pricecharting.com API
Access collectible pricing data from PriceCharting.com. Search for Pokémon cards, US coins, and other collectibles to retrieve current prices across multiple grades (ungraded, PSA 9, PSA 10, MS62, MS66, and more), browse full set listings, view historical price trends, and explore recent sold listings.
funpay.com API
Browse and monitor gaming marketplace listings and prices on FunPay.com. Search for games and categories, view current listings and pricing, explore the full game directory alphabetically, and look up seller profiles to research reputation and active offers.