# Selency Vintage & Design Furniture Scraper — Prix, Designers (`cyrilfaia/selency-fr-scraper`) Actor

Extrait les produits de selency.fr (mobilier vintage et design, luminaires, déco, art de la table) : prix, remise, designer, style, matière, couleur, dimensions, département, vendeur pro et note, livraison. Filtres catégorie, style, matière, prix, dimensions.

- **URL**: https://apify.com/cyrilfaia/selency-fr-scraper.md
- **Developed by:** [Cyril Faia](https://apify.com/cyrilfaia) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $12.00 / 1,000 products

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Selency Vintage & Design Furniture Scraper — Prix, Designers

Structured access to **selency.fr**, France's leading marketplace for vintage and design furniture, lighting, decoration and tableware (330 000+ live listings from professional dealers and private sellers). Every row carries **current price, crossed-out price and discount, trade price for professionals, designer, style, material, colour, dimensions and weight, category hierarchy, seller type and rating, département of origin, delivery options, photo and public URL**.

Search by keyword, category, style, material, colour, designer, département, price and size ranges; keep only professional or only private sellers; keep only discounted items; sort by relevance or price. Detail mode adds the full description, every photo and the item condition.

### Who uses it

- **Dealers, decorators and antique shops**: sourcing by designer, style and size; price benchmarking before buying or listing.
- **Resellers and arbitrage**: discounted items, private-seller listings, negotiable pieces, department-level sourcing.
- **Market research and auction houses**: price bands per designer or style, volume by category and region.
- **Interior design and furniture makers**: what sells, at what price, in which materials and dimensions.
- **AI agents**: "find a teak sideboard under 400 € near Bordeaux, seller rated 4.8+".

### Output example

```json
{
  "id": "e603fce009c6321693531036afb1bc78",
  "sku": "VX5BU9YU",
  "url": "https://www.selency.fr/p/VX5BU9YU/meuble-2-portes-coulissantes-esprit-f-knoll-placage-teck-veine",
  "title": "Meuble 2 portes coulissantes esprit F.Knoll, placage teck veiné.",
  "price": 279,
  "originalPrice": 329,
  "proPrice": 279,
  "discountPercent": 15,
  "isNegotiable": false,
  "category": "Meubler",
  "subcategory": "Meuble de rangement",
  "categoryLeaf": "Buffet",
  "categorySlugs": ["meubles", "meuble-de-rangement", "buffet"],
  "designer": null,
  "style": "moderniste / bauhaus",
  "material": "teck",
  "color": "bois",
  "widthCm": 120, "heightCm": 50, "depthCm": 45, "weightKg": 60,
  "quantity": 1,
  "isHandmade": false,
  "isAuthenticated": false,
  "departmentCode": "22",
  "department": "Côtes d'Armor",
  "country": "FR",
  "sellerType": "professional",
  "sellerName": "…",
  "sellerRating": 5,
  "sellerReviews": 186,
  "delivery": { "bySelency": true, "bySeller": false, "cocolis": true, "colissimo": false, "mondialRelay": false },
  "image": "https://images.selency.com/c69fadb6-….jpg",
  "publishedAt": "2026-09-01T10:52:36.000Z",
  "scrapedAt": "2026-09-17T15:20:04.000Z"
}
```

With `fetchDetails: true`: `description`, `images` (all photos), `condition`, `brand`.

### Input

| Field | Type | Description |
|---|---|---|
| `query` | string | Free text (designer, model, material…). |
| `categories` | string\[] | Category slugs at any level: `meubles`, `chaises`, `eclairer`, `decorer`, `art-de-la-table`, `meuble-de-rangement`, `buffet`, `fauteuil`, … |
| `styles` | string\[] | `scandinavian`, `industrial`, `mid-century`, `modernist-bauhaus`, `seventies`, `art-deco`, … French words are accepted (`scandinave`, `industriel`). |
| `materials` | string\[] | `teak`, `oak`, `walnut`, `rattan-and-wicker`, `metal`, `brass`, `marble`, … French words are accepted (`teck`, `chêne`, `rotin`). |
| `colors` | string\[] | `wooden`, `white`, `black`, `green`, … French words are accepted (`bois`, `blanc`). |
| `designers` | string\[] | Exact designer names as shown on Selency. |
| `departments` | string\[] | Département number or name of the seller. |
| `minPrice`, `maxPrice` | integer | EUR, on the current price. |
| `minWidth`, `maxWidth`, `minHeight`, `maxHeight` | integer | cm. |
| `sellerType` | `all` / `pro` / `individual` | |
| `discountedOnly` | boolean | |
| `sort` | `relevance` / `priceAsc` / `priceDesc` | |
| `maxItems` | integer | Default 300, 0 = unlimited. |
| `fetchDetails` | boolean | Default false. |

Examples:

```json
{ "categories": ["fauteuil"], "styles": ["scandinavian"], "materials": ["teak"], "maxPrice": 600, "sellerType": "pro", "sort": "priceAsc", "maxItems": 500 }
```

```json
{ "designers": ["Pierre Paulin"], "fetchDetails": true }
```

```json
{ "departments": ["13", "84", "30"], "discountedOnly": true, "maxItems": 1000 }
```

### Pricing

Pay per event: one **product** event per listing row, one **product detail** event per enriched page, plus a small **Actor start** fee. Reading the catalogue index directly keeps runs fast and cheap; there is no proxy overhead.

### Notes

- Very large selections (more than 10 000 items for one filter set) are automatically split by sub-category.
- Private sellers are never named or identified; professional shops are. Buyer-side data is never touched.
- Selency's catalogue and photos belong to Selency and its sellers: use the output for research, sourcing and monitoring in compliance with the site's terms.

# Actor input Schema

## `query` (type: `string`):

Texte (ex. « fauteuil Knoll », « lampe Guariche », « buffet scandinave »). Optionnel.

## `categories` (type: `array`):

Slugs de catégorie Selency, tous niveaux (ex. « meubles », « chaises », « eclairer », « meuble-de-rangement », « buffet », « fauteuil »).

## `styles` (type: `array`):

Ex. « scandinave », « industriel », « modernist-bauhaus », « seventies », « art-deco ».

## `materials` (type: `array`):

Ex. « teak », « oak », « rattan », « metal », « marble ».

## `colors` (type: `array`):

Ex. « wooden », « white », « black », « green ».

## `designers` (type: `array`):

Nom exact tel qu'affiché sur Selency (ex. « Pierre Paulin », « Charles & Ray Eames »).

## `departments` (type: `array`):

Numéro ou nom de département du vendeur (ex. « 75 », « 13 », « Gironde »).

## `minPrice` (type: `integer`):

Prix courant minimum.

## `maxPrice` (type: `integer`):

Prix courant maximum.

## `minWidth` (type: `integer`):

Largeur minimale.

## `maxWidth` (type: `integer`):

Largeur maximale.

## `minHeight` (type: `integer`):

Hauteur minimale.

## `maxHeight` (type: `integer`):

Hauteur maximale.

## `sellerType` (type: `string`):

Tous, professionnels seulement, ou particuliers seulement.

## `discountedOnly` (type: `boolean`):

Ne garder que les produits en promotion.

## `sort` (type: `string`):

Ordre des résultats.

## `maxItems` (type: `integer`):

0 = illimité (330 000+ produits en ligne).

## `fetchDetails` (type: `boolean`):

Description complète, toutes les photos, état, marque. Une requête par produit, facturée par fiche.

## `proxyConfiguration` (type: `object`):

Proxy Apify (datacenter suffit).

## Actor input object example

```json
{
  "categories": [],
  "styles": [],
  "materials": [],
  "colors": [],
  "designers": [],
  "departments": [],
  "sellerType": "all",
  "discountedOnly": false,
  "sort": "relevance",
  "maxItems": 300,
  "fetchDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `products` (type: `string`):

One item per product listing.

## `productsCsv` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "categories": [],
    "styles": [],
    "materials": [],
    "colors": [],
    "designers": [],
    "departments": [],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("cyrilfaia/selency-fr-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "categories": [],
    "styles": [],
    "materials": [],
    "colors": [],
    "designers": [],
    "departments": [],
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("cyrilfaia/selency-fr-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "categories": [],
  "styles": [],
  "materials": [],
  "colors": [],
  "designers": [],
  "departments": [],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call cyrilfaia/selency-fr-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,cyrilfaia/selency-fr-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/m4k5lv8Vj6yvnrwml/builds/1AQeXvPVxjXvaq4sa/openapi.json
