> ## 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.

# /seloger/listings

> Get full SeLoger real estate listing details by listing id (or listing URL): title, property type, transaction type, price and price per m², living area, number of rooms and bedrooms, floor, energy (DPE) and greenhouse gas (GES) classes, address (city, zip code, district, region), nearby transport lines, headline and full description, energy features, co-ownership facts, grouped characteristics, photos, floorplans, virtual tours and videos, and the listing agency.

**Price:** 10 credits

**⚠️ Common errors:** 412: Listing not found (well-formed but nonexistent or expired listing id)



## OpenAPI

````yaml /openapi/real-estate.json post /api/seloger/listings
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/seloger/listings:
    post:
      tags:
        - /seloger
      summary: /seloger/listings
      description: >-
        Get full SeLoger real estate listing details by listing id (or listing
        URL): title, property type, transaction type, price and price per m²,
        living area, number of rooms and bedrooms, floor, energy (DPE) and
        greenhouse gas (GES) classes, address (city, zip code, district,
        region), nearby transport lines, headline and full description, energy
        features, co-ownership facts, grouped characteristics, photos,
        floorplans, virtual tours and videos, and the listing agency.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Listing not found (well-formed but
        nonexistent or expired listing id)
      operationId: __api_seloger_listings_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SelogerListingsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SelogerListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SelogerListingsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        listing:
          type: string
          minLength: 1
      type: object
      required:
        - listing
    SelogerListing:
      properties:
        '@type':
          type: string
          default: SelogerListing
        id:
          type: string
        global_id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        transaction_type:
          anyOf:
            - type: string
            - type: 'null'
        is_new_build:
          anyOf:
            - type: boolean
            - type: 'null'
        is_active:
          anyOf:
            - type: boolean
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
        headline:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        price_per_m2:
          anyOf:
            - type: number
            - type: 'null'
        area_m2:
          anyOf:
            - type: number
            - type: 'null'
        room_count:
          anyOf:
            - type: integer
            - type: 'null'
        bedroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        floor:
          anyOf:
            - type: string
            - type: 'null'
        energy_class:
          anyOf:
            - type: string
            - type: 'null'
        gas_emission_class:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/SelogerListingAddress'
            - type: 'null'
        transport:
          items:
            $ref: '#/components/schemas/SelogerListingTransport'
          type: array
          default: []
        keyfacts:
          items:
            type: string
          type: array
          default: []
        tags:
          anyOf:
            - $ref: '#/components/schemas/SelogerListingTags'
            - type: 'null'
        energy_features:
          items:
            $ref: '#/components/schemas/SelogerListingFeature'
          type: array
          default: []
        co_ownership:
          items:
            $ref: '#/components/schemas/SelogerListingFeature'
          type: array
          default: []
        feature_sections:
          items:
            $ref: '#/components/schemas/SelogerListingFeatureSection'
          type: array
          default: []
        images:
          items:
            type: string
          type: array
          default: []
        floorplans:
          items:
            type: string
          type: array
          default: []
        virtual_tours:
          items:
            $ref: '#/components/schemas/SelogerListingMedia'
          type: array
          default: []
        videos:
          items:
            $ref: '#/components/schemas/SelogerListingMedia'
          type: array
          default: []
        agency:
          anyOf:
            - $ref: '#/components/schemas/SelogerListingAgency'
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SelogerListingAddress:
      properties:
        '@type':
          type: string
          default: SelogerListingAddress
        city:
          anyOf:
            - type: string
            - type: 'null'
        zip_code:
          anyOf:
            - type: string
            - type: 'null'
        district:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SelogerListingTransport:
      properties:
        '@type':
          type: string
          default: SelogerListingTransport
        type:
          anyOf:
            - type: string
            - type: 'null'
        lines:
          items:
            type: string
          type: array
          default: []
      type: object
    SelogerListingTags:
      properties:
        '@type':
          type: string
          default: SelogerListingTags
        is_new:
          anyOf:
            - type: boolean
            - type: 'null'
        is_exclusive:
          anyOf:
            - type: boolean
            - type: 'null'
        has_3d_visit:
          anyOf:
            - type: boolean
            - type: 'null'
        has_brokerage_fee:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    SelogerListingFeature:
      properties:
        '@type':
          type: string
          default: SelogerListingFeature
        label:
          anyOf:
            - type: string
            - type: 'null'
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SelogerListingFeatureSection:
      properties:
        '@type':
          type: string
          default: SelogerListingFeatureSection
        features:
          items:
            $ref: '#/components/schemas/SelogerListingFeature'
          type: array
          default: []
      type: object
    SelogerListingMedia:
      properties:
        '@type':
          type: string
          default: SelogerListingMedia
        url:
          anyOf:
            - type: string
            - type: 'null'
        preview_image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SelogerListingAgency:
      properties:
        '@type':
          type: string
          default: SelogerListingAgency
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        is_private_owner:
          anyOf:
            - type: boolean
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        phone:
          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

````