{"openapi":"3.1.0","info":{"title":"Dribba Public API","version":"1.0.0","description":"Public endpoints behind dribba.com. Write endpoints require a same-origin request; read content via Accept negotiation (text/markdown, application/json) on any page, or via the MCP server at /mcp.","contact":{"name":"Dribba","email":"hola@dribba.com","url":"https://dribba.com"}},"servers":[{"url":"https://dribba.com"}],"paths":{"/api/chat":{"get":{"operationId":"chatStatus","summary":"Assistant availability + rate-limit policy","description":"Returns whether the chat assistant is enabled. Emits RateLimit-* headers.","responses":{"200":{"description":"Status","content":{"application/json":{"schema":{"type":"object","properties":{"enabled":{"type":"boolean"}}}}}}}},"post":{"operationId":"chatMessage","summary":"Send a message to the assistant (same-origin, rate-limited 15/10min)","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["message"],"properties":{"message":{"type":"string"},"history":{"type":"array","items":{"type":"object"}},"sessionId":{"type":"string"},"locale":{"type":"string","enum":["es","ca","en"]}}}}}},"responses":{"200":{"description":"Assistant reply"},"403":{"description":"Origin not allowed"},"429":{"description":"Rate limited (see Retry-After)"}}}},"/api/contact":{"post":{"operationId":"submitContact","summary":"Submit a contact/project inquiry (same-origin)","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["name","email","message"],"properties":{"name":{"type":"string"},"email":{"type":"string","format":"email"},"message":{"type":"string"},"company":{"type":"string"},"phone":{"type":"string"}}}}}},"responses":{"200":{"description":"Received"},"400":{"description":"Invalid body"}}}},"/api/estimate":{"post":{"operationId":"submitEstimate","summary":"Request a project budget estimate (same-origin)","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["email"],"properties":{"email":{"type":"string","format":"email"},"platforms":{"type":"array","items":{"type":"string"}},"complexity":{"type":"string","enum":["mvp","standard","complex"]},"design":{"type":"string","enum":["basic","custom","premium"]},"timeline":{"type":"string","enum":["rush","normal","relaxed"]}}}}}},"responses":{"200":{"description":"Received"}}}},"/api/resources":{"post":{"operationId":"requestResource","summary":"Request a gated resource PDF by email (same-origin)","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["slug","email"],"properties":{"slug":{"type":"string"},"email":{"type":"string","format":"email"}}}}}},"responses":{"200":{"description":"Sent by email"}}}},"/api/apply":{"post":{"operationId":"submitApplication","summary":"Submit a job application (same-origin, multipart/form-data for CV)","responses":{"200":{"description":"Received"}}}}}}