{
  "version": "1.0",
  "description": "Platin Gaming public read-only capabilities for AI agents. B2B iGaming software provider — discover games, news, live casino tables, and submit partnership inquiries.",
  "documentation": "https://platingaming.com/.well-known/agent.json",
  "skills": [
    {
      "id": "browse-casino-games",
      "name": "Browse casino games",
      "description": "List Platin Gaming proprietary casino games with metadata (RTP, volatility, theme, features).",
      "endpoint": "https://platingaming.com/api/games",
      "method": "GET",
      "response": "application/json",
      "auth": "none"
    },
    {
      "id": "browse-live-casino",
      "name": "Browse live casino",
      "description": "List live dealer table games (Blackjack, Roulette, Baccarat variants) hosted by Platin Live Studio.",
      "endpoint": "https://platingaming.com/api/live-casino",
      "method": "GET",
      "response": "application/json",
      "auth": "none"
    },
    {
      "id": "fetch-news",
      "name": "Fetch news / press releases",
      "description": "Read company news, product updates, and press releases.",
      "endpoint": "https://platingaming.com/api/news",
      "method": "GET",
      "response": "application/json",
      "auth": "none"
    },
    {
      "id": "fetch-team",
      "name": "Fetch team directory",
      "description": "Public-facing team members and roles.",
      "endpoint": "https://platingaming.com/api/team",
      "method": "GET",
      "response": "application/json",
      "auth": "none"
    },
    {
      "id": "request-demo",
      "name": "Request product demo",
      "description": "Submit a B2B demo request. Required: name, email, company, message.",
      "endpoint": "https://platingaming.com/api/demo",
      "method": "POST",
      "request_schema": {
        "type": "object",
        "required": [
          "name",
          "email",
          "company"
        ],
        "properties": {
          "name": {
            "type": "string"
          },
          "email": {
            "type": "string",
            "format": "email"
          },
          "company": {
            "type": "string"
          },
          "phone": {
            "type": "string"
          },
          "message": {
            "type": "string"
          },
          "product": {
            "type": "string",
            "enum": [
              "casino",
              "sportsbook",
              "live-casino",
              "whitelabel",
              "virtual-games",
              "aggregator"
            ]
          }
        }
      },
      "response": "application/json",
      "auth": "none"
    },
    {
      "id": "contact-sales",
      "name": "Contact sales",
      "description": "Submit a B2B partnership inquiry. Required: name, email, message.",
      "endpoint": "https://platingaming.com/api/contact",
      "method": "POST",
      "request_schema": {
        "type": "object",
        "required": [
          "name",
          "email",
          "message"
        ],
        "properties": {
          "name": {
            "type": "string"
          },
          "email": {
            "type": "string",
            "format": "email"
          },
          "company": {
            "type": "string"
          },
          "message": {
            "type": "string"
          }
        }
      },
      "response": "application/json",
      "auth": "none"
    },
    {
      "id": "browse-careers",
      "name": "Browse open positions",
      "description": "List current job openings (see /careers/llms.txt for plain-text feed).",
      "endpoint": "https://platingaming.com/careers/llms.txt",
      "method": "GET",
      "response": "text/plain",
      "auth": "none"
    }
  ]
}