> ## 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 Agent Past Sale

> Get Agent Past Sale



## OpenAPI

````yaml api-reference/zillow/openapi.json get /api/v1/agent/past-sale
openapi: 3.1.0
info:
  title: US Property Data
  description: US Property Data Documentation
  version: 1.0.0
servers:
  - url: https://us-property-data.p.rapidapi.com
    description: RapiAPI
security: []
paths:
  /api/v1/agent/past-sale:
    get:
      tags:
        - Agent
      summary: Get Agent Past Sale
      description: Get Agent Past Sale
      operationId: getApiV1AgentPast-sale
      parameters:
        - in: query
          name: zuid
          schema:
            type: string
            description: >-
              Agent unique ID (ZUID). You can retrieve this ZUID by using the
              agent screen name from the Get Agent Detail endpoint
            example: X1-ZUyy58njdzkphl_aqadk
          required: true
        - in: query
          name: page
          schema:
            type: integer
            exclusiveMinimum: 0
            description: Page number for pagination
            default: 1
            example: 1
          required: false
      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
                  total:
                    type: number
                    description: Total number of properties sold matching the current query
                    example: 6624
                  has_more:
                    type: boolean
                    description: Whether there are more data to fetch
                    example: true
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        represented:
                          type: string
                          description: Role of the agent in this transaction
                          example: Buyer
                        representedList:
                          type: array
                          items:
                            type: string
                          description: >-
                            List of roles the agent represented in this
                            transaction
                          example:
                            - Buyer
                        sold_date:
                          type: string
                          description: Date when the property was sold
                          example: 1/16/2026
                        price:
                          type: string
                          description: Final sale price of the property
                          example: $450,000
                        zpid:
                          type: number
                          description: Unique Zillow property ID
                          example: 65566484
                        image_url:
                          type: string
                          description: URL of the main property image
                          example: >-
                            https://photos.zillowstatic.com/fp/961a38c1edac951f90bfa51a4529fa91-p_b.jpg
                        medium_image_url:
                          type: string
                          description: URL of the medium-sized property image
                          example: >-
                            https://photos.zillowstatic.com/fp/961a38c1edac951f90bfa51a4529fa91-p_d.jpg
                        image_alt:
                          type: string
                          description: Alternative text describing the property image
                          example: 635 N Dearborn St APT 2104, Chicago, IL, 60654
                        home_details_url:
                          type: string
                          description: Relative URL to the property detail page
                          example: >-
                            /homedetails/635-N-Dearborn-St-APT-2104-Chicago-IL-60654/65566484_zpid/
                        street_address:
                          type: string
                          description: Street address of the sold property
                          example: 635 N Dearborn St APT 2104
                        city_state_zipcode:
                          type: string
                          description: City, state, and ZIP code of the property
                          example: Chicago, IL, 60654
                        latitude:
                          type: number
                          description: Latitude coordinate of the property location
                          example: 41.89351
                        longitude:
                          type: number
                          description: Longitude coordinate of the property location
                          example: -87.629295
                        bathrooms:
                          type: number
                          description: Number of bathrooms in the sold property
                          example: 2
                        bedrooms:
                          type: number
                          description: Number of bedrooms in the sold property
                          example: 2
                        city:
                          type: string
                          description: City where the property is located
                          example: Chicago
                        state:
                          type: string
                          description: State where the property is located
                          example: IL
                        livingAreaValue:
                          type: number
                          description: Living area size of the property
                          example: 1324
                        livingAreaUnitsShort:
                          type: string
                          description: Unit of measurement for living area
                          example: sqft
                        mlsLogoSrc:
                          type:
                            - string
                            - 'null'
                          description: >-
                            URL of the MLS logo associated with the listing, if
                            available
                          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

````