Discover/3atir API
live

3atir API3atir.co

Access 3atir.co's Saudi perfume catalog via API. Retrieve products, best sellers, categories, and brands with prices, availability, and SKUs.

This API takes change requests — .
Endpoint health
verified 3h ago
list_products
get_best_sellers
list_categories
list_brands
4/4 passing latest checkself-healing
Endpoints
4
Updated
3h ago

What is the 3atir API?

The 3atir.co API provides structured access to a Saudi perfume e-commerce store through 4 endpoints covering the full product catalog, best sellers, categories, and brands. The list_products endpoint returns paginated product records including price, sale status, SKU, availability, and image URL. All endpoints return Arabic-market product data from 3atir (عاطر للعطور الأصلية والنادرة), a Salla-powered specialty retailer of authentic and rare fragrances.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination.
Number of products per page. Maximum 50.
api.parse.bot/scraper/f57997e9-da85-4f25-86a5-40cac2fc1a8d/<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/f57997e9-da85-4f25-86a5-40cac2fc1a8d/list_products?page=1&per_page=5' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalmissing one? ·

List all products in the store with cursor-based pagination. Returns product details including name, price, availability, category, and brand. Products are returned in the store's default order.

Input
ParamTypeDescription
pageintegerPage number for pagination.
per_pageintegerNumber of products per page. Maximum 50.
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "has_next": "boolean indicating if more pages exist",
    "products": "array of product objects with id, name, price, regular_price, sale_price, currency, is_available, is_on_sale, sku, url, image_url, category, brand, brand_id"
  },
  "sample": {
    "data": {
      "page": 1,
      "has_next": true,
      "products": [
        {
          "id": "2131569661",
          "sku": "533179",
          "url": "https://3atir.co/en/عطر-lacoste-eau-de-lacoste-l1212-jaune-من-لاكوست-للرجال-او-دو-تواليت-بدون-كرتون/p2131569661",
          "name": "عطر Lacoste Eau De Lacoste L.12.12 Jaune من لاكوست للرجال - او دو تواليت - بدون كرتون",
          "brand": "Lacoste",
          "price": 439.94,
          "brand_id": "1219272246",
          "category": "Men's Perfumes",
          "currency": "SAR",
          "image_url": "https://cdn.salla.sa/ypRXO/eLuA0ahKiOBQnS31MCtSZk7TZimsh6Oj5NrRSrbQ.jpg",
          "is_on_sale": false,
          "sale_price": 0,
          "is_available": false,
          "regular_price": 439.94
        }
      ]
    },
    "status": "success"
  }
}

About the 3atir API

Product Catalog and Pagination

The list_products endpoint returns an array of product objects, each containing id, name, price, regular_price, sale_price, currency, is_available, is_on_sale, sku, url, and image_url. Pagination is controlled with the page and per_page parameters (max 50 per page), and the has_next boolean indicates whether additional pages exist. Products are returned in the store's default sort order.

Best Sellers and Curated Collections

The get_best_sellers endpoint returns the store's homepage-curated top sellers with no input parameters required. It returns the same product object shape as list_products — including is_on_sale, sale_price, and is_available fields — alongside a count field indicating how many best sellers are returned. This reflects the store owner's manual curation rather than a computed sales rank.

Categories and Brands

The list_categories endpoint returns all product categories with id, name, url, and a sub_categories array for nested taxonomies. Navigation items such as offer pages, brand indexes, and blog links are excluded, so the results reflect the actual product taxonomy. The list_brands endpoint supports the same page and per_page pagination as list_products, returning brand id, name, logo, and description fields — useful for building brand-filtered browsing experiences or populating a brand directory.

Reliability & maintenanceVerified

The 3atir API is a managed, monitored endpoint for 3atir.co — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when 3atir.co 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 3atir.co 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
3h ago
Latest check
4/4 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 changes and sale status across the 3atir.co perfume catalog using regular_price and sale_price fields.
  • Build a brand directory for Middle Eastern niche perfumes using list_brands logo and description data.
  • Monitor which products are marked is_available: false to detect out-of-stock fragrances.
  • Display a curated 'top sellers' section in a fragrance discovery app using get_best_sellers.
  • Map the store's category taxonomy including sub-categories for building faceted navigation.
  • Aggregate SKU and URL data from list_products for cross-store fragrance price comparison tools.
  • Identify discounted fragrances by filtering on is_on_sale across the full paginated product catalog.
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 3atir.co have an official developer API?+
3atir.co runs on the Salla e-commerce platform. Salla does offer a developer API (developer.salla.dev), but it requires merchant authentication and is intended for store owners, not third-party data consumers. This Parse API provides read access to 3atir's public catalog without requiring merchant credentials.
What does `get_best_sellers` return, and how is 'best seller' defined?+
The endpoint returns the products the store owner has manually featured as top sellers on the homepage. It is not a computed metric derived from sales volume or order counts — it reflects editorial curation. The response includes the same fields as list_products (price, availability, SKU, etc.) plus a count field.
Does `list_products` support filtering by category or brand?+
The current list_products endpoint returns all products in the store's default order and supports only page and per_page parameters. Filtering by category ID or brand ID is not currently available. The API covers full catalog retrieval and pagination. You can fork it on Parse and revise to add a category_id or brand_id filter parameter.
Does the API return customer reviews or ratings for products?+
Not currently. The product objects include price, availability, SKU, and image data but do not expose review counts or star ratings. You can fork this API on Parse and revise it to add a reviews endpoint if that data is available on the product pages.
Are product descriptions or fragrance notes included in the product objects?+
The documented list_products and get_best_sellers responses do not include a description or notes field — the product object covers identifiers, pricing, availability, SKU, and media. You can fork this API on Parse and revise it to pull extended product detail fields from individual product pages.
Page content last updated . Spec covers 4 endpoints from 3atir.co.
Related APIs in EcommerceSee all →
alsharqiyah.com API
Browse and explore Alsharqiyah Oud's complete catalog of premium Saudi Arabian perfumes and oud products, viewing categories, product listings, and detailed information for each item. Get instant access to product details to compare options and find exactly what you're looking for from this Salla-based store.
selfridges.com API
Search and browse Selfridges fragrance products by keyword, category, or brand. Returns detailed product data including fragrance notes, scent tags, pricing, sizing, and product descriptions.
fragrantica.com API
Search and discover perfumes with detailed information including fragrance notes, accords, and ratings, while exploring curated brands and note collections. Browse Fragrantica's comprehensive perfume catalog to find scents based on specific characteristics and community feedback.
sephora.com API
Search and browse Sephora's product catalog to find detailed information about beauty items, including specifications, customer reviews, Q&A discussions, pricing, and real-time availability. Filter products by category or brand, and access comprehensive brand listings to discover exactly what you're looking for.
sabon.com.hk API
Browse Sabon Hong Kong's Eau de Sabon perfume collection and view detailed information about fragrance notes and ingredients for each scent. Quickly find and compare perfumes to discover your ideal fragrance profile.
natura.com.br API
Browse Natura's complete product catalog, search for items by category or keyword, and retrieve detailed product information including prices, descriptions, ingredients, and customer reviews. Supports category navigation, faceted filtering, and paginated search results.
amiparis.com API
Browse Ami Paris products, collections, and search their catalog to find items by name or discover new arrivals and signature collections. Access detailed product information including variants, images, and pricing across all available collections.
alphaomegapeptide.com API
Access data from alphaomegapeptide.com.