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

> Get a full Craigslist posting by ID (or posting URL): title, price, complete body text, all category-specific attributes, the decoded VIN spec sheet for vehicles, hiring company for jobs, images, location with full address and coordinates, and posting dates.

**Price:** 1 credit

**⚠️ 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
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:
    post:
      tags:
        - /craigslist
      summary: /craigslist/postings
      description: >-
        Get a full Craigslist posting by ID (or posting URL): title, price,
        complete body text, all category-specific attributes, the decoded VIN
        spec sheet for vehicles, hiring company for jobs, images, location with
        full address and coordinates, and posting dates.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Posting not found (well-formed but
        nonexistent, expired or removed posting ID)
      operationId: __api_craigslist_postings_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CraigslistPostingsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CraigslistPosting'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CraigslistPostingsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        posting:
          type: string
          minLength: 1
      type: object
      required:
        - posting
    CraigslistPosting:
      properties:
        '@type':
          type: string
          default: CraigslistPosting
        id:
          type: string
        posting_id:
          type: integer
        posting_title:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        section:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: integer
            - type: 'null'
        category_alias:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_string:
          anyOf:
            - type: string
            - type: 'null'
        body_html:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        has_contact_info:
          type: boolean
          default: false
        has_other_postings:
          type: boolean
          default: false
        is_open_to_recruiters:
          type: boolean
          default: false
        company:
          anyOf:
            - type: string
            - type: 'null'
        repost_of_id:
          anyOf:
            - type: integer
            - type: 'null'
        location:
          anyOf:
            - $ref: '#/components/schemas/CraigslistPostingDetailLocation'
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        image_count:
          type: integer
          default: 0
        attributes:
          items:
            $ref: '#/components/schemas/CraigslistPostingAttribute'
          type: array
          default: []
        vin_specs:
          items:
            $ref: '#/components/schemas/CraigslistPostingVinSpec'
          type: array
          default: []
      type: object
      required:
        - id
        - posting_id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CraigslistPostingDetailLocation:
      properties:
        '@type':
          type: string
          default: CraigslistPostingDetailLocation
        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'
        area_code:
          anyOf:
            - type: string
            - type: 'null'
        area:
          anyOf:
            - type: string
            - type: 'null'
        subarea:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        full_address:
          anyOf:
            - type: string
            - type: 'null'
        location_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    CraigslistPostingAttribute:
      properties:
        '@type':
          type: string
          default: CraigslistPostingAttribute
        key:
          type: string
        label:
          anyOf:
            - type: string
            - type: 'null'
        value:
          anyOf:
            - type: string
            - type: 'null'
        special_type:
          anyOf:
            - type: string
            - type: 'null'
        search_filters:
          additionalProperties:
            type: string
          type: object
          default: {}
      type: object
      required:
        - key
    CraigslistPostingVinSpec:
      properties:
        '@type':
          type: string
          default: CraigslistPostingVinSpec
        group:
          type: string
        key:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - group
        - key
    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

````