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

# Get Auto Complete

> Get Auto Complete



## OpenAPI

````yaml api-reference/realtor/openapi.json get /api/v1/search/auto-complete
openapi: 3.1.0
info:
  title: US Red Property Data
  description: US Red Property Data Documentation
  version: 1.0.0
servers:
  - url: https://us-red-property-data.p.rapidapi.com
    description: RapiAPI
security: []
paths:
  /api/v1/search/auto-complete:
    get:
      tags:
        - Search
      summary: Get Auto Complete
      description: Get Auto Complete
      operationId: getApiV1SearchAuto-complete
      parameters:
        - in: query
          name: keyword
          schema:
            type: string
            minLength: 1
            description: Search keyword
            example: Los
          required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  cost:
                    type: number
                    description: Cost of the request
                    example: 1
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        type:
                          type: string
                          description: ''
                          example: location
                        text:
                          type: string
                          description: ''
                          example: Los Angeles, CA
                        geo:
                          type: object
                          properties:
                            _id:
                              type: string
                              description: ''
                              example: city:ca_los-angeles
                            _score:
                              type: number
                              description: ''
                              example: 22.727922
                            area_type:
                              type: string
                              description: ''
                              example: city
                            city:
                              type: string
                              description: ''
                              example: Los Angeles
                            state_code:
                              type: string
                              description: ''
                              example: CA
                            state:
                              type:
                                - string
                                - 'null'
                              description: ''
                              example: null
                            postal_code:
                              type:
                                - string
                                - 'null'
                              description: ''
                              example: null
                            country:
                              type: string
                              description: ''
                              example: USA
                            lat:
                              type:
                                - string
                                - 'null'
                              description: ''
                              example: null
                            lon:
                              type:
                                - string
                                - 'null'
                              description: ''
                              example: null
                            county:
                              type:
                                - string
                                - 'null'
                              description: ''
                              example: null
                            counties:
                              type: array
                              items:
                                type: object
                                properties:
                                  name:
                                    type: string
                                    description: ''
                                    example: Los Angeles
                                  fips:
                                    type: string
                                    description: ''
                                    example: '06037'
                                  state_code:
                                    type: string
                                    description: ''
                                    example: CA
                              description: ''
                            slug_id:
                              type: string
                              description: ''
                              example: Los-Angeles_CA
                            geo_id:
                              type: string
                              description: ''
                              example: 762ef170-d310-5637-b5f4-7137ffa29143
                            score:
                              type:
                                - string
                                - 'null'
                              description: ''
                              example: null
                            name:
                              type:
                                - string
                                - 'null'
                              description: ''
                              example: null
                            city_slug_id:
                              type:
                                - string
                                - 'null'
                              description: ''
                              example: null
                            centroid:
                              type: object
                              properties:
                                lat:
                                  type: number
                                  description: ''
                                  example: 34.0193936
                                lon:
                                  type: number
                                  description: ''
                                  example: -118.4108248
                              description: ''
                            county_needed_for_uniq:
                              type: boolean
                              description: ''
                              example: false
                            street:
                              type: 'null'
                              description: ''
                              example: null
                            line:
                              type: 'null'
                              description: ''
                              example: null
                            school:
                              type: 'null'
                              description: ''
                              example: null
                            school_id:
                              type: 'null'
                              description: ''
                              example: null
                            school_district:
                              type: 'null'
                              description: ''
                              example: null
                            has_catchment:
                              type: 'null'
                              description: ''
                              example: null
                            university:
                              type: 'null'
                              description: ''
                              example: null
                            university_id:
                              type: 'null'
                              description: ''
                              example: null
                            neighborhood:
                              type: 'null'
                              description: ''
                              example: null
                            park:
                              type: 'null'
                              description: ''
                              example: null
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Bad request
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: >-
                      Invalid API key. Go to https://docs.rapidapi.com/docs/keys
                      for more info.
        '403':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: You are not subscribed to this API.
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: 'Request failed with status 500: Internal Server Error'
                  status_code:
                    type: number
                    example: 500
                  cost:
                    type: number
                    example: 0
                  explain:
                    type: string
                    example: >-
                      Oops, it looks like there was an issue processing your
                      request. Don't worry, you won't be charged for this
                      request
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-rapidapi-key
      description: Rapid API Key

````