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

# /craigslist/postings/seller

> List every Craigslist posting published by the seller of a given posting: the full inventory of a dealer, landlord or shop, with title, price, location, images and posting date for each result.

**Price:** 10 credits per 360 results

**⚠️ Common errors:** 412: Posting not found (well-formed but nonexistent, expired or removed posting ID)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/craigslist/postings/seller
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/craigslist/postings/seller:
    post:
      tags:
        - /craigslist
      summary: /craigslist/postings/seller
      description: >-
        List every Craigslist posting published by the seller of a given
        posting: the full inventory of a dealer, landlord or shop, with title,
        price, location, images and posting date for each result.


        **Price:** 10 credits per 360 results


        **⚠️ Common errors:** 412: Posting not found (well-formed but
        nonexistent, expired or removed posting ID)
      operationId: __api_craigslist_postings_seller_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CraigslistPostingsSellerPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CraigslistPostingCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CraigslistPostingsSellerPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        posting:
          type: string
          minLength: 1
        count:
          type: integer
          maximum: 10000
          minimum: 1
        category:
          anyOf:
            - type: string
            - type: 'null'
        sort:
          $ref: '#/components/schemas/CraigslistSort'
          default: newest
      type: object
      required:
        - posting
        - count
    CraigslistPostingCard:
      properties:
        '@type':
          type: string
          default: CraigslistPostingCard
        id:
          type: string
        posting_id:
          type: integer
        posting_title:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_string:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        monthly_payment_string:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        category_id:
          anyOf:
            - type: integer
            - type: 'null'
        category_alias:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - $ref: '#/components/schemas/CraigslistPostingLocation'
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        image_count:
          type: integer
          default: 0
        bedrooms:
          anyOf:
            - type: number
            - type: 'null'
        sqft:
          anyOf:
            - type: number
            - type: 'null'
        auto_miles:
          anyOf:
            - type: number
            - type: 'null'
        salary:
          anyOf:
            - type: string
            - type: 'null'
        company:
          anyOf:
            - type: string
            - type: 'null'
        job_title:
          anyOf:
            - type: string
            - type: 'null'
        start_date:
          anyOf:
            - type: string
            - type: 'null'
        end_date:
          anyOf:
            - type: string
            - type: 'null'
        open_house_dates:
          items:
            type: string
          type: array
          default: []
        event_dates:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - posting_id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CraigslistSort:
      type: string
      enum:
        - newest
        - oldest
        - price_asc
        - price_desc
        - distance
        - relevance
        - upcoming
    CraigslistPostingLocation:
      properties:
        '@type':
          type: string
          default: CraigslistPostingLocation
        area_id:
          anyOf:
            - type: integer
            - type: 'null'
        area_alias:
          anyOf:
            - type: string
            - type: 'null'
        subarea_alias:
          anyOf:
            - type: string
            - type: 'null'
        neighborhood:
          anyOf:
            - type: string
            - type: 'null'
        lat:
          anyOf:
            - type: number
            - type: 'null'
        lon:
          anyOf:
            - type: number
            - 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

````