Discover/Jiji API
live

Jiji APIjiji.ng

Search and retrieve listings from Jiji.ng, Nigeria's largest classifieds platform. Get prices, categories, regions, conditions, and full listing details via 2 endpoints.

This API takes change requests — .
Endpoint health
verified 2h ago
search_listings
get_listing
2/2 passing latest checkself-healing
Endpoints
2
Updated
3h ago

What is the Jiji API?

The Jiji.ng API provides access to Nigeria's largest online classifieds marketplace through 2 endpoints. Use search_listings to query listings by keyword, category slug, price range, and page, or use get_listing to pull full details on a single item — including description, images, view count, favorites, and all product attributes — identified by a GUID returned from search results.

Try it
Page number for pagination (1-based).
Free-text search query (e.g. 'iphone', 'samsung phone'). Omit to browse by category.
Maximum price filter in Naira (e.g. '500000').
Minimum price filter in Naira (e.g. '50000').
Category slug to filter listings (e.g. 'mobile-phones', 'computers-and-laptops'). Obtainable from search results' category_slug field.
api.parse.bot/scraper/3c1966cf-1249-4b20-932b-376b70c04ea2/<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/3c1966cf-1249-4b20-932b-376b70c04ea2/search_listings?page=1&query=iphone&price_max=500000&price_min=50000&category_slug=mobile-phones' \
  -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 jiji-ng-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.

"""Walkthrough: Jiji Nigeria SDK — bounded, re-runnable; every call capped."""
from parse_apis.jiji_ng_api import Jiji, ListingNotFound

client = Jiji()

# Search for iphone listings with price constraints
for listing in client.listings.search(query="iphone", price_min="100000", limit=3):
    print(listing.title, listing.price_formatted, listing.region)

# Drill-down: take one result and fetch full details
item = client.listings.search(query="samsung phone", limit=1).first()
try:
    full = item.details()
    print(full.title, full.price_formatted, full.description[:80])
except ListingNotFound as e:
    print("listing gone:", e.listing_id)

print("exercised: listings.search, ListingSummary.details")
All endpoints · 2 totalmissing one? ·

Search Jiji.ng marketplace listings. Returns paginated results with prices, categories, regions, and condition. When no query is provided but a category_slug is given, lists all items in that category. Results are ordered by relevance by default. Each listing carries a GUID usable with the detail endpoint.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
querystringFree-text search query (e.g. 'iphone', 'samsung phone'). Omit to browse by category.
price_maxstringMaximum price filter in Naira (e.g. '500000').
price_minstringMinimum price filter in Naira (e.g. '50000').
category_slugstringCategory slug to filter listings (e.g. 'mobile-phones', 'computers-and-laptops'). Obtainable from search results' category_slug field.
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "listings": "array of listing summaries with id, title, price, region, category, condition",
    "total_count": "integer total number of matching listings"
  },
  "sample": {
    "data": {
      "page": 1,
      "listings": [
        {
          "id": "nJus0i5BbzFQchV0ZxuCnC58",
          "url": "/isolo/cell-phones-tablets-accessories/iphone-screen-guard-for-iphone-6-6s-7-8-nJus0i5BbzFQchV0ZxuCnC58.html",
          "price": 3000,
          "title": "iPhone Screen Guard for iPhone 6/6s/7/8",
          "region": "Lagos State, Isolo",
          "category": "Accessories for Phones & Tablets",
          "condition": "Brand New",
          "image_url": "https://pictures-nigeria.jijistatic.net/201565729_MzAwLTMwMC1lMjVmZjYxNDYw.jpg",
          "category_slug": "cell-phones-tablets-accessories",
          "price_formatted": "₦ 3,000"
        }
      ],
      "total_count": 18436
    },
    "status": "success"
  }
}

About the Jiji API

Searching Listings

The search_listings endpoint accepts a free-text query (e.g., 'iphone', 'toyota corolla'), an optional category_slug (e.g., 'mobile-phones', 'computers-and-laptops'), and Naira-denominated price filters via price_min and price_max. Pagination is 1-based via the page parameter. Each call returns a listings array of summary objects — each carrying an id (GUID), title, price, region, category, and condition — plus total_count for the full result set and the current page number. If you omit query and supply only a category_slug, the endpoint browses all items in that category ordered by relevance.

Retrieving Full Listing Details

