Get all classifications for the brokerage.

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/deals-api/mcp

Standard setup for AI tools providing an mcp.json file

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

Close
GET /classifications

Retrieves all classifications for the brokerage.

Responses

  • 200 application/json

    Classifications found.

  • 401

    Unauthorized request. See response body for details.

  • 403

    Permission denied. See response body for details.

  • 500

    Unknown error. See response body for details.

GET /classifications
curl \
 --request GET 'http://api.example.com/classifications' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {}
]