Discover/Tradera API
live

Tradera APItradera.com

Access Tradera listings via API. Search auctions and fixed-price items, retrieve seller ratings, shipping options, images, and bid counts from Sweden's largest marketplace.

This API takes change requests — .
Endpoint health
verified 5d ago
get_item_details
search_listings
2/2 passing latest checkself-healing
Endpoints
2
Updated
5d ago

What is the Tradera API?

The Tradera API exposes 2 endpoints for querying and inspecting listings on Sweden's largest auction and fixed-price marketplace. Use search_listings to run full-text searches returning up to 50 paginated item summaries per page — including price, bid count, itemType, and seller alias — then drill into any result with get_item_details to retrieve images, shipping options, seller ratings, and the full item description.

This call costs1 credit / call— charged only on success
Try it
Page number to retrieve (1-indexed)
Search keyword or phrase (e.g. 'lego', 'nike skor')
api.parse.bot/scraper/956803de-aead-4645-9c37-2732b14f44ff/<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/956803de-aead-4645-9c37-2732b14f44ff/search_listings?page=1&query=lego' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalmissing one? ·

Full-text search across Tradera listings (auctions and fixed-price). Returns paginated item summaries with seller info and pricing. Pagination via integer page counter; each page returns up to 50 items. The query matches titles and descriptions server-side.

Input
ParamTypeDescription
pageintegerPage number to retrieve (1-indexed)
queryrequiredstringSearch keyword or phrase (e.g. 'lego', 'nike skor')
Response
{
  "type": "object",
  "fields": {
    "items": "array of listing summary objects with itemId, title, price, currency, buyNowPrice, totalBids, itemType, endDate, itemUrl, sellerAlias, sellerMemberId, categoryId, condition",
    "query": "string echoing the search query",
    "pagination": "object with currentPage, totalPages, totalItems"
  },
  "sample": {
    "data": {
      "items": [
        {
          "price": 355,
          "title": "Lego The Child 75318",
          "itemId": 735229927,
          "endDate": "2026-06-11T09:13:51.2150000Z",
          "itemUrl": "https://www.tradera.com/item/180405/735229927/lego-the-child-75318",
          "currency": "SEK",
          "itemType": "Auction",
          "condition": "Gott skick",
          "totalBids": 0,
          "categoryId": 180405,
          "buyNowPrice": 0,
          "sellerAlias": "jes_m84",
          "sellerMemberId": 1698138
        }
      ],
      "query": "lego",
      "pagination": {
        "totalItems": 10000,
        "totalPages": 125,
        "currentPage": 1
      }
    },
    "status": "success"
  }
}

About the Tradera API

Search Listings

The search_listings endpoint accepts a query string (e.g. 'lego' or 'nike skor') and an optional integer page parameter for pagination. Each response returns up to 50 item summaries. The items array contains fields including itemId, title, price, currency, buyNowPrice, totalBids, itemType, endDate, itemUrl, and sellerAlias. The pagination object reports currentPage, totalPages, and totalItems, so you can iterate through the full result set systematically.

Item Details

The get_item_details endpoint takes a numeric item_id — obtained from search_listings results — and returns the full listing record. Response fields include an images array of URL strings, a seller object with alias, totalRating, detailedRating, memberId, isCompany, city, and country, plus shipping as an array of option objects carrying provider, cost, toCountryCodeIso2, and fromCountryCodeIso2. The itemType field distinguishes between Auction, PureBin (fixed-price only), AuctionBin (auction with buy-now), and ShopItem.

Coverage and Scope

All listings are sourced from tradera.com, which operates exclusively in Sweden and prices in SEK. The endDate field is returned as an ISO 8601 string, making it straightforward to filter active versus ended listings in your application logic. The condition field is present on some listings and null on others depending on what the seller provided.

Reliability & maintenanceVerified

