AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Leboncoin

skill-agentproto-ts-leboncoin · by agentproto

>-

No reviews yet
0 installs
26 views
0.0% view→install

Install

$ agentstack add skill-agentproto-ts-leboncoin

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-agentproto-ts-leboncoin)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Leboncoin? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Leboncoin — recon plan (FR marketplace)

Not a social graph — a marketplace: the "nodes" are Ads and Sellers, the edges are seller↔listings, category/location facets, and messaging. Same recon method (find the API → auth from cookies → typed queries → playbooks).

Internal API: https://api.leboncoin.fr/... (the web app calls it directly):

  • Search: POST https://api.leboncoin.fr/finder/search — JSON body with

filters (category, location {region/department/city}, keywords, price range, attributes), limit, offset, sort_by. Returns ads[] + facets.

  • Ad detail: GET https://api.leboncoin.fr/api/adview/v1/public/

(or the listing page hydration) — price, description, images, attributes, seller.

  • Seller: the seller's other listings (search by owner/user_id),

pro/private, ratings.

  • Messaging: the conversation API (login required).

Auth (from the page)

  • api_key header — a public web key Leboncoin's JS sends on every call

(capture from a request header).

  • cookies ride same-origin, including the datadome cookie — Leboncoin is

behind DataDome anti-bot (like a WAF). Because we run in the REAL browsing session, the valid datadome cookie is already present → page-context fetch passes. (This is the gate, analogous to TikTok's signing.)

In-page fetch:

async body => {
  const r = await fetch("https://api.leboncoin.fr/finder/search", {
    method: "POST",
    headers: {
      "content-type": "application/json",
      api_key: "",
    },
    body: JSON.stringify(body),
  })
  return await r.json()
}

Entity model

Ad{ list_id, subject, body, price, category, location{city,zipcode,lat,lng}, images[], attributes[], owner:Seller, index_date } · Seller{ user_id, name, type: private|pro, siret?, no_of_ads, ratings? } · Category{ id, name }.

Recipes (read-first; writes gated)

  • Search listings: finder/search with filters → ads (price, location,

seller).

  • Ad detail: adview → full ad + seller + images.
  • Seller's listings: search filtered by the owner/user_id → their inventory

(the "persona" of a seller = their listings + pricing + activity).

  • Market scan / price graph: search a category+area → aggregate prices,

freshness, sellers → a market view (the marketplace analog of the social graph).

  • Discovery → outreach: find matching ads → (gated) message the seller.

Capture method

Open leboncoin.fr, run a search/open an ad → list_network_requests for api.leboncoin.fr → read the endpoint, the JSON body shape, and the api_key header. Confirm the datadome cookie is set (else solve the challenge in the UI first).

Gotchas

  • DataDome: bursts trigger a challenge/captcha. Keep volume low +

human-spaced; if a request 403s with a DataDome body, solve it once in the UI (the cookie refreshes) then resume.

  • Body filter schema is nuanced (category ids, location objects) — capture a

real UI search's body and parameterize from it.

  • Writes (message seller, post ad) need login + may add their own tokens —

capture live.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.