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

# /yahoo/realestate/projects

> Get a Yahoo! Real Estate Japan (Yahoo!不動産) new-build / pre-sale condo project (新築マンション) by id or project URL: name, image, address, nearest stations, price and most-common price band, layout, area, total units, units for sale, structure, land area, completion date, move-in timing, management type and company, construction company, developer, management fee, repair reserve fee and sales schedule.

**Price:** 20 credits

**⚠️ Common errors:** 412: Project not found (well-formed id but the project page does not exist)



## OpenAPI

````yaml /openapi/real-estate.json post /api/yahoo/realestate/projects
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/yahoo/realestate/projects:
    post:
      tags:
        - /yahoo/realestate
      summary: /yahoo/realestate/projects
      description: >-
        Get a Yahoo! Real Estate Japan (Yahoo!不動産) new-build / pre-sale condo
        project (新築マンション) by id or project URL: name, image, address, nearest
        stations, price and most-common price band, layout, area, total units,
        units for sale, structure, land area, completion date, move-in timing,
        management type and company, construction company, developer, management
        fee, repair reserve fee and sales schedule.


        **Price:** 20 credits


        **⚠️ Common errors:** 412: Project not found (well-formed id but the
        project page does not exist)
      operationId: __api_yahoo_realestate_projects_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YahooRealestateProjectsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YahooRealestateProject'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YahooRealestateProjectsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        project:
          type: string
          minLength: 1
      type: object
      required:
        - project
    YahooRealestateProject:
      properties:
        '@type':
          type: string
          default: YahooRealestateProject
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        stations:
          items:
            $ref: '#/components/schemas/YahooRealestateStation'
          type: array
          default: []
        price:
          anyOf:
            - type: string
            - type: 'null'
        price_band:
          anyOf:
            - type: string
            - type: 'null'
        layout:
          anyOf:
            - type: string
            - type: 'null'
        area:
          anyOf:
            - type: string
            - type: 'null'
        total_units:
          anyOf:
            - type: integer
            - type: 'null'
        units_for_sale:
          anyOf:
            - type: integer
            - type: 'null'
        structure:
          anyOf:
            - type: string
            - type: 'null'
        land_area:
          anyOf:
            - type: number
            - type: 'null'
        completion_date:
          anyOf:
            - type: string
            - type: 'null'
        move_in:
          anyOf:
            - type: string
            - type: 'null'
        management_type:
          anyOf:
            - type: string
            - type: 'null'
        management_company:
          anyOf:
            - type: string
            - type: 'null'
        construction_company:
          anyOf:
            - type: string
            - type: 'null'
        developer:
          anyOf:
            - type: string
            - type: 'null'
        management_fee:
          anyOf:
            - type: string
            - type: 'null'
        repair_reserve_fee:
          anyOf:
            - type: string
            - type: 'null'
        sale_schedule:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YahooRealestateStation:
      properties:
        '@type':
          type: string
          default: YahooRealestateStation
        line:
          anyOf:
            - type: string
            - type: 'null'
        station:
          anyOf:
            - type: string
            - type: 'null'
        walk_min:
          anyOf:
            - type: integer
            - 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

````