The Tradera API is a managed, monitored endpoint for tradera.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when tradera.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 tradera.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
5d ago
Latest check
2/2 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
  • Track price trends for specific search terms across Swedish auction listings using price and endDate fields.
  • Monitor competitor seller activity by querying search_listings and inspecting sellerAlias and totalRating from results.
  • Build a cross-border shipping cost estimator using the shipping array with provider, cost, and toCountryCodeIso2 fields.
  • Identify buy-now vs. auction opportunities by filtering on itemType values (Auction, PureBin, AuctionBin, ShopItem).
  • Aggregate seller reputation data by collecting totalRating and detailedRating from get_item_details across multiple listings.
  • Alert users when specific item keywords appear in new listings by polling search_listings and comparing itemId values.
  • Research second-hand market pricing in Sweden for a given product category using buyNowPrice and totalBids fields.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Tradera have an official public developer API?+
Yes. Tradera provides an official API documented at developer.tradera.com, aimed primarily at registered sellers for listing management and order handling. It is separate from this API and requires a seller account.
What does the `itemType` field distinguish in `get_item_details`?+
The itemType field returns one of four string values: Auction (bid-only listing), PureBin (fixed-price only, no auction), AuctionBin (auction that also has a buy-now price), or ShopItem (store inventory item). This lets you filter or route listings by sale format without inspecting other fields.
Does the API return seller contact details or transaction history?+
No private contact information is returned. The seller object in get_item_details includes alias, totalRating, detailedRating, memberId, isCompany, city, and country. Transaction history is not exposed. You can fork this API on Parse and revise it to add an endpoint targeting seller profile pages if additional seller-level data is needed.
Are category-based browsing or category IDs supported for filtering search results?+
Not currently. The search_listings endpoint filters by full-text query only; there is no category ID or taxonomy parameter. You can fork this API on Parse and revise it to add a category-browse endpoint covering Tradera's category hierarchy.
How does pagination behave when a search returns a very large result set?+
Each page returns up to 50 items. The pagination response object includes currentPage, totalPages, and totalItems, so you can calculate the full result size and iterate by incrementing the page parameter. Pages are 1-indexed. Requesting a page beyond totalPages will return an empty items array.
Page content last updated . Spec covers 2 endpoints from tradera.com.
Related APIs in MarketplaceSee all →
equipmenttrader.com API
Search and browse thousands of machinery listings with detailed pricing, specifications, and seller contact information. Find the right equipment for your needs by filtering inventory across Equipment Trader's marketplace.
autotrader.ca API
Search vehicle listings on AutoTrader.ca and retrieve detailed information including specifications, pricing, mileage, and seller contact details. Compare listings across makes, models, and locations to support vehicle research and purchasing decisions.
blocket.se API
Search and browse second-hand items, cars, and housing listings across Blocket.se and Qasa.se, then retrieve detailed information about any listing that interests you. Get instant access to comprehensive product details, pricing, and categorized inventory across multiple marketplaces in one unified interface.
tori.fi API
Search Finland's largest second-hand marketplace for listings across multiple categories, filter by specific items like refurbished phones, and retrieve detailed product information along with seller details. Access real-time data from Tori.fi to find used goods, compare prices, and contact sellers directly.
autotrader.co.za API
Search and access comprehensive vehicle listings from South Africa's AutoTrader with pricing, specifications, location details, and seller information. Get everything you need to compare cars and make informed purchasing decisions, though direct seller phone numbers aren't available due to security protections.
ebay.it API
Search and browse listings on eBay Italy (ebay.it). Retrieve item details, completed/sold listings for price research, and public seller profiles.
dba.dk API
Search and retrieve detailed listings from Denmark's largest marketplace DBA.dk, including product information, pricing, and seller details across general goods and car categories. Browse marketplace categories, find specific items, and access comprehensive data on both regular listings and automotive inventory.
ebay.com API
Search and monitor eBay listings across any category, with support for active and completed/sold listings. Retrieve item details, pricing history, seller profiles and feedback, and category data. Filter by keyword, category, condition, seller, and sort order to support price research, market analysis, and inventory monitoring.