Discover/policeauctionscanada.com API
live

policeauctionscanada.com APIwww.policeauctionscanada.com

Access Police Auctions Canada listings via API. Search active auctions, get item details, current bids, bid counts, and items ending within 24 hours.

Endpoints
3
Updated
3h ago
Try it
Page number for pagination.
Search keywords to filter listings (e.g. 'bike', 'camera'). Omitting returns all active listings.
Category ID to filter results. Known IDs: 632998 (Art & Antiques), 161051 (Automotive), 161054 (Books), 568526 (Buy It Now), 161057 (Children Products), 161060 (Clothing & Accessories), 6245132 (Coins & Currency), 161063 (Electronics), 160536 (Health & Beauty), 160534 (Home & Garden), 160535 (Jewellery), 633004 (Miscellaneous), 161066 (Musical Instruments), 633001 (Office & Business), 161069 (Sports Equipment), 161072 (Tools & Hardware), 18792549 (Gift Cards).
api.parse.bot/scraper/a59b64c8-708e-4bfe-b8c7-dd1161f8b167/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/a59b64c8-708e-4bfe-b8c7-dd1161f8b167/search_listings' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

Search auction listings by keyword with optional category filter. Returns paginated results with current bid, time remaining, and bid count for each listing.

Input
ParamTypeDescription
pageintegerPage number for pagination.
querystringSearch keywords to filter listings (e.g. 'bike', 'camera'). Omitting returns all active listings.
categorystringCategory ID to filter results. Known IDs: 632998 (Art & Antiques), 161051 (Automotive), 161054 (Books), 568526 (Buy It Now), 161057 (Children Products), 161060 (Clothing & Accessories), 6245132 (Coins & Currency), 161063 (Electronics), 160536 (Health & Beauty), 160534 (Home & Garden), 160535 (Jewellery), 633004 (Miscellaneous), 161066 (Musical Instruments), 633001 (Office & Business), 161069 (Sports Equipment), 161072 (Tools & Hardware), 18792549 (Gift Cards).
Response
{
  "type": "object",
  "fields": {
    "page": "integer",
    "listings": "array of auction listing summaries",
    "total_pages": "integer",
    "result_count": "integer"
  },
  "sample": {
    "page": 1,
    "listings": [
      {
        "url": "https://www.policeauctionscanada.com/Listing/Details/88344898/Supercycle-Krossroads-21Speed-FS-Bike-322560D",
        "title": "Supercycle Krossroads 21-Speed FS Bike (322560D)",
        "end_time": "06/11/2026 22:00:00",
        "bid_count": "1",
        "image_url": "https://pacimages.blob.core.windows.net/assets/media/6e308235-c70a-4980-9f0f-47a4d296e086_thumbfit.jpg",
        "listing_id": "88344898",
        "current_bid": "0.99"
      }
    ],
    "total_pages": 2,
    "result_count": 9
  }
}

About the policeauctionscanada.com API

The Police Auctions Canada API provides 3 endpoints to browse, search, and inspect active Canadian police auction listings. The search_listings endpoint accepts keyword queries and category filters, returning bid counts, current bids, and time remaining per item. get_listing_details exposes per-listing data including images, start and end dates, high bidder status, and full category. list_ending_soon surfaces items closing within 24 hours, paginated and sorted by ending time.

Endpoints and Data Coverage

The API covers three operations against Police Auctions Canada's active inventory. search_listings accepts a query string (e.g. 'bike', 'camera') and an optional category parameter using known category IDs such as 632998 for Art & Antiques, 161051 for Automotive, 161054 for Books, and 568526 for additional categories. Results are paginated and each listing summary includes the current bid, time remaining, and bid count. The page parameter controls pagination, and total_pages plus result_count are returned to help iterate through full result sets.

Listing Details

get_listing_details takes a numeric listing_id — obtainable from either search_listings or list_ending_soon — and returns a richer record: title, images (array of URLs), status, category, start_date, end_date, end_time, bid_count, current_bid, and listing_id. This is the endpoint to use when building item pages or tracking price movement on a specific lot.

