API Documentation
Free API to query what things are worth. No authentication required.
Base URL: https://oddworth.com/api/oddworth ยท Raw markdown for agents
GET
/itemsList all items with pagination, search, and category filtering.
Parameters
limitnumberdefault: 20Max 50cursorstringFrom previous response's nextCursorcategorystringCategory ID filterqstringSearch by nameTry it
https://oddworth.com/api/oddworth/items?limit=5&category=techGET
/items/{slug}Get a single item with full details. Add ?format=text for plain text.
Parameters
formatstring"text" for plain text outputTry it
https://oddworth.com/api/oddworth/items/bitcoinGET
/items/randomGet a random item.
Try it
https://oddworth.com/api/oddworth/items/randomGET
/compareCompare two items by slug. Returns both items and their value ratio.
Parameters
astringFirst item slug (required)bstringSecond item slug (required)Try it
https://oddworth.com/api/oddworth/compare?a=avocado-toast&b=bitcoinGET
/compare/randomGet a random comparison between two items.
Try it
https://oddworth.com/api/oddworth/compare/randomPOST
/askAsk a natural language question about item values. Rate limited to 10/min per IP.
Parameters
qstringYour question (max 500 chars, in JSON body)Try it
curl -X POST https://oddworth.com/api/oddworth/ask -H "Content-Type: application/json" -d '{"q":"How many iPhones to buy a Ferrari?"}'GET
/docsThis documentation. Add ?format=md for raw markdown (great for agents and LLMs).
Parameters
formatstring"md" for markdown outputTry it
https://oddworth.com/api/oddworth/docs?format=mdCategories
๐จ
art-collectibles๐
vehicles๐
real-estate๐
food-drink๐ป
tech๐
nature๐
sports๐
history๐ฌ
pop-culture๐
everydayNotes
- All prices are in USD cents (
worthCents) and human-readable (worthLabel) - Images are transparent PNGs โ
imageSmall(200x200) andimageLarge(800x800) - Data updates weekly via automated research
- No authentication required
- The
/askendpoint is rate limited to 10 requests per minute per IP - For agents/LLMs: fetch
/api/oddworth/docs?format=mdfor machine-readable docs