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

# /funda/agents

> Get a Funda real estate agent (makelaar) by agent id or agent URL: name, affiliation, slogan and description, contact details (email, phone, website), office address, logo, rating, review count, selectivity, services, specialties, certificates, languages, opening hours, social media links, employees and recent reviews.

**Price:** 5 credits

**⚠️ Common errors:** 412: Agent not found (well-formed but nonexistent agent id)



## OpenAPI

````yaml /openapi/real-estate.json post /api/funda/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/funda/agents:
    post:
      tags:
        - /funda
      summary: /funda/agents
      description: >-
        Get a Funda real estate agent (makelaar) by agent id or agent URL: name,
        affiliation, slogan and description, contact details (email, phone,
        website), office address, logo, rating, review count, selectivity,
        services, specialties, certificates, languages, opening hours, social
        media links, employees and recent reviews.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Agent not found (well-formed but nonexistent
        agent id)
      operationId: __api_funda_agents_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FundaAgentsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FundaAgent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FundaAgentsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        agent:
          type: string
          minLength: 1
      type: object
      required:
        - agent
    FundaAgent:
      properties:
        '@type':
          type: string
          default: FundaAgent
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        association:
          anyOf:
            - type: string
            - type: 'null'
        page_type:
          anyOf:
            - type: string
            - type: 'null'
        slogan:
          anyOf:
            - type: string
            - type: 'null'
        short_description:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        website_url:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/FundaAgentAddress'
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        geo_identifier:
          anyOf:
            - type: string
            - type: 'null'
        has_listings:
          anyOf:
            - type: boolean
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        selectivity_percentage:
          anyOf:
            - type: integer
            - type: 'null'
        services:
          items:
            type: string
          type: array
          default: []
        specialties:
          items:
            type: string
          type: array
          default: []
        certificates:
          items:
            type: string
          type: array
          default: []
        languages:
          items:
            type: string
          type: array
          default: []
        opening_hours:
          items:
            $ref: '#/components/schemas/FundaAgentOpeningHours'
          type: array
          default: []
        facebook_url:
          anyOf:
            - type: string
            - type: 'null'
        instagram_url:
          anyOf:
            - type: string
            - type: 'null'
        linkedin_url:
          anyOf:
            - type: string
            - type: 'null'
        employees:
          items:
            $ref: '#/components/schemas/FundaAgentEmployee'
          type: array
          default: []
        reviews:
          items:
            $ref: '#/components/schemas/FundaAgentReview'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    FundaAgentAddress:
      properties:
        '@type':
          type: string
          default: FundaAgentAddress
        street:
          anyOf:
            - type: string
            - type: 'null'
        house_number:
          anyOf:
            - type: string
            - type: 'null'
        postcode:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    FundaAgentOpeningHours:
      properties:
        '@type':
          type: string
          default: FundaAgentOpeningHours
        day:
          anyOf:
            - type: string
            - type: 'null'
        by_appointment:
          anyOf:
            - type: boolean
            - type: 'null'
        times:
          items:
            $ref: '#/components/schemas/FundaAgentOpeningTime'
          type: array
          default: []
      type: object
    FundaAgentEmployee:
      properties:
        '@type':
          type: string
          default: FundaAgentEmployee
        name:
          anyOf:
            - type: string
            - type: 'null'
        function:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    FundaAgentReview:
      properties:
        '@type':
          type: string
          default: FundaAgentReview
        posted_at:
          anyOf:
            - type: string
            - type: 'null'
        transaction_type:
          anyOf:
            - type: string
            - type: 'null'
        average_score:
          anyOf:
            - type: number
            - type: 'null'
        text:
          anyOf:
            - type: string
            - 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
    FundaAgentOpeningTime:
      properties:
        '@type':
          type: string
          default: FundaAgentOpeningTime
        begin:
          anyOf:
            - type: string
            - type: 'null'
        end:
          anyOf:
            - type: string
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````