Retrieve the list of all Property Types

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.lwolf.com/doc/wolfconnect-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "WolfConnect API MCP server": {
    "url": "https://apidocs.lwolf.com/doc/wolfconnect-api/mcp"
  }
}

Close
GET /wolfconnect/property-types/v1/

All of the property types that are configured for the Client Code used during the authentication process will be returned. The property types returned where LWCompanyCode is blank are for offices that are not synced with brokerWOLF.

Responses

  • 200 application/json

    A collection of PropertyType objects.

    Hide response attributes Show response attributes object
    • Id string

      The Lone Wolf Id of the property type.

    • LWCompanyCode string

      The Lone Wolf Company Code. This is the code used by a brokerWOLF installation. It will be blank for offices that are not synced with brokerWOLF.

    • Code string

      A code for this property type. This must be unique within an LWCompanyCode.

    • Name string

      The name of the property type (Duplex, Townhouse, Commercial, etc).

    • Default boolean

      True if this should be the default property type for new transactions and tiers.

    • ClassCode string

      The code for the class. R: Residential, C: Commercial

    • Class string

      The name of the class (Commercial, Residential).

    • InactiveDate string(date) | null

      The date the property type became inactive. (Nullable)

GET /wolfconnect/property-types/v1/
curl \
 --request GET 'https://api.globalwolfweb.com/wolfconnect/property-types/v1/' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "Id": "string",
    "LWCompanyCode": "string",
    "Code": "string",
    "Name": "string",
    "Default": true,
    "ClassCode": "string",
    "Class": "string",
    "InactiveDate": "2026-05-04"
  }
]