{ "openapi": "3.0.0", "info": { "title": "APIs.do Business-as-Code", "description": "AI is getting extremely good at skills like math & code, because the outputs are verifiable. By representing your Business-as-Code, you can leverage the power of AI to automate, optimize, and scale your business processes.", "version": "0.1.0", "contact": { "name": "Drivly", "url": "https://drivly.com" } }, "servers": [ { "url": "https://apis.do/v1", "description": "Production API Server" } ], "paths": { "/ai": { "get": { "summary": "List all AIs", "description": "Returns a list of all AIs", "tags": [ "AIs" ], "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { "type": "object", "properties": { "links": { "type": "object", "properties": { "home": { "type": "string" }, "next": { "type": "string" }, "prev": { "type": "string" } } } } } } } } } } } }, "components": { "schemas": { "AI": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "description": { "type": "string" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" } } } } } }