Discover/kijiji.ca API
live

kijiji.ca APIkijiji.ca

Access Kijiji.ca classified ads via API. Search rentals, jobs, pets, and general listings. Filter by location, category, and keywords across Canada.

Endpoints
7
Updated
3mo ago
Try it
Page number for pagination.
Category ID filter. Use get_categories to discover valid IDs.
Location ID filter. Use get_locations to discover valid IDs.
Search keywords to filter listings.
Category URL slug (e.g. 'b-all', 'b-apartments-condos', 'b-jobs').
Location URL slug (e.g. 'l0' for all Canada, 'montreal', 'toronto').
api.parse.bot/scraper/2a6b6220-98b8-4e29-8875-e62665d461dc/<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/2a6b6220-98b8-4e29-8875-e62665d461dc/search_listings?page=1&keywords=laptop' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 7 totalclick to expand

Search for classified ads with various filters including category, location, and keywords. Returns paginated results with up to 40 listings per page.

Input
ParamTypeDescription
pageintegerPage number for pagination.
cat_idintegerCategory ID filter. Use get_categories to discover valid IDs.
loc_idintegerLocation ID filter. Use get_locations to discover valid IDs.
keywordsstringSearch keywords to filter listings.
category_slugstringCategory URL slug (e.g. 'b-all', 'b-apartments-condos', 'b-jobs').
location_slugstringLocation URL slug (e.g. 'l0' for all Canada, 'montreal', 'toronto').
Response
{
  "type": "object",
  "fields": {
    "listings": "array of listing objects with id, title, description, price, location, url, imageUrls, categoryId, activationDate, sortingDate, attributes, posterInfo, and flags",
    "pagination": "object with offset, limit, and totalCount"
  },
  "sample": {
    "data": {
      "listings": [
        {
          "id": "1731050620",
          "url": "https://www.kijiji.ca/v-laptops/city-of-toronto/laptops-gaming-laptop-official-laptop/1731050620",
          "flags": {
            "topAd": false,
            "highlight": false
          },
          "price": {
            "type": "FIXED",
            "amount": 45000,
            "originalAmount": null
          },
          "title": "Laptops, Gaming Laptop, Official Laptop",
          "location": {
            "id": 1700273,
            "name": "Markham",
            "address": "Markham, ON L3T 0C7"
          },
          "imageUrls": [
            "https://media.kijiji.ca/api/v1/ca-prod-fsbo-ads/images/98/985f8ca9-7111-4331-b609-a209f6e373f8?rule=kijijica-200-jpg"
          ],
          "attributes": {
            "all": [
              {
                "canonicalName": "condition",
                "canonicalValues": [
                  "new"
                ]
              }
            ]
          },
          "categoryId": 773,
          "posterInfo": {
            "rating": 5,
            "posterId": "1018189888",
            "verified": false
          },
          "description": "If you need more pictures or details...",
          "sortingDate": "2026-05-08T22:17:25.000Z",
          "activationDate": "2025-12-30T20:50:27.000Z"
        }
      ],
      "pagination": {
        "limit": 40,
        "offset": 0,
        "totalCount": 18884
      }
    },
    "status": "success"
  }
}

About the kijiji.ca API

The Kijiji.ca API exposes 7 endpoints for searching and retrieving classified ad data from Canada's largest classifieds platform. Use search_listings to query across all categories with keyword, location, and category filters, or use specialized endpoints like search_rental_listings and search_job_listings to target specific verticals. Listing detail responses include seller profile data, price in cents with currency, coordinates, and full image arrays.

Search and Browse Canadian Classifieds

The search_listings endpoint is the general-purpose entry point, accepting keywords, cat_id, loc_id, category_slug, and location_slug as optional filters. Results return up to 40 listings per page, each with id, title, description, price, location, url, imageUrls, categoryId, activationDate, and sortingDate. Pagination is handled through the page parameter, with the pagination object in the response exposing offset, limit, and totalCount for building full result sets.

Category- and Vertical-Specific Search

Three focused search endpoints cover common Kijiji verticals. search_rental_listings filters to apartments and condos, search_pet_listings supports sub-category slugs like cats-kittens or dogs-puppies, and search_job_listings targets job ads. All three accept keywords and a location slug (e.g. montreal, toronto), and return listing arrays with attributes alongside the standard fields. Use get_categories and get_locations to discover valid cat_id and loc_id integers for search_listings, or to enumerate province-level location IDs including parentId relationships.

Listing Detail and Seller Data

get_listing_detail accepts a full or relative listing URL and returns a richer response than the search endpoints. Key additions include a sellerProfile object with the seller's id, name, numberOfListings, userType, and profilePath, and a price object broken out into type, amount (in cents), and currency. Location data includes address and geographic coordinates, making it suitable for mapping applications. Image URLs are returned as an array in imageUrls.

Common use cases
  • Track rental price trends by location using price.amount and location fields from search_rental_listings across multiple Canadian cities.
  • Build a job board aggregator pulling Kijiji job listings filtered by keyword and location slug for specific trades or industries.
  • Monitor new listings in a category by polling search_listings with a cat_id and sorting by activationDate to detect recently posted ads.
  • Enrich a pet adoption platform by pulling search_pet_listings with sub-category slugs like cats-kittens or dogs-puppies by city.
  • Map classified ad density by extracting coordinates from get_listing_detail responses and plotting them geographically.
  • Profile high-volume sellers by comparing numberOfListings from the sellerProfile object returned by get_listing_detail.
  • Populate a category navigation UI using the children arrays from get_categories to display Kijiji's full hierarchy with seoUrl links.
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 Kijiji.ca have an official developer API?+
Kijiji does not publish a public developer API or official documentation for third-party data access. This Parse API provides structured access to the same listing data available on kijiji.ca.
What does get_listing_detail return that search_listings does not?+
get_listing_detail returns the full listing description, a sellerProfile object with seller name, userType, and numberOfListings, a structured price object broken into type/amount/currency, and a location object that includes street address and geographic coordinates. Search result objects include a shortened description and no seller profile data.
How do I find valid category and location IDs for filtering search_listings?+
Call get_categories to retrieve the full category tree, including each category's integer id, seoUrl, and children array. Call get_locations to get province and territory IDs with their parentId relationships. Pass the relevant integer values as cat_id and loc_id in search_listings.
Does the API cover Kijiji Autos or vehicle-specific listing fields?+
The API does not currently include a dedicated vehicle search endpoint or auto-specific attributes like make, model, year, or mileage. General listings in the automotive category are reachable via search_listings with an appropriate cat_id. You can fork this API on Parse and revise it to add a vehicle-specific endpoint that returns those attributes.
Is there a way to retrieve all listings from a specific seller?+
The current endpoints do not support querying by seller ID. The sellerProfile object in get_listing_detail exposes a profilePath, but there is no endpoint that fetches a seller's full listing history. You can fork this API on Parse and revise it to add an endpoint that retrieves listings by seller profile.
Page content last updated . Spec covers 7 endpoints from kijiji.ca.
Related APIs in MarketplaceSee all →
mouser.com API
mouser.com API
lazada.co.th API
Search for products and browse categories on Lazada Thailand to find detailed information like prices, descriptions, and availability. Discover items by keyword or category to compare specifications and make informed purchasing decisions.
woocommerce.com API
Browse and search thousands of WooCommerce extensions, themes, and business services from the official marketplace while accessing detailed product information, user reviews, and ratings. Integrate marketplace data, blog content, and documentation directly into your applications to help users discover and learn about WooCommerce solutions.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
Kijiji.ca API – Search Canadian Classifieds · Parse