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

# /propertyguru/agents

> Get a PropertyGuru property agent profile by id, slug-id or agent URL: name, CEA license, job title, agency and agency license, profile image, years of service, total transactions with breakdown by type and client role, rating and review count, and languages spoken.

**Price:** 10 credits

**⚠️ Common errors:** 412: Agent not found (well-formed but nonexistent id, or page has no agent)



## OpenAPI

````yaml /openapi/real-estate.json post /api/propertyguru/agents
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/propertyguru/agents:
    post:
      tags:
        - /propertyguru
      summary: /propertyguru/agents
      description: >-
        Get a PropertyGuru property agent profile by id, slug-id or agent URL:
        name, CEA license, job title, agency and agency license, profile image,
        years of service, total transactions with breakdown by type and client
        role, rating and review count, and languages spoken.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Agent not found (well-formed but nonexistent
        id, or page has no agent)
      operationId: __api_propertyguru_agents_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PropertyGuruAgentsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PropertyGuruAgent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PropertyGuruAgentsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        region:
          $ref: '#/components/schemas/PropertyGuruRegion'
          default: sg
        agent:
          type: string
          minLength: 1
      type: object
      required:
        - agent
    PropertyGuruAgent:
      properties:
        '@type':
          type: string
          default: PropertyGuruAgent
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        first_name:
          anyOf:
            - type: string
            - type: 'null'
        license:
          anyOf:
            - type: string
            - type: 'null'
        job_title:
          anyOf:
            - type: string
            - type: 'null'
        account_type:
          anyOf:
            - type: string
            - type: 'null'
        package_type:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        agency:
          anyOf:
            - type: string
            - type: 'null'
        agency_license:
          anyOf:
            - type: string
            - type: 'null'
        agency_logo:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        years_of_service:
          anyOf:
            - type: integer
            - type: 'null'
        transaction_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        languages:
          items:
            type: string
          type: array
          default: []
        seller_client_count:
          anyOf:
            - type: integer
            - type: 'null'
        buyer_client_count:
          anyOf:
            - type: integer
            - type: 'null'
        landlord_client_count:
          anyOf:
            - type: integer
            - type: 'null'
        tenant_client_count:
          anyOf:
            - type: integer
            - type: 'null'
        transaction_types:
          items:
            $ref: '#/components/schemas/PropertyGuruAgentTransactionType'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PropertyGuruRegion:
      type: string
      enum:
        - sg
        - my
    PropertyGuruAgentTransactionType:
      properties:
        '@type':
          type: string
          default: PropertyGuruAgentTransactionType
        type:
          type: string
        count:
          anyOf:
            - type: integer
            - type: 'null'
        condo_count:
          anyOf:
            - type: integer
            - type: 'null'
        hdb_count:
          anyOf:
            - type: integer
            - type: 'null'
        landed_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - type
    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

````