Agent Winds API Documentation

Public API endpoints for AI agents and automated systems

Rate Limit: 7 requests per hour with demo key

Book Consultation

POST
https://tophamtechbeb.com/api/toptech/onboarding/v1/request-consultation

Headers

Content-Type: application/json
X-API-Key: treas-demo-api-key

Request Body

{
  "name": "string (required)",
  "email": "string (required)",
  "phone": "string (required)",
  "brokerage": "string (required)",
  "state": "string (required, 2-letter state code)",
  "package": "Single Agent | Small Team (required)",
  "needs": "string (required)"
}

Response

200 OK - Consultation request submitted successfully
400 Bad Request - Invalid or missing parameters
500 Internal Server Error - Server error

Example

curl -X POST https://tophamtechbeb.com/api/toptech/onboarding/v1/request-consultation \
  -H "Content-Type: application/json" \
  -H "X-API-Key: treas-demo-api-key" \
  -d '{
    "name": "John Doe",
    "email": "john@example.com",
    "phone": "555-1234",
    "brokerage": "ABC Realty",
    "state": "OK",
    "package": "Single Agent",
    "needs": "Looking for AI-powered website with CRM"
  }'

Schedule Demo

POST
https://tophamtechbeb.com/api/toptech/onboarding/v1/request-demo

Headers

Content-Type: application/json
X-API-Key: treas-demo-api-key

Request Body

{
  "name": "string (required)",
  "email": "string (required)",
  "phone": "string (required)",
  "state": "string (required, 2-letter state code)",
  "proposed_date_time": "string (required, ISO 8601 datetime)"
}

Response

200 OK - Demo request submitted successfully
400 Bad Request - Invalid or missing parameters
500 Internal Server Error - Server error

Example

curl -X POST https://tophamtechbeb.com/api/toptech/onboarding/v1/request-demo \
  -H "Content-Type: application/json" \
  -H "X-API-Key: treas-demo-api-key" \
  -d '{
    "name": "Jane Smith",
    "email": "jane@example.com",
    "phone": "555-5678",
    "state": "OK",
    "proposed_date_time": "2025-02-15T14:00:00"
  }'