> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /leboncoin/sellers

> Get a leboncoin professional store by store ID, seller UUID or URL: name, SIREN/SIRET, activity sector, description, opening hours, website, address and coordinates, rating with review count, offered services and team.

**Price:** 20 credits

**⚠️ Common errors:** 412: Seller not found (well-formed but nonexistent store/seller reference)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/leboncoin/sellers
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/leboncoin/sellers:
    post:
      tags:
        - /leboncoin
      summary: /leboncoin/sellers
      description: >-
        Get a leboncoin professional store by store ID, seller UUID or URL:
        name, SIREN/SIRET, activity sector, description, opening hours, website,
        address and coordinates, rating with review count, offered services and
        team.


        **Price:** 20 credits


        **⚠️ Common errors:** 412: Seller not found (well-formed but nonexistent
        store/seller reference)
      operationId: __api_leboncoin_sellers_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LeboncoinSellersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LeboncoinSeller'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    LeboncoinSellersPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        seller:
          type: string
          minLength: 1
      type: object
      required:
        - seller
    LeboncoinSeller:
      properties:
        '@type':
          type: string
          default: LeboncoinSeller
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        user_id:
          anyOf:
            - type: string
            - type: 'null'
        siren:
          anyOf:
            - type: string
            - type: 'null'
        siret:
          anyOf:
            - type: string
            - type: 'null'
        activity_sector:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        active_since_date:
          anyOf:
            - type: string
            - type: 'null'
        slogan:
          anyOf:
            - type: string
            - type: 'null'
        website_url:
          anyOf:
            - type: string
            - type: 'null'
        opening_hours:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        cover:
          anyOf:
            - type: string
            - type: 'null'
        pictures:
          items:
            type: string
          type: array
          default: []
        address:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        zipcode:
          anyOf:
            - type: string
            - type: 'null'
        department:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        lat:
          anyOf:
            - type: number
            - type: 'null'
        lng:
          anyOf:
            - type: number
            - type: 'null'
        activity_zone:
          anyOf:
            - $ref: '#/components/schemas/LeboncoinSellerActivityZone'
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_url:
          anyOf:
            - type: string
            - type: 'null'
        prestations:
          items:
            type: string
          type: array
          default: []
        team:
          items:
            $ref: '#/components/schemas/LeboncoinSellerTeamMember'
          type: array
          default: []
        media:
          anyOf:
            - $ref: '#/components/schemas/LeboncoinSellerMedia'
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    LeboncoinSellerActivityZone:
      properties:
        '@type':
          type: string
          default: LeboncoinSellerActivityZone
        radius:
          anyOf:
            - type: integer
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        label:
          anyOf:
            - type: string
            - type: 'null'
        zipcode:
          anyOf:
            - type: string
            - type: 'null'
        department:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        lat:
          anyOf:
            - type: number
            - type: 'null'
        lng:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    LeboncoinSellerTeamMember:
      properties:
        '@type':
          type: string
          default: LeboncoinSellerTeamMember
        name:
          anyOf:
            - type: string
            - type: 'null'
        position:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    LeboncoinSellerMedia:
      properties:
        '@type':
          type: string
          default: LeboncoinSellerMedia
        name:
          anyOf:
            - type: string
            - type: 'null'
        link_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````