{
  "info": {
    "name": "DCDN Cloud API",
    "description": "Official DCDN Cloud API \u2014 319 endpoints\n\nBase URL: https://dcdncloud.com\n\nAuth: Bearer token or X-API-Key header\n\nGet your API key at: https://dcdncloud.com/dashboard \u2192 Settings \u2192 API Keys",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "_postman_id": "dcdn-cloud-api-v1"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{DCDN_API_KEY}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "base_url",
      "value": "https://dcdncloud.com",
      "type": "string"
    },
    {
      "key": "DCDN_API_KEY",
      "value": "dcdn_live_YOUR_TOKEN_HERE",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "Edge Functions",
      "item": [
        {
          "name": "List Plans",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/functions/plans",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "functions",
                "plans"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Regions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/functions/regions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "functions",
                "regions"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Functions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/functions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "functions"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Deploy Function",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/functions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "functions"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"runtime\": \"nodejs\",\n  \"code\": \"\",\n  \"entry_point\": \"handler\",\n  \"route_pattern\": \"\",\n  \"env_vars\": \"\",\n  \"region\": \"\",\n  \"plan\": \"free\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Function",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/functions/{fn_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "functions",
                "{fn_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Update Function",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/functions/{fn_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "functions",
                "{fn_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"code\": \"\",\n  \"entry_point\": \"\",\n  \"env_vars\": \"\",\n  \"plan\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Function",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/functions/{fn_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "functions",
                "{fn_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Invoke Function",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/functions/{fn_id}/invoke",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "functions",
                "{fn_id}",
                "invoke"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Function Logs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/functions/{fn_id}/logs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "functions",
                "{fn_id}",
                "logs"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Managed Databases",
      "item": [
        {
          "name": "List Plans",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/databases/plans",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "databases",
                "plans"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Regions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/databases/regions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "databases",
                "regions"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Databases",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/databases",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "databases"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Database",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/databases",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "databases"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"plan\": \"mini\",\n  \"version\": \"16\",\n  \"region\": \"\",\n  \"db_name\": \"userdb\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Database",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/databases/{db_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "databases",
                "{db_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Destroy Database",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/databases/{db_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "databases",
                "{db_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Reset Db Password",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/databases/{db_id}/reset-password",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "databases",
                "{db_id}",
                "reset-password"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Start Database",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/databases/{db_id}/start",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "databases",
                "{db_id}",
                "start"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Stop Database",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/databases/{db_id}/stop",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "databases",
                "{db_id}",
                "stop"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Agent Db Tasks",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/databases/agent/db-tasks",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "databases",
                "agent",
                "db-tasks"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Agent Db Report",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/databases/agent/report",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "databases",
                "agent",
                "report"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"db_id\": \"\",\n  \"status\": \"\",\n  \"type\": \"database\",\n  \"container_id\": \"\",\n  \"error\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Object Storage",
      "item": [
        {
          "name": "List Plans",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/storage/plans",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "storage",
                "plans"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Regions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/storage/regions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "storage",
                "regions"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Buckets",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/storage",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "storage"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Bucket",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/storage",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "storage"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"plan\": \"basic\",\n  \"region\": \"\",\n  \"public_read\": false\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Bucket",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/storage/{bucket_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "storage",
                "{bucket_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Update Bucket",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/storage/{bucket_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "storage",
                "{bucket_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"plan\": \"\",\n  \"public_read\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Bucket",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/storage/{bucket_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "storage",
                "{bucket_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Bucket Credentials",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/storage/{bucket_id}/credentials",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "storage",
                "{bucket_id}",
                "credentials"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Rotate Keys",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/storage/{bucket_id}/rotate-keys",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "storage",
                "{bucket_id}",
                "rotate-keys"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Admin",
      "item": [
        {
          "name": "Admin Stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "stats"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Admin Users",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/users",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "users"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "offset",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Admin Update User",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/users/{user_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "users",
                "{user_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Admin Domains",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/domains",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "domains"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Admin Nodes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/nodes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "nodes"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Admin Tickets",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/tickets",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "tickets"
              ],
              "query": [
                {
                  "key": "status",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Admin Ticket Detail",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/tickets/{ticket_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "tickets",
                "{ticket_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Admin Reply Ticket",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/tickets/{ticket_id}/reply",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "tickets",
                "{ticket_id}",
                "reply"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Admin Resolve Ticket",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/tickets/{ticket_id}/resolve",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "tickets",
                "{ticket_id}",
                "resolve"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Admin Billing",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/billing",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "billing"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Admin Audit",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/audit",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "audit"
              ],
              "query": [
                {
                  "key": "category",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Admin Nodes",
      "item": [
        {
          "name": "Nodes Overview",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/nodes/overview",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "nodes",
                "overview"
              ],
              "query": [
                {
                  "key": "page",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "per_page",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "search",
                  "value": "",
                  "description": "Search by node_id, IP, or region",
                  "disabled": true
                },
                {
                  "key": "sort_by",
                  "value": "",
                  "description": "Sort field",
                  "disabled": true
                },
                {
                  "key": "sort_dir",
                  "value": "",
                  "description": "asc or desc",
                  "disabled": true
                },
                {
                  "key": "status_filter",
                  "value": "",
                  "description": "Filter by status: online,offline,banned,suspended",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Node Reputation History",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/nodes/{node_id}/reputation",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "nodes",
                "{node_id}",
                "reputation"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Ban Node",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/nodes/{node_id}/ban",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "nodes",
                "{node_id}",
                "ban"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"reason\": \"\",\n  \"duration_hours\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Unban Node",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/nodes/{node_id}/unban",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "nodes",
                "{node_id}",
                "unban"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Suspend Node",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/nodes/{node_id}/suspend",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "nodes",
                "{node_id}",
                "suspend"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Node Alerts",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/nodes/alerts",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "nodes",
                "alerts"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Verify Report",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/admin/nodes/verify-report",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "admin",
                "nodes",
                "verify-report"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"node_id\": \"\",\n  \"event_type\": \"\",\n  \"reason\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Affiliate",
      "item": [
        {
          "name": "Track Click",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/affiliate/click/{code}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "affiliate",
                "click",
                "{code}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Join Affiliate",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/affiliate/join",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "affiliate",
                "join"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Affiliate Dashboard",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/affiliate/dashboard",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "affiliate",
                "dashboard"
              ],
              "query": [
                {
                  "key": "commission_limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "commission_offset",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Request Payout",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/affiliate/request-payout",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "affiliate",
                "request-payout"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Admin Get Settings",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/affiliate/admin/settings",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "affiliate",
                "admin",
                "settings"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Admin Update Settings",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/affiliate/admin/settings",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "affiliate",
                "admin",
                "settings"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"default_commission_pct\": \"\",\n  \"min_payout_usd\": \"\",\n  \"cookie_days\": \"\",\n  \"enabled\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Admin List Affiliates",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/affiliate/admin/list",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "affiliate",
                "admin",
                "list"
              ],
              "query": [
                {
                  "key": "status",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "offset",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Admin Set Commission",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/affiliate/admin/{affiliate_id}/commission",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "affiliate",
                "admin",
                "{affiliate_id}",
                "commission"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"commission_pct\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Admin Set Status",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/affiliate/admin/{affiliate_id}/status",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "affiliate",
                "admin",
                "{affiliate_id}",
                "status"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"status\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Admin List Payouts",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/affiliate/admin/payouts",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "affiliate",
                "admin",
                "payouts"
              ],
              "query": [
                {
                  "key": "status",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Admin Process Payout",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/affiliate/admin/payouts/{payout_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "affiliate",
                "admin",
                "payouts",
                "{payout_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"status\": \"\",\n  \"notes\": \"\",\n  \"stripe_transfer_id\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Agent Deploy",
      "item": [
        {
          "name": "List Agent Templates",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/deploy/templates",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "deploy",
                "templates"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Preview Template",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/deploy/templates/{template_id}/preview",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "deploy",
                "templates",
                "{template_id}",
                "preview"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Deploy From Template",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/deploy/template",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "deploy",
                "template"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"template\": \"\",\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"description\": \"\",\n  \"capabilities\": [\n    \"general\"\n  ],\n  \"pricing_per_request\": 0.01,\n  \"region\": \"auto\",\n  \"env_vars\": {},\n  \"auto_publish\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Deploy From Git",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/deploy/git",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "deploy",
                "git"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"repo_url\": \"\",\n  \"branch\": \"main\",\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"description\": \"\",\n  \"capabilities\": [\n    \"general\"\n  ],\n  \"pricing_per_request\": 0.01,\n  \"region\": \"auto\",\n  \"env_vars\": {},\n  \"auto_publish\": true,\n  \"dockerfile_path\": \"Dockerfile\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Deployment Status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/deploy/status/{deployment_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "deploy",
                "status",
                "{deployment_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Deployments",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/deploy/list",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "deploy",
                "list"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Destroy Deployment",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/deploy/{deployment_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "deploy",
                "{deployment_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Deploy Stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/deploy/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "deploy",
                "stats"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Agent Marketplace",
      "item": [
        {
          "name": "Publish Agent",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/marketplace/publish",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "marketplace",
                "publish"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"agent_id\": \"\",\n  \"slug\": \"\",\n  \"tagline\": \"\",\n  \"capabilities\": [],\n  \"pricing_per_request\": \"\",\n  \"pricing_per_token\": \"\",\n  \"accepted_tokens\": [\n    \"ETH\",\n    \"SOL\",\n    \"USDC\",\n    \"USDT\",\n    \"DCDN\"\n  ],\n  \"api_docs_url\": \"\",\n  \"example_request\": \"\",\n  \"example_response\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Update Listing",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/marketplace/listing/{listing_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "marketplace",
                "listing",
                "{listing_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"tagline\": \"\",\n  \"capabilities\": \"\",\n  \"pricing_per_request\": \"\",\n  \"pricing_per_token\": \"\",\n  \"accepted_tokens\": \"\",\n  \"api_docs_url\": \"\",\n  \"status\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Remove Listing",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/marketplace/listing/{listing_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "marketplace",
                "listing",
                "{listing_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Search Agents",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/marketplace/search",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "marketplace",
                "search"
              ],
              "query": [
                {
                  "key": "q",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "capability",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "token",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "max_price",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "sort",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "offset",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Listing",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/marketplace/agent/{slug}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "marketplace",
                "agent",
                "{slug}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Call Marketplace Agent",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/marketplace/call/{slug}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "marketplace",
                "call",
                "{slug}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"message\": \"\",\n  \"params\": \"\",\n  \"payment_token\": \"USDC\",\n  \"max_payment_usd\": 1.0,\n  \"callback_url\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Rate Agent",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/marketplace/rate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "marketplace",
                "rate"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"listing_id\": \"\",\n  \"transaction_id\": \"\",\n  \"rating\": 0,\n  \"comment\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Marketplace Stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/marketplace/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "marketplace",
                "stats"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Agent Wallet",
      "item": [
        {
          "name": "Create Wallet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/wallet/create",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "wallet",
                "create"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"agent_id\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Wallet",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/wallet/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "wallet",
                "{agent_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Confirm Deposit",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/wallet/deposit/confirm",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "wallet",
                "deposit",
                "confirm"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"wallet_id\": \"\",\n  \"token\": \"\",\n  \"chain\": \"\",\n  \"tx_hash\": \"\",\n  \"amount\": 0.0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Transfer Between Agents",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/wallet/transfer",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "wallet",
                "transfer"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"from_agent_id\": \"\",\n  \"to_agent_slug\": \"\",\n  \"amount\": 0.0,\n  \"token\": \"USDC\",\n  \"reason\": \"\",\n  \"escrow\": false\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Release Escrow",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/wallet/escrow/release",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "wallet",
                "escrow",
                "release"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"transaction_id\": \"\",\n  \"action\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Transactions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/wallet/{agent_id}/transactions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "wallet",
                "{agent_id}",
                "transactions"
              ],
              "query": [
                {
                  "key": "token",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tx_type",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Wallet Platform Stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/wallet/platform/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "wallet",
                "platform",
                "stats"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Ai Agents",
      "item": [
        {
          "name": "List Agents",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/agents",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "agents"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Agent",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/agents",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "agents"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"description\": \"\",\n  \"model\": \"openai/gpt-4\",\n  \"system_prompt\": \"You are a helpful assistant.\",\n  \"max_tokens\": 4096,\n  \"temperature\": 0.7,\n  \"skills\": [],\n  \"config\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Agent",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/agents/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "agents",
                "{agent_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Update Agent",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/agents/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "agents",
                "{agent_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"description\": \"\",\n  \"model\": \"\",\n  \"system_prompt\": \"\",\n  \"max_tokens\": \"\",\n  \"temperature\": \"\",\n  \"skills\": \"\",\n  \"config\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Agent",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/agents/{agent_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "agents",
                "{agent_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Run Agent",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/agents/{agent_id}/run",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "agents",
                "{agent_id}",
                "run"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"message\": \"\",\n  \"conversation_id\": \"\",\n  \"include_memory\": true,\n  \"api_key\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Stream Agent",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/agents/{agent_id}/stream",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "agents",
                "{agent_id}",
                "stream"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"message\": \"\",\n  \"conversation_id\": \"\",\n  \"include_memory\": true,\n  \"api_key\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Memory",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/agents/{agent_id}/memory",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "agents",
                "{agent_id}",
                "memory"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Clear Memory",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/agents/{agent_id}/memory",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "agents",
                "{agent_id}",
                "memory"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Logs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/agents/{agent_id}/logs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "agents",
                "{agent_id}",
                "logs"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Available Skills",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/agents/skills/available",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "agents",
                "skills",
                "available"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Agent Platform Stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/agents/platform/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "agents",
                "platform",
                "stats"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Models",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/agents/models/available",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "agents",
                "models",
                "available"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Usage",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/agents/usage",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "agents",
                "usage"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Analytics",
      "item": [
        {
          "name": "Analytics Overview",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/analytics/overview",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "analytics",
                "overview"
              ],
              "query": [
                {
                  "key": "domain",
                  "value": "",
                  "description": "",
                  "disabled": false
                },
                {
                  "key": "period",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Analytics Timeseries",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/analytics/timeseries",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "analytics",
                "timeseries"
              ],
              "query": [
                {
                  "key": "domain",
                  "value": "",
                  "description": "",
                  "disabled": false
                },
                {
                  "key": "period",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "metric",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Analytics Top Paths",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/analytics/top-paths",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "analytics",
                "top-paths"
              ],
              "query": [
                {
                  "key": "domain",
                  "value": "",
                  "description": "",
                  "disabled": false
                },
                {
                  "key": "period",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Analytics Countries",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/analytics/countries",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "analytics",
                "countries"
              ],
              "query": [
                {
                  "key": "domain",
                  "value": "",
                  "description": "",
                  "disabled": false
                },
                {
                  "key": "period",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Analytics Ingest",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/analytics/ingest",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "analytics",
                "ingest"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Api Tokens",
      "item": [
        {
          "name": "Create Token",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/tokens/create",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "tokens",
                "create"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"scopes\": [\n    \"domains:read\",\n    \"analytics:read\"\n  ],\n  \"ip_filter\": \"\",\n  \"expires_days\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "List Tokens",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/tokens/list",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "tokens",
                "list"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Revoke Token",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/tokens/{token_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "tokens",
                "{token_id}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Auth",
      "item": [
        {
          "name": "Register",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/register",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "register"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"referral_code\": \"\",\n  \"email\": \"\",\n  \"password\": \"\",\n  \"name\": \"\",\n  \"account_type\": \"personal\",\n  \"company_name\": \"\",\n  \"vat_id\": \"\",\n  \"country\": \"\",\n  \"billing_address\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Login",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/login",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "login"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"\",\n  \"password\": \"\",\n  \"totp_code\": \"\",\n  \"sms_code\": \"\",\n  \"remember_me\": false\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Google Auth",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/google",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "google"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"credential\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Change Email",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/change-email",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "change-email"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"new_email\": \"\",\n  \"totp_code\": \"\",\n  \"sms_code\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Change Password",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/change-password",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "change-password"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"current_password\": \"\",\n  \"new_password\": \"\",\n  \"totp_code\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Totp Setup",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/totp/setup",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "totp",
                "setup"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Totp Verify",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/totp/verify",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "totp",
                "verify"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"code\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Totp Disable",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/totp/disable",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "totp",
                "disable"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"code\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Sms Setup",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/sms/setup",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "sms",
                "setup"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"phone\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Sms Verify",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/sms/verify",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "sms",
                "verify"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"code\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Sms Disable",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/sms/disable",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "sms",
                "disable"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"code\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Sms Resend",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/sms/resend",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "sms",
                "resend"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Me",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/me",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "me"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Verify Email",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/verify-email",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "verify-email"
              ],
              "query": [
                {
                  "key": "token",
                  "value": "",
                  "description": "",
                  "disabled": false
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Forgot Password",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/forgot-password",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "forgot-password"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Reset Password",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/reset-password",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "reset-password"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"token\": \"\",\n  \"new_password\": \"\",\n  \"totp_code\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Cancel Subscription",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/cancel-subscription",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "cancel-subscription"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Delete Account",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/delete-account",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "delete-account"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"password\": \"\",\n  \"confirm\": \"DELETE\",\n  \"totp_code\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Export Data",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/export-data",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "export-data"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Billing",
      "item": [
        {
          "name": "Subscribe With Credits",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/credit/subscribe",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "credit",
                "subscribe"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"plan\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Vps With Credits",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/credit/vps",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "credit",
                "vps"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"vps_plan\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Aio With Credits",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/credit/aio",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "credit",
                "aio"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"bundle\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Confirm Token Payment",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/token/confirm",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "token",
                "confirm"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"tx_hash\": \"\",\n  \"plan_type\": \"\",\n  \"plan_id\": \"\",\n  \"amount_usd\": 0.0,\n  \"token_amount\": 0.0,\n  \"wallet\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Plans",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/plans",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "plans"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Price",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/price",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "price"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Stripe Checkout",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/stripe/checkout",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "stripe",
                "checkout"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"plan\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Create Vps Stripe Checkout",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/stripe/vps-checkout",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "stripe",
                "vps-checkout"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"vps_plan\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Create Aio Checkout",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/stripe/aio-checkout",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "stripe",
                "aio-checkout"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"bundle\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Stripe Webhook",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/stripe/webhook",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "stripe",
                "webhook"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Crypto Payment",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/crypto/pay",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "crypto",
                "pay"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"plan\": \"\",\n  \"tx_hash\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Crypto Info",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/crypto/info",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "crypto",
                "info"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Conversions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/conversions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "conversions"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Conversion Queue",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/conversions/queue",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "conversions",
                "queue"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Billing",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Upgrade Plan",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/upgrade",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "upgrade"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"plan\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Captcha",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/captcha",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "captcha"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Contact Sales",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/billing/contact-sales",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "billing",
                "contact-sales"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"company\": \"\",\n  \"message\": \"\",\n  \"captcha_answer\": 0,\n  \"captcha_token\": \"\",\n  \"website\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Censorship Resistance",
      "item": [
        {
          "name": "Get Features",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/censorship/features",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "censorship",
                "features"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Enable Censorship Resistance",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/censorship/enable",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "censorship",
                "enable"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"domain_name\": \"\",\n  \"multi_node_redundancy\": true,\n  \"dns_fallback\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Cr Status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/censorship/status/{domain_name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "censorship",
                "status",
                "{domain_name}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Compute",
      "item": [
        {
          "name": "List Plans",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/plans",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "plans"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Images",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/images",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "images"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Templates",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/templates",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "templates"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Regions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/regions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "regions"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Instances",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/instances",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "instances"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Instance",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/instances",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "instances"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"plan\": \"\",\n  \"image\": \"ubuntu-22.04\",\n  \"region\": \"\",\n  \"redundant\": false,\n  \"cpu_type\": \"shared\",\n  \"ssh_keys\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Instance",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/instances/{instance_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "instances",
                "{instance_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Destroy Instance",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/instances/{instance_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "instances",
                "{instance_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Start Instance",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/instances/{instance_id}/start",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "instances",
                "{instance_id}",
                "start"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Stop Instance",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/instances/{instance_id}/stop",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "instances",
                "{instance_id}",
                "stop"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Restart Instance",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/instances/{instance_id}/restart",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "instances",
                "{instance_id}",
                "restart"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Reset Password",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/instances/{instance_id}/reset-password",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "instances",
                "{instance_id}",
                "reset-password"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Add Ssh Key",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/instances/{instance_id}/ssh-key",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "instances",
                "{instance_id}",
                "ssh-key"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Node Earnings",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/earnings/node/{node_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "earnings",
                "node",
                "{node_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Earnings Summary",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/earnings/summary",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "earnings",
                "summary"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Accrue Monthly Earnings",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/earnings/accrue",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "earnings",
                "accrue"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Request Payout",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/earnings/payout",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "earnings",
                "payout"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"wallet_address\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Distribute Vps Tokens",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/earnings/distribute-tokens",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "earnings",
                "distribute-tokens"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Token Distribution Info",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/earnings/token-info",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "earnings",
                "token-info"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Agent Heartbeat",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/agent/heartbeat",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "agent",
                "heartbeat"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"node_id\": \"\",\n  \"available_vcpus\": 0,\n  \"available_ram_mb\": 0,\n  \"available_disk_gb\": 0,\n  \"running_instances\": 0,\n  \"challenge_response\": \"\",\n  \"challenge_nonce\": \"\",\n  \"audit_response\": \"\",\n  \"attestation\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Agent Tasks",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/agent/tasks",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "agent",
                "tasks"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Agent Report",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/agent/report",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "agent",
                "report"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"instance_id\": \"\",\n  \"status\": \"\",\n  \"container_id\": \"\",\n  \"image_digest\": \"\",\n  \"ssh_port\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Agent Shutdown",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/compute/agent/shutdown",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "compute",
                "agent",
                "shutdown"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"node_id\": \"\",\n  \"status\": \"shutting_down\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Coordinator Sync",
      "item": [
        {
          "name": "Receive Heartbeat",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/coordinator/heartbeat",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "coordinator",
                "heartbeat"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"coordinator_id\": \"\",\n  \"region\": \"\",\n  \"role\": \"\",\n  \"wal_sequence\": 0,\n  \"status\": \"\",\n  \"is_genesis\": false,\n  \"timestamp\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Apply Wal",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/coordinator/wal/apply",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "coordinator",
                "wal",
                "apply"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"entries\": []\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Wal Since",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/coordinator/wal/since/{sequence}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "coordinator",
                "wal",
                "since",
                "{sequence}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Coordinator Status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/coordinator/status",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "coordinator",
                "status"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Register Coordinator",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/coordinator/register",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "coordinator",
                "register"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Credits",
      "item": [
        {
          "name": "Get Balance",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/credits/balance",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "credits",
                "balance"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get History",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/credits/history",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "credits",
                "history"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "offset",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Grants",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/credits/grants",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "credits",
                "grants"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Grant Credits",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/credits/grant",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "credits",
                "grant"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"user_id\": \"\",\n  \"amount\": 0.0,\n  \"campaign\": \"\",\n  \"description\": \"\",\n  \"expires_in_days\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Bulk Grant Credits",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/credits/grant/bulk",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "credits",
                "grant",
                "bulk"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"user_ids\": [],\n  \"amount\": 0.0,\n  \"campaign\": \"\",\n  \"description\": \"\",\n  \"expires_in_days\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Revoke Credits",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/credits/revoke",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "credits",
                "revoke"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"user_id\": \"\",\n  \"amount\": \"\",\n  \"reason\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Credits Overview",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/credits/admin/overview",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "credits",
                "admin",
                "overview"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Admin User Credits",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/credits/admin/user/{user_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "credits",
                "admin",
                "user",
                "{user_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Buy Credits",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/credits/buy",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "credits",
                "buy"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"amount_usd\": 0.0,\n  \"payment_method\": \"stripe\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Transactions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/credits/transactions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "credits",
                "transactions"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Ddos",
      "item": [
        {
          "name": "Ddos Overview",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/ddos/overview",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "ddos",
                "overview"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Attacks",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/ddos/attacks",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "ddos",
                "attacks"
              ],
              "query": [
                {
                  "key": "days",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "status",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Live Stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/ddos/live",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "ddos",
                "live"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Toggle Under Attack",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/ddos/under-attack",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "ddos",
                "under-attack"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"enabled\": false\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Domains",
      "item": [
        {
          "name": "List Domains",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Domain",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"domain\": \"\",\n  \"origin_ip\": \"\",\n  \"origin_port\": 443,\n  \"ssl_mode\": \"full_strict\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Domain",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Update Domain",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"ssl_mode\": \"\",\n  \"hsts_enabled\": \"\",\n  \"hsts_subdomains\": \"\",\n  \"hsts_nosniff\": \"\",\n  \"min_tls\": \"\",\n  \"https_rewrite\": \"\",\n  \"cache_level\": \"\",\n  \"browser_ttl\": \"\",\n  \"edge_ttl\": \"\",\n  \"dev_mode\": \"\",\n  \"minify_js\": \"\",\n  \"minify_css\": \"\",\n  \"minify_html\": \"\",\n  \"brotli\": \"\",\n  \"early_hints\": \"\",\n  \"webp\": \"\",\n  \"image_polish\": \"\",\n  \"rocket_loader\": \"\",\n  \"http2\": \"\",\n  \"http3\": \"\",\n  \"websocket\": \"\",\n  \"grpc\": \"\",\n  \"zero_rtt\": \"\",\n  \"ip_geolocation\": \"\",\n  \"max_upload_mb\": \"\",\n  \"waf_enabled\": \"\",\n  \"waf_paranoia\": \"\",\n  \"waf_owasp\": \"\",\n  \"waf_managed\": \"\",\n  \"waf_leak_check\": \"\",\n  \"under_attack\": \"\",\n  \"security_level\": \"\",\n  \"challenge_ttl\": \"\",\n  \"bot_fight\": \"\",\n  \"super_bot_fight\": \"\",\n  \"bot_score_1_10\": \"\",\n  \"bot_score_11_30\": \"\",\n  \"bot_score_31_99\": \"\",\n  \"email_obfuscation\": \"\",\n  \"hotlink_protection\": \"\",\n  \"hotlink_referers\": \"\",\n  \"sse_enabled\": \"\",\n  \"disable_right_click\": \"\",\n  \"disable_text_select\": \"\",\n  \"disable_view_source\": \"\",\n  \"http_ddos\": \"\",\n  \"l34_ddos\": \"\",\n  \"tcp_protection\": \"\",\n  \"always_online\": \"\",\n  \"browser_integrity\": \"\",\n  \"privacy_pass\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Domain",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Purge Cache",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/purge",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "purge"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Dns",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/dns",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "dns"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Add Dns",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/dns",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "dns"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"record_type\": \"\",\n  \"name\": \"\",\n  \"content\": \"\",\n  \"ttl\": 300,\n  \"priority\": \"\",\n  \"proxied\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Dns",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/dns/{record_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "dns",
                "{record_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Firewall",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/firewall",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "firewall"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Firewall",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/firewall",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "firewall"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"expression\": \"\",\n  \"action\": \"\",\n  \"priority\": 0,\n  \"enabled\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Firewall",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/firewall/{rule_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "firewall",
                "{rule_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Ip Rules",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/ip-rules",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "ip-rules"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Ip Rule",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/ip-rules",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "ip-rules"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"value\": \"\",\n  \"rule_type\": \"\",\n  \"action\": \"\",\n  \"scope\": \"all\",\n  \"notes\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Ip Rule",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/ip-rules/{rule_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "ip-rules",
                "{rule_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Rate Limits",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/rate-limits",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "rate-limits"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Rate Limit",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/rate-limits",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "rate-limits"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"url_pattern\": \"*\",\n  \"http_method\": \"any\",\n  \"requests\": 100,\n  \"period_seconds\": 60,\n  \"count_by\": \"ip\",\n  \"action\": \"js_challenge\",\n  \"timeout_seconds\": 300\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Rate Limit",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/rate-limits/{rule_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "rate-limits",
                "{rule_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Page Rules",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/page-rules",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "page-rules"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Page Rule",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/page-rules",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "page-rules"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"url_pattern\": \"\",\n  \"priority\": 0,\n  \"cache_level\": \"\",\n  \"edge_ttl\": \"\",\n  \"ssl\": \"\",\n  \"forwarding_url\": \"\",\n  \"redirect_code\": \"\",\n  \"security_level\": \"\",\n  \"always_https\": false,\n  \"disable_perf\": false\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Page Rule",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/page-rules/{rule_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "page-rules",
                "{rule_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Cache Rules",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/cache-rules",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "cache-rules"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Cache Rule",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/cache-rules",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "cache-rules"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"match_pattern\": \"\",\n  \"action\": \"cache\",\n  \"ttl\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Edge Functions",
      "item": [
        {
          "name": "List Runtimes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/edge/runtimes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "edge",
                "runtimes"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Functions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/edge/functions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "edge",
                "functions"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Function",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/edge/functions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "edge",
                "functions"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"runtime\": \"nodejs\",\n  \"code\": \"\",\n  \"route_pattern\": \"\",\n  \"domain_id\": \"\",\n  \"env_vars\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Function",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/edge/functions/{function_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "edge",
                "functions",
                "{function_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Update Function",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/edge/functions/{function_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "edge",
                "functions",
                "{function_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"code\": \"\",\n  \"route_pattern\": \"\",\n  \"env_vars\": \"\",\n  \"status\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Function",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/edge/functions/{function_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "edge",
                "functions",
                "{function_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Invoke Function",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/edge/invoke/{function_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "edge",
                "invoke",
                "{function_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Invoke Function",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/edge/invoke/{function_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "edge",
                "invoke",
                "{function_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Invoke Function",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/edge/invoke/{function_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "edge",
                "invoke",
                "{function_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Invoke Function",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/edge/invoke/{function_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "edge",
                "invoke",
                "{function_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Invoke Function",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/edge/invoke/{function_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "edge",
                "invoke",
                "{function_id}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Email",
      "item": [
        {
          "name": "List Routes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/email/routes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "email",
                "routes"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Route",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/email/routes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "email",
                "routes"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"domain_name\": \"\",\n  \"source_address\": \"\",\n  \"destination\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Update Route",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/email/routes/{route_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "email",
                "routes",
                "{route_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"destination\": \"\",\n  \"enabled\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Route",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/email/routes/{route_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "email",
                "routes",
                "{route_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Check Email Dns",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/email/dns-check/{domain_name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "email",
                "dns-check",
                "{domain_name}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Extra",
      "item": [
        {
          "name": "List Workers",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/workers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "workers"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Worker",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/workers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "workers"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"route\": \"\",\n  \"code\": \"\",\n  \"env_vars\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Worker",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/workers/{worker_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "workers",
                "{worker_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Update Worker",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/workers/{worker_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "workers",
                "{worker_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"code\": \"\",\n  \"route\": \"\",\n  \"env_vars\": \"\",\n  \"enabled\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Worker",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/domains/{domain_name}/workers/{worker_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "domains",
                "{domain_name}",
                "workers",
                "{worker_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Nodes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/nodes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "nodes"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Register Node",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/nodes/register",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "nodes",
                "register"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"node_id\": \"\",\n  \"region\": \"\",\n  \"ip\": \"\",\n  \"port\": 8080,\n  \"capacity_mbps\": 1000\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Node Heartbeat",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/nodes/heartbeat",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "nodes",
                "heartbeat"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"node_id\": \"\",\n  \"cpu_percent\": 0,\n  \"memory_percent\": 0,\n  \"requests_served\": 0,\n  \"bandwidth_mb\": 0,\n  \"blocked_threats\": 0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Node Config",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/nodes/{node_id}/config",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "nodes",
                "{node_id}",
                "config"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Notif Channels",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/notifications/channels",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "notifications",
                "channels"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Notif Channel",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/notifications/channels",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "notifications",
                "channels"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"channel_type\": \"\",\n  \"destination\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Notif Channel",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/notifications/channels/{channel_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "notifications",
                "channels",
                "{channel_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Alert Policies",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/notifications/policies",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "notifications",
                "policies"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Update Alert Policy",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/notifications/policies",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "notifications",
                "policies"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"alert_type\": \"\",\n  \"enabled\": false\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "List Audit Log",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/audit-log",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "audit-log"
              ],
              "query": [
                {
                  "key": "category",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "offset",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Api Tokens",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/api-tokens",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "api-tokens"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Api Token",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/api-tokens",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "api-tokens"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"scopes\": [],\n  \"ip_filter\": \"\",\n  \"expires_days\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Revoke Api Token",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/api-tokens/{token_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "api-tokens",
                "{token_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Network Stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "stats"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "health"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Public Stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/public-stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "public-stats"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Geo Ab",
      "item": [
        {
          "name": "List Tests",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/geo-ab/tests",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "geo-ab",
                "tests"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Test",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/geo-ab/tests",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "geo-ab",
                "tests"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"domain_name\": \"\",\n  \"name\": \"\",\n  \"description\": \"\",\n  \"default_origin\": \"\",\n  \"rules\": []\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Test",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/geo-ab/tests/{test_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "geo-ab",
                "tests",
                "{test_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Delete Test",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/geo-ab/tests/{test_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "geo-ab",
                "tests",
                "{test_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Add Rule",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/geo-ab/tests/{test_id}/rules",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "geo-ab",
                "tests",
                "{test_id}",
                "rules"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"countries\": \"\",\n  \"origin\": \"\",\n  \"weight\": 100,\n  \"variant_name\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Toggle Test",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/geo-ab/tests/{test_id}/toggle",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "geo-ab",
                "tests",
                "{test_id}",
                "toggle"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Governance",
      "item": [
        {
          "name": "Governance Status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/governance/status",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "governance",
                "status"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Governance Nodes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/governance/nodes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "governance",
                "nodes"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Nominate Coordinator",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/governance/nominate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "governance",
                "nominate"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"candidate_node_id\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "List Coordinators",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/governance/coordinators",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "governance",
                "coordinators"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Coordinator Health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/governance/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "governance",
                "health"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Start Election",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/governance/elections/start",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "governance",
                "elections",
                "start"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"candidate_node_id\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Cast Vote",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/governance/elections/vote",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "governance",
                "elections",
                "vote"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"election_id\": \"\",\n  \"vote\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Active Election",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/governance/elections/active",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "governance",
                "elections",
                "active"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Finalize Election",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/governance/elections/finalize",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "governance",
                "elections",
                "finalize"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Election History",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/governance/elections/history",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "governance",
                "elections",
                "history"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Gpu Clusters",
      "item": [
        {
          "name": "List Clusters",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/clusters",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "clusters"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Cluster",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/clusters",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "clusters"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"cluster_type\": \"general\",\n  \"gpu_type\": \"any\",\n  \"min_gpus\": 2,\n  \"max_gpus\": 4,\n  \"region\": \"any\",\n  \"autoscale\": true,\n  \"autoscale_config\": {},\n  \"networking_config\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Scale Cluster",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/clusters/{cluster_id}/scale",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "clusters",
                "{cluster_id}",
                "scale"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"delta\": 0\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Pause Cluster",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/clusters/{cluster_id}/pause",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "clusters",
                "{cluster_id}",
                "pause"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Destroy Cluster",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/clusters/{cluster_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "clusters",
                "{cluster_id}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Gpu Marketplace",
      "item": [
        {
          "name": "Register Gpu Node",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/register",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "register"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"region\": \"auto\",\n  \"gpu_model\": \"\",\n  \"gpu_vram_gb\": 0,\n  \"gpu_compute_cap\": \"\",\n  \"gpu_driver\": \"\",\n  \"cuda_version\": \"\",\n  \"cpu_cores\": 0,\n  \"ram_gb\": 0,\n  \"disk_gb\": 0,\n  \"price_inference_1k\": 0.003,\n  \"price_gpu_hour\": 0.5,\n  \"port\": 8200\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Gpu Heartbeat",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/heartbeat",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "heartbeat"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"node_key\": \"\",\n  \"status\": \"online\",\n  \"gpu_utilization\": 0,\n  \"vram_used_gb\": 0,\n  \"cpu_utilization\": 0,\n  \"ram_used_gb\": 0,\n  \"ram_total_gb\": 0,\n  \"net_up_mbps\": 0,\n  \"net_down_mbps\": 0,\n  \"loaded_models\": []\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "List Gpu Nodes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/nodes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "nodes"
              ],
              "query": [
                {
                  "key": "region",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "status",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "tier",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Gpu Node",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/nodes/{node_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "nodes",
                "{node_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Gpu Models",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/models",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "models"
              ],
              "query": [
                {
                  "key": "tier",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "category",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Model Providers",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/models/{model_id}/providers",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "models",
                "{model_id}",
                "providers"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Gpu Stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "stats"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Node Monitoring",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/nodes/{node_id}/monitoring",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "nodes",
                "{node_id}",
                "monitoring"
              ],
              "query": [
                {
                  "key": "hours",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Seed Gpu Model",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/admin/seed-model",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "admin",
                "seed-model"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"model_id\": \"\",\n  \"display_name\": \"\",\n  \"family\": \"\",\n  \"param_size\": \"\",\n  \"quantization\": \"\",\n  \"format\": \"gguf\",\n  \"vram_required_gb\": 0,\n  \"disk_size_gb\": 0,\n  \"tier\": \"tier1\",\n  \"category\": \"general\",\n  \"context_length\": 4096,\n  \"download_url\": \"\",\n  \"sha256\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Gpu Inference",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/inference",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "inference"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"model\": \"\",\n  \"messages\": [],\n  \"max_tokens\": 1024,\n  \"temperature\": 0.7,\n  \"stream\": false,\n  \"region\": \"auto\",\n  \"max_price_per_1k\": 0.01,\n  \"payment_token\": \"USDC\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Gpu Model",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/models/{model_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "models",
                "{model_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Node Model Action",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/nodes/model-action",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "nodes",
                "model-action"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"node_key\": \"\",\n  \"model_id\": \"\",\n  \"action\": \"download\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Gpu Inference V2",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/inference/v2",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "inference",
                "v2"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"model\": \"\",\n  \"messages\": [],\n  \"max_tokens\": 1024,\n  \"temperature\": 0.7,\n  \"stream\": false,\n  \"region\": \"auto\",\n  \"max_price_per_1k\": 0.01,\n  \"payment_token\": \"USDC\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Gpu Inference Billed",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/inference/billed",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "inference",
                "billed"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"model\": \"\",\n  \"messages\": [],\n  \"max_tokens\": 1024,\n  \"temperature\": 0.7,\n  \"stream\": false,\n  \"region\": \"auto\",\n  \"max_price_per_1k\": 0.01,\n  \"payment_token\": \"USDC\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Agent Gpu Complete",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/agent/complete",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "agent",
                "complete"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"prompt\": \"\",\n  \"model\": \"auto\",\n  \"system_prompt\": \"\",\n  \"max_tokens\": 512,\n  \"temperature\": 0.7,\n  \"payment_token\": \"USDC\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Agent Available Models",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/agent/models",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "agent",
                "models"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Gpu Inference Stream",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/inference/stream",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "inference",
                "stream"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"model\": \"\",\n  \"messages\": [],\n  \"max_tokens\": 1024,\n  \"temperature\": 0.7,\n  \"stream\": false,\n  \"region\": \"auto\",\n  \"max_price_per_1k\": 0.01,\n  \"payment_token\": \"USDC\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Gpu Inference Batch",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/inference/batch",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "inference",
                "batch"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"requests\": [],\n  \"payment_token\": \"USDC\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Create Training Job",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/training/create",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "training",
                "create"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"base_model\": \"\",\n  \"job_name\": \"\",\n  \"dataset_url\": \"\",\n  \"epochs\": 3,\n  \"batch_size\": 4,\n  \"learning_rate\": 0.0002,\n  \"output_model_id\": \"\",\n  \"region\": \"auto\",\n  \"payment_token\": \"USDC\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "List Training Jobs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/training/jobs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "training",
                "jobs"
              ],
              "query": [
                {
                  "key": "status",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Training Job",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/training/jobs/{job_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "training",
                "jobs",
                "{job_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Cancel Training Job",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/training/jobs/{job_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "training",
                "jobs",
                "{job_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Submit Training Log",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/training/log",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "training",
                "log"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"node_key\": \"\",\n  \"job_id\": \"\",\n  \"epoch\": 0,\n  \"step\": 0,\n  \"loss\": 0,\n  \"learning_rate\": 0,\n  \"gpu_utilization\": 0,\n  \"vram_used_gb\": 0,\n  \"message\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Update Training Job",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/training/update",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "training",
                "update"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"node_key\": \"\",\n  \"job_id\": \"\",\n  \"status\": \"\",\n  \"gpu_hours_used\": 0,\n  \"error_message\": \"\",\n  \"output_model_id\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Rent Gpu Node",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/rent",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "rent"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"node_id\": \"\",\n  \"payment_token\": \"DCDN\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "List Rentals",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/rentals",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "rentals"
              ],
              "query": [
                {
                  "key": "status",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Stop Rental",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/rentals/{rental_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "rentals",
                "{rental_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Rental Billing Tick",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/gpu/rentals/bill-tick",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "gpu",
                "rentals",
                "bill-tick"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Image",
      "item": [
        {
          "name": "Optimize Image",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/cdn-cgi/image/",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "cdn-cgi",
                "image"
              ],
              "query": [
                {
                  "key": "url",
                  "value": "",
                  "description": "Source image URL",
                  "disabled": false
                },
                {
                  "key": "w",
                  "value": "",
                  "description": "Width",
                  "disabled": true
                },
                {
                  "key": "h",
                  "value": "",
                  "description": "Height",
                  "disabled": true
                },
                {
                  "key": "f",
                  "value": "",
                  "description": "Format: auto, webp, avif, jpeg, png",
                  "disabled": true
                },
                {
                  "key": "q",
                  "value": "",
                  "description": "Quality 1-100",
                  "disabled": true
                },
                {
                  "key": "fit",
                  "value": "",
                  "description": "Fit mode: cover, contain, fill, inside",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Image Cache Stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/cdn-cgi/image/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "cdn-cgi",
                "image",
                "stats"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Clear Image Cache",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/cdn-cgi/image/cache",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "cdn-cgi",
                "image",
                "cache"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Toggle Image Optimization",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/cdn-cgi/image/toggle/{domain_name}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "cdn-cgi",
                "image",
                "toggle",
                "{domain_name}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Invoices",
      "item": [
        {
          "name": "Download Invoice Pdf",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/invoices/{invoice_id}/pdf",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "invoices",
                "{invoice_id}",
                "pdf"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Invoices",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/invoices",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "invoices"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Logs",
      "item": [
        {
          "name": "Get Recent Logs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/logs/recent",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "logs",
                "recent"
              ],
              "query": [
                {
                  "key": "domain",
                  "value": "",
                  "description": "",
                  "disabled": false
                },
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Ingest Logs",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/logs/ingest",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "logs",
                "ingest"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Migrate",
      "item": [
        {
          "name": "List Cf Zones",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/migrate/cf/zones",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "migrate",
                "cf",
                "zones"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"api_token\": \"\",\n  \"api_key\": \"\",\n  \"email\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Preview Migration",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/migrate/cf/preview",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "migrate",
                "cf",
                "preview"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"cf\": \"\",\n  \"zone_id\": \"\",\n  \"import_dns\": true,\n  \"import_ssl\": true,\n  \"import_rules\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Execute Migration",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/migrate/cf/import",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "migrate",
                "cf",
                "import"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"cf\": \"\",\n  \"zone_id\": \"\",\n  \"import_dns\": true,\n  \"import_ssl\": true,\n  \"import_rules\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Monitoring",
      "item": [
        {
          "name": "List Monitors",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/monitoring/monitors",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "monitoring",
                "monitors"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Monitor",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/monitoring/monitors",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "monitoring",
                "monitors"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"url\": \"\",\n  \"check_type\": \"https\",\n  \"interval_seconds\": 60,\n  \"timeout_seconds\": 10,\n  \"expected_status\": 200,\n  \"alert_email\": \"\",\n  \"alert_webhook\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Monitor",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/monitoring/monitors/{monitor_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "monitoring",
                "monitors",
                "{monitor_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Update Monitor",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/monitoring/monitors/{monitor_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "monitoring",
                "monitors",
                "{monitor_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"url\": \"\",\n  \"interval_seconds\": \"\",\n  \"timeout_seconds\": \"\",\n  \"expected_status\": \"\",\n  \"alert_email\": \"\",\n  \"alert_webhook\": \"\",\n  \"enabled\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Monitor",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/monitoring/monitors/{monitor_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "monitoring",
                "monitors",
                "{monitor_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Manual Check",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/monitoring/monitors/{monitor_id}/check",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "monitoring",
                "monitors",
                "{monitor_id}",
                "check"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Public Status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/monitoring/status/{monitor_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "monitoring",
                "status",
                "{monitor_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Regions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/monitoring/regions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "monitoring",
                "regions"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Node Dashboard",
      "item": [
        {
          "name": "Node Register",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/node-dashboard/register",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "node-dashboard",
                "register"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"\",\n  \"password\": \"\",\n  \"name\": \"\",\n  \"ip\": \"\",\n  \"wallet_address\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Node Login",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/node-dashboard/login",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "node-dashboard",
                "login"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"\",\n  \"password\": \"\",\n  \"totp_code\": \"\",\n  \"remember_me\": false\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "My Nodes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/node-dashboard/my-nodes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "node-dashboard",
                "my-nodes"
              ]
            }
          },
          "response": []
        },
        {
          "name": "My Earnings",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/node-dashboard/earnings",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "node-dashboard",
                "earnings"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Node Stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/node-dashboard/stats/{node_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "node-dashboard",
                "stats",
                "{node_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Network Overview",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/node-dashboard/network",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "node-dashboard",
                "network"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Openai Compat",
      "item": [
        {
          "name": "List Models",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/models",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "models"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Chat Completions",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/chat/completions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "chat",
                "completions"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Other",
      "item": [
        {
          "name": "Root",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/",
              "host": [
                "{{base_url}}"
              ],
              "path": []
            }
          },
          "response": []
        },
        {
          "name": "Browser Proxy",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/browser/{path}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "browser",
                "{path}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Browser Proxy",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/browser/{path}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "browser",
                "{path}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Passkey",
      "item": [
        {
          "name": "Register Options",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/passkey/register-options",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "passkey",
                "register-options"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Register Verify",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/passkey/register-verify",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "passkey",
                "register-verify"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"credential\": {},\n  \"name\": \"Passkey\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Login Options",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/passkey/login-options",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "passkey",
                "login-options"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Login Verify",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/passkey/login-verify",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "passkey",
                "login-verify"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"credential\": {},\n  \"user_hint\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "List Passkeys",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/passkey/list",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "passkey",
                "list"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Delete Passkey",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/auth/passkey/delete",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "auth",
                "passkey",
                "delete"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"credential_id\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Promo",
      "item": [
        {
          "name": "Create Promo Code",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/promo/create",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "promo",
                "create"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"code\": \"\",\n  \"credit_amount\": 0.0,\n  \"campaign\": \"\",\n  \"max_uses\": \"\",\n  \"per_user_limit\": 1,\n  \"expires_in_days\": \"\",\n  \"credit_expires_in_days\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "List Promo Codes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/promo/list",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "promo",
                "list"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Toggle Promo Code",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/promo/{promo_id}/toggle",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "promo",
                "{promo_id}",
                "toggle"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Redeem Promo Code",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/promo/redeem",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "promo",
                "redeem"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"code\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Create Reseller",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/reseller/create",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "reseller",
                "create"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"user_id\": \"\",\n  \"tier\": \"base\",\n  \"company_name\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Update Reseller Tier",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/reseller/{reseller_id}/tier",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "reseller",
                "{reseller_id}",
                "tier"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"tier\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "List Resellers",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/reseller/list",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "reseller",
                "list"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Update Tier Limits",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/reseller/tier/update",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "reseller",
                "tier",
                "update"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"credit_per_user\": \"\",\n  \"monthly_credit_pool\": \"\",\n  \"min_sales_to_qualify\": \"\",\n  \"commission_bonus_pct\": \"\",\n  \"max_promos_per_reseller\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Reseller Dashboard",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/reseller/me",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "reseller",
                "me"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Reseller Create Promo",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/reseller/promo/create",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "reseller",
                "promo",
                "create"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"code\": \"\",\n  \"credit_amount\": \"\",\n  \"max_uses\": \"\",\n  \"expires_in_days\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Reseller Toggle Promo",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/reseller/promo/{promo_id}/toggle",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "reseller",
                "promo",
                "{promo_id}",
                "toggle"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Reseller Delete Promo",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/reseller/promo/{promo_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "reseller",
                "promo",
                "{promo_id}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Ssh Keys",
      "item": [
        {
          "name": "List Keys",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/ssh-keys",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "ssh-keys"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Key",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/ssh-keys",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "ssh-keys"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"public_key\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Get Key",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/ssh-keys/{key_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "ssh-keys",
                "{key_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Update Key",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/ssh-keys/{key_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "ssh-keys",
                "{key_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Key",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/ssh-keys/{key_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "ssh-keys",
                "{key_id}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Status Page",
      "item": [
        {
          "name": "Public Status Page",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/status/public/{page_slug}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "status",
                "public",
                "{page_slug}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "List Status Pages",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/status/pages",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "status",
                "pages"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Status Page",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/status/pages",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "status",
                "pages"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"\",\n  \"slug\": \"\",\n  \"description\": \"\",\n  \"monitor_ids\": []\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "List Webhooks",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/status/webhooks",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "status",
                "webhooks"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Webhook",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/status/webhooks",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "status",
                "webhooks"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"url\": \"\",\n  \"events\": [\n    \"monitor.down\",\n    \"monitor.up\",\n    \"ddos.detected\",\n    \"billing.payment\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Delete Webhook",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/status/webhooks/{webhook_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "status",
                "webhooks",
                "{webhook_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Bandwidth Usage",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/status/bandwidth",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "status",
                "bandwidth"
              ],
              "query": [
                {
                  "key": "domain",
                  "value": "",
                  "description": "",
                  "disabled": false
                }
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Support",
      "item": [
        {
          "name": "Ai Chat",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/support/chat",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "support",
                "chat"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"message\": \"\",\n  \"conversation\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Create Ticket",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/support/tickets",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "support",
                "tickets"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"subject\": \"\",\n  \"message\": \"\",\n  \"category\": \"general\",\n  \"priority\": \"normal\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "List Tickets",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/support/tickets",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "support",
                "tickets"
              ],
              "query": [
                {
                  "key": "status",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Ticket",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/support/tickets/{ticket_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "support",
                "tickets",
                "{ticket_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Reply Ticket",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/support/tickets/{ticket_id}/reply",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "support",
                "tickets",
                "{ticket_id}",
                "reply"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"message\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Close Ticket",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/support/tickets/{ticket_id}/close",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "support",
                "tickets",
                "{ticket_id}",
                "close"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Contact Sales",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/support/contact",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "support",
                "contact"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"company\": \"\",\n  \"needs\": \"\",\n  \"message\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Public Ai Chat",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/support/public-chat",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "support",
                "public-chat"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"message\": \"\",\n  \"conversation\": []\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Team",
      "item": [
        {
          "name": "List Members",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/team/members",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "team",
                "members"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Invite Member",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/team/invite",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "team",
                "invite"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"\",\n  \"role\": \"viewer\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Update Member",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/team/members/{member_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "team",
                "members",
                "{member_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"role\": \"\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": []
        },
        {
          "name": "Remove Member",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/team/members/{member_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "team",
                "members",
                "{member_id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "Accept Invite",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/team/accept/{invite_token}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "team",
                "accept",
                "{invite_token}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "X402 Payments",
      "item": [
        {
          "name": "X402 Info",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/x402/info",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "x402",
                "info"
              ]
            }
          },
          "response": []
        },
        {
          "name": "X402 Pricing",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/x402/pricing",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "x402",
                "pricing"
              ]
            }
          },
          "response": []
        },
        {
          "name": "X402 Inference",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/x402/inference",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "x402",
                "inference"
              ]
            }
          },
          "response": []
        },
        {
          "name": "X402 Browser",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/x402/browser",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "x402",
                "browser"
              ]
            }
          },
          "response": []
        },
        {
          "name": "X402 List Models",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/x402/models",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "x402",
                "models"
              ]
            }
          },
          "response": []
        },
        {
          "name": "X402 List Nodes",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/x402/nodes",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "x402",
                "nodes"
              ]
            }
          },
          "response": []
        },
        {
          "name": "X402 Stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/v1/x402/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "v1",
                "x402",
                "stats"
              ]
            }
          },
          "response": []
        }
      ]
    }
  ]
}