The get_listing endpoint takes a single required input: listing_id, the GUID from a search_listings result. It returns the complete listing record: title, price in Naira (integer), region, category, status, url, views, favorites, an images array of image URLs, and the full set of seller-provided product attributes and description. This makes it the right call when you need data beyond the search summary — for example, the images or exact item specifications.

Coverage and Scope

Listings span the full range of Jiji.ng categories: electronics, vehicles, real estate, fashion, services, and more. Regional data reflects Nigeria's states and cities as sellers enter them. Prices are in Naira as listed by sellers and are not normalized or verified. The condition field in search results distinguishes new from used goods where sellers have specified it.

Reliability & maintenanceVerified

The Jiji API is a managed, monitored endpoint for jiji.ng — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when jiji.ng 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 jiji.ng 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
2h 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 Naira price trends for a specific product category (e.g., used smartphones) by polling search_listings with price_min/price_max filters over time.
  • Build a price comparison tool for Nigerian consumers by aggregating search_listings results across multiple category slugs.
  • Populate a regional market research dashboard using the region field returned in listing summaries.
  • Monitor new listings for a specific keyword by checking total_count and first-page results from search_listings on a schedule.
  • Extract product images and full descriptions via get_listing to build a curated product catalog from classifieds data.
  • Filter listings by condition (new vs. used) and price band to surface deal alerts for specific goods.
  • Analyze category depth by browsing category_slug without a query to count active listings per category using total_count.
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 Jiji.ng have an official developer API?+
Jiji.ng does not publish a public developer API or official API documentation. There is no registered developer program or API portal available at jiji.ng.
What does `get_listing` return beyond what `search_listings` provides?+
search_listings returns summary fields: id, title, price, region, category, and condition. get_listing adds the full listing description, all seller-specified product attributes, an images array, views (view count), favorites count, status, and the url path. If you only need to scan or filter listings, search_listings is sufficient; use get_listing when you need the complete record.
How does pagination work in `search_listings`?+
The page parameter is 1-based. Each response includes the current page and a total_count of matching listings, which lets you calculate the number of pages. There is no explicit page-size parameter exposed; the number of results per page is fixed by the endpoint.
Does the API expose seller contact information or chat history?+
No seller contact details (phone numbers, WhatsApp links) or messaging history are returned by either endpoint. The API covers listing metadata and content fields. You can fork this API on Parse and revise it to add a seller-detail endpoint if that data is accessible on the listing page.
Are saved search alerts or listing change notifications available?+
Not currently. The API returns current listing data at request time via search_listings and get_listing; there is no webhook or push-notification mechanism for listing changes. You can fork this API on Parse and revise it to add a polling-based change-detection endpoint.
Page content last updated . Spec covers 2 endpoints from jiji.ng.
Related APIs in MarketplaceSee all →
jumia.com.ng API
Search and browse thousands of products on Jumia Nigeria, including electronics, appliances, fashion, and more. Get real-time access to pricing, specifications, ratings, and availability across Jumia's full catalog to find and compare products.
kijiji.ca API
Search and browse Kijiji listings across categories like rentals, pets, and jobs, while viewing detailed information about specific ads along with available locations and categories. Filter through thousands of Canadian classifieds to find exactly what you're looking for in your area.
jumia.com.gh API
Browse and search thousands of products from Jumia Ghana's catalog, view detailed product information, and explore items across different categories. Get real-time search suggestions and instantly access pricing, descriptions, and availability for any item on Ghana's leading e-commerce platform.
jo.opensooq.com API
Search and browse classified listings on OpenSooq Jordan, discover product categories, and view detailed information about specific items for sale. Access real-time marketplace data to find exactly what you're looking for across multiple categories.
olx.ba API
Search and browse listings on OLX.ba across all categories. Retrieve listing names, prices, categories, and URLs, or drill into individual listings for detailed attributes such as location, address, area, floor, condition, and seller information. Includes dedicated support for apartment listings.
quikr.com API
Search for used products across Quikr by keyword and category with location filtering, then retrieve detailed listing information including prices, descriptions, and seller details. Access product categories and search suggestions to discover exactly what you're looking for in your area.
craigslist.org API
Search Craigslist listings across any region and instantly access structured data including prices, locations, coordinates, images, and direct URLs. Find exactly what you're looking for with organized sale listings that are easy to filter and analyze.
njuskalo.hr API
Search and retrieve structured listings for cars, real estate, and electronics from Njuskalo.hr in real-time. Access detailed product information across these categories to find exactly what you're looking for.