Ending-Soon Feed

list_ending_soon returns auction items whose end time falls within the next 24 hours, sorted by closing time. It shares the same paginated response shape as search_listingslistings array, page, total_pages, and result_count. This endpoint is suited for bidding-alert tools and time-sensitive deal monitors that need to surface the most urgent active lots without a keyword filter.

Common use cases
  • Build a bidding-alert service that polls list_ending_soon and notifies users when items matching saved keywords are about to close.
  • Track price history on specific lots by periodically calling get_listing_details with the same listing_id and recording current_bid over time.
  • Aggregate active automotive listings by passing category ID 161051 to search_listings to populate a vehicle-focused auction browser.
  • Monitor bid competition by comparing bid_count from repeated calls to get_listing_details on a set of watched listings.
  • Power a deal-discovery feed that surfaces all active listings ending in 24 hours using list_ending_soon across multiple pages.
  • Catalog auction images by collecting the images array from get_listing_details for each active listing ID.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Police Auctions Canada offer an official developer API?+
No. Police Auctions Canada does not publish a public developer API or documented data feed. This Parse API is the structured way to access that listing data.
What does `get_listing_details` return beyond what `search_listings` includes?+
get_listing_details adds images (an array of image URLs), start_date, end_date, end_time, status, and full category text — fields not present in the listing summaries returned by search_listings or list_ending_soon, which focus on bid counts, current bids, and time remaining.
Can I filter `list_ending_soon` by category or keyword?+
list_ending_soon only accepts a page parameter. It does not support keyword or category filtering. For filtered results, use search_listings with a query string or category ID. You can fork this API on Parse and revise it to add category or keyword filtering to the ending-soon endpoint.
Does the API expose bidder identity or full bid history for a listing?+
get_listing_details returns a bid_count and reflects the current high bidder status, but does not expose individual bidder identities or a timestamped bid history log. The API covers current bid state and item metadata. You can fork it on Parse and revise to add a bid-history endpoint if that data becomes accessible.
Are there known category IDs I can pass to `search_listings`?+
Four category IDs are documented: 632998 (Art & Antiques), 161051 (Automotive), 161054 (Books), and 568526. Other category IDs may exist on the site but are not enumerated in the current API spec. Omitting the category parameter returns results across all active categories.
Page content last updated . Spec covers 3 endpoints from www.policeauctionscanada.com.
Related APIs in MarketplaceSee all →
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.
store.epicgames.com API
store.epicgames.com API
psacard.com API
Look up PSA certification details for graded collectible cards and search comprehensive population reports and price guides across all card categories. Browse collectible categories by set to discover grading data, pricing information, and population statistics.
craigslist.org API
Search and retrieve Craigslist listings for apartments, vehicles, jobs, services, and other categories across all regional sites to find exactly what you're looking for. Get detailed information about specific listings, browse by location and category, and compare options all in one place.
jp.mercari.com API
Search and browse millions of product listings on Mercari Japan with bilingual support, filtering by categories and getting detailed pricing, item specifications, and seller information. Access comprehensive marketplace data including product summaries, category overviews, and individual seller profiles to find exactly what you're looking for.
mercadolibre.com.ar API
Search for products, cars, and real estate listings on MercadoLibre Argentina and access detailed information including product specifications, customer reviews, and seller profiles. Get comprehensive market data to compare prices, evaluate sellers, and make informed purchasing decisions across multiple categories.
arrow.com API
Search for electronic components and instantly access pricing, availability, and detailed product specifications from Arrow Electronics' catalog. Look up manufacturers, retrieve bulk component data, and find the parts you need all in one place.
auctions.yahoo.co.jp API
Search active and completed Yahoo Auctions Japan listings, view detailed item information, and identify bargain deals by comparing current prices against market trends. Analyze seller profiles to make informed bidding decisions on Japanese auction items.