{
  "info": {
    "_postman_id": "1ef6e50a-5578-434b-977c-288aae8cb526",
    "name": "EqhoIDs API",
    "description": "EqhoIDs API Platform - Give your AI agents real-world identities.\n\nEnvironment variables:\n- base_url: https://api.eqhoids.com\n- api_key: Your API key (eqhoai_sk_...)",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "item": [
    {
      "name": "Ai Agent",
      "item": [
        {
          "name": "Create Task",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agent/task",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agent",
                "task"
              ],
              "variable": []
            },
            "description": "Submit a task to an AI agent. Returns a task_id for polling.",
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [],
          "_postman_id": "3cd79160-85d8-4bb7-b639-b83688e21aba"
        },
        {
          "name": "Get Task",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agent/task/:task_id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agent",
                "task",
                ":task_id"
              ],
              "variable": [
                {
                  "key": "task_id",
                  "value": "<task_id>"
                }
              ]
            },
            "description": "Check task status and retrieve results."
          },
          "response": [],
          "_postman_id": "2615e930-8bf0-4474-a4da-dc1904a60b28"
        },
        {
          "name": "Cancel Task",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agent/task/:task_id/cancel",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agent",
                "task",
                ":task_id",
                "cancel"
              ],
              "variable": [
                {
                  "key": "task_id",
                  "value": "<task_id>"
                }
              ]
            },
            "description": "Cancel a queued or running task."
          },
          "response": [],
          "_postman_id": "25eb1df1-c839-4dfa-859b-9519da372404"
        },
        {
          "name": "List Agent Types",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/agent/types",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "agent",
                "types"
              ],
              "variable": []
            },
            "description": "List available agent types and their capabilities."
          },
          "response": [],
          "_postman_id": "3b109207-b09c-4fd6-bde3-00ff3550df00"
        }
      ],
      "_postman_id": "17c2571a-496f-48d5-86a8-55e66c9e5a36"
    },
    {
      "name": "Analytics",
      "item": [
        {
          "name": "Get Usage Summary",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/analytics/usage",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "analytics",
                "usage"
              ],
              "variable": [],
              "query": [
                {
                  "key": "period",
                  "value": "",
                  "description": "YYYY-MM format, defaults to current month",
                  "disabled": true
                }
              ]
            },
            "description": "Monthly usage summary broken down by service."
          },
          "response": [],
          "_postman_id": "c666103f-a23e-4469-9de0-abc55b5c9497"
        },
        {
          "name": "Get Delivery Rates",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/analytics/delivery-rates",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "analytics",
                "delivery-rates"
              ],
              "variable": [],
              "query": [
                {
                  "key": "period",
                  "value": "",
                  "description": "YYYY-MM format",
                  "disabled": true
                }
              ]
            },
            "description": "Success/failure rates per service for the given period."
          },
          "response": [],
          "_postman_id": "85055085-ee58-4cfb-bd5d-f2e1fe91f4d3"
        },
        {
          "name": "Get Peak Usage",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/analytics/peak-usage",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "analytics",
                "peak-usage"
              ],
              "variable": [],
              "query": [
                {
                  "key": "days",
                  "value": "",
                  "description": "Lookback window in days",
                  "disabled": true
                }
              ]
            },
            "description": "Identify peak usage hours and days."
          },
          "response": [],
          "_postman_id": "525f2e49-5d6a-451a-849a-ac90bfd9e7f7"
        }
      ],
      "_postman_id": "f90b5a45-633f-47ff-8d24-9a1ad18526a6"
    },
    {
      "name": "Animate3D",
      "item": [
        {
          "name": "Create Animation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/animate3d",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "animate3d"
              ],
              "variable": []
            },
            "description": "Submit a 3D animation rendering job. Returns job_id for polling.",
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [],
          "_postman_id": "537c7dcc-4f71-48ea-adcf-6f2f144dbf0e"
        },
        {
          "name": "Get Animation Status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/animate3d/status/:job_id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "animate3d",
                "status",
                ":job_id"
              ],
              "variable": [
                {
                  "key": "job_id",
                  "value": "<job_id>"
                }
              ]
            },
            "description": "Poll for animation job status."
          },
          "response": [],
          "_postman_id": "64fd7a73-7350-4886-8dab-e2d8e9c7b079"
        },
        {
          "name": "List Animation Jobs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/animate3d/jobs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "animate3d",
                "jobs"
              ],
              "variable": [],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "offset",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            },
            "description": "List user's animation jobs."
          },
          "response": [],
          "_postman_id": "6dbedddb-59a8-41d2-be36-961aa6c5b50e"
        },
        {
          "name": "Cancel Animation Job",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/animate3d/:job_id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "animate3d",
                ":job_id"
              ],
              "variable": [
                {
                  "key": "job_id",
                  "value": "<job_id>"
                }
              ]
            },
            "description": "Cancel a queued animation job and refund the credit."
          },
          "response": [],
          "_postman_id": "5460cee8-dee6-48a0-a66a-bf3f250577e3"
        }
      ],
      "_postman_id": "ee1683b2-e8f6-4706-ab00-415caecc47d3"
    },
    {
      "name": "Audit",
      "item": [
        {
          "name": "Get Audit Logs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/audit/logs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "audit",
                "logs"
              ],
              "variable": [],
              "query": [
                {
                  "key": "action",
                  "value": "",
                  "description": "Filter by action, e.g. auth.login",
                  "disabled": true
                },
                {
                  "key": "status",
                  "value": "",
                  "description": "Filter by status: success, failure, denied",
                  "disabled": true
                },
                {
                  "key": "since",
                  "value": "",
                  "description": "ISO datetime filter",
                  "disabled": true
                },
                {
                  "key": "page",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "page_size",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            },
            "description": "Retrieve audit logs for the authenticated user."
          },
          "response": [],
          "_postman_id": "74b2b360-3362-4042-8a11-767b0188201f"
        },
        {
          "name": "List Actions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/audit/logs/actions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "audit",
                "logs",
                "actions"
              ],
              "variable": []
            },
            "description": "List all distinct action types in this user's audit log."
          },
          "response": [],
          "_postman_id": "d92a733d-4382-4157-9099-d1f129f95492"
        }
      ],
      "_postman_id": "3f4f9752-877e-4f0c-82f6-86fbc661e6cc"
    },
    {
      "name": "Auth",
      "item": [
        {
          "name": "Register",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/auth/register",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "auth",
                "register"
              ],
              "variable": []
            },
            "description": "",
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [],
          "_postman_id": "e1509af5-eabd-4689-86e1-17433df5b81b"
        },
        {
          "name": "Login",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/auth/login",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "auth",
                "login"
              ],
              "variable": []
            },
            "description": "",
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [],
          "_postman_id": "e57d62b4-3b6b-4723-b903-d3059853777a"
        },
        {
          "name": "Get Me",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/auth/me",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "auth",
                "me"
              ],
              "variable": []
            },
            "description": ""
          },
          "response": [],
          "_postman_id": "fc29a9e0-650f-4ebd-b6ef-8fa9a6f457f6"
        },
        {
          "name": "Regenerate Api Key",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/auth/regenerate-key",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "auth",
                "regenerate-key"
              ],
              "variable": []
            },
            "description": ""
          },
          "response": [],
          "_postman_id": "ca07d85d-53be-418a-8b60-a77e59c7ed82"
        },
        {
          "name": "Rotate Credentials",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/auth/credentials/rotate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "auth",
                "credentials",
                "rotate"
              ],
              "variable": []
            },
            "description": "Rotate API key with optional TTL and scope restrictions.",
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [],
          "_postman_id": "91d6c039-2838-43e6-84c3-a4fd427109d0"
        },
        {
          "name": "Get Quotas",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/auth/quotas",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "auth",
                "quotas"
              ],
              "variable": []
            },
            "description": "Current plan limits and live usage counters."
          },
          "response": [],
          "_postman_id": "abc31762-0475-47e1-b552-dd1fe3be82c8"
        },
        {
          "name": "Get Usage",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/auth/usage",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "auth",
                "usage"
              ],
              "variable": []
            },
            "description": "Current usage stats from Redis counters."
          },
          "response": [],
          "_postman_id": "3fc88b26-91f0-4d36-a8d7-2636886271b8"
        }
      ],
      "_postman_id": "e164efe1-160e-4ce6-91db-667b9b13295b"
    },
    {
      "name": "Billing",
      "item": [
        {
          "name": "List Plans",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/plans",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "plans"
              ],
              "variable": []
            },
            "description": ""
          },
          "response": [],
          "_postman_id": "640b07de-c2e6-4837-9113-c3c5246a4d85"
        },
        {
          "name": "Get Subscription",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/subscription",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "subscription"
              ],
              "variable": []
            },
            "description": ""
          },
          "response": [],
          "_postman_id": "ffc2b227-200c-4de1-93c8-7721cae24720"
        },
        {
          "name": "Create Checkout",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/checkout",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "checkout"
              ],
              "variable": [],
              "query": [
                {
                  "key": "plan",
                  "value": "",
                  "description": "",
                  "disabled": false
                }
              ]
            },
            "description": ""
          },
          "response": [],
          "_postman_id": "05892327-33d1-486e-a85c-e25220c514bd"
        },
        {
          "name": "Gumroad Checkout",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/checkout/gumroad",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "checkout",
                "gumroad"
              ],
              "variable": [],
              "query": [
                {
                  "key": "plan",
                  "value": "",
                  "description": "",
                  "disabled": false
                }
              ]
            },
            "description": "Return Gumroad checkout URL for the plan."
          },
          "response": [],
          "_postman_id": "83803ff0-80f9-49ab-9af9-cf6f07555cfb"
        },
        {
          "name": "Lemonsqueezy Checkout",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/checkout/lemonsqueezy",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "checkout",
                "lemonsqueezy"
              ],
              "variable": [],
              "query": [
                {
                  "key": "plan",
                  "value": "",
                  "description": "",
                  "disabled": false
                }
              ]
            },
            "description": "Return Lemon Squeezy checkout URL for the plan."
          },
          "response": [],
          "_postman_id": "5a1d2d06-6573-4c39-99d4-1c1394f71bbf"
        },
        {
          "name": "Paddle Webhook",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/webhook",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "webhook"
              ],
              "variable": []
            },
            "description": ""
          },
          "response": [],
          "_postman_id": "e2d9525f-fe5e-4a63-8044-0a5de42cf178"
        },
        {
          "name": "Gumroad Webhook",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/webhook/gumroad",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "webhook",
                "gumroad"
              ],
              "variable": []
            },
            "description": "Gumroad sends form-encoded POST with sale/subscription data."
          },
          "response": [],
          "_postman_id": "bf5e6dd1-cbe4-423f-b224-20f44cdc89ec"
        },
        {
          "name": "Lemon Squeezy Webhook",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/billing/webhook/lemon-squeezy",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "billing",
                "webhook",
                "lemon-squeezy"
              ],
              "variable": []
            },
            "description": "Lemon Squeezy sends JSON with X-Signature header (HMAC-SHA256)."
          },
          "response": [],
          "_postman_id": "9f530df3-1de9-45f1-8001-204d94de3f6d"
        }
      ],
      "_postman_id": "39abd7c9-41af-4851-b9cf-b19001477feb"
    },
    {
      "name": "Content Generator",
      "item": [
        {
          "name": "Generate Content",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/content/generate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "content",
                "generate"
              ],
              "variable": []
            },
            "description": "Generate content (blog post, tweet, LinkedIn post, etc.).",
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [],
          "_postman_id": "fbb3ef6b-99d2-42cb-8913-4f8c3fb98bb6"
        },
        {
          "name": "Rewrite Content",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/content/rewrite",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "content",
                "rewrite"
              ],
              "variable": []
            },
            "description": "Rewrite/improve existing text.",
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [],
          "_postman_id": "b48660dc-0da4-4959-95f9-0b615b2b7747"
        },
        {
          "name": "List Content Types",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/content/types",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "content",
                "types"
              ],
              "variable": []
            },
            "description": "List supported content types and tones."
          },
          "response": [],
          "_postman_id": "c718985a-1ce6-4f38-801a-805f92ae8ff3"
        }
      ],
      "_postman_id": "c9707297-c111-4d59-ab59-c4491986673f"
    },
    {
      "name": "Convert3D",
      "item": [
        {
          "name": "Create Conversion",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/convert3d",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "convert3d"
              ],
              "variable": []
            },
            "description": "Submit a 3D format conversion job. Returns job_id for polling.",
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [],
          "_postman_id": "3c3f2608-e384-4fe9-acde-9f6561a2a5e8"
        },
        {
          "name": "Get Conversion Status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/convert3d/status/:job_id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "convert3d",
                "status",
                ":job_id"
              ],
              "variable": [
                {
                  "key": "job_id",
                  "value": "<job_id>"
                }
              ]
            },
            "description": "Poll for conversion job status."
          },
          "response": [],
          "_postman_id": "8631bcca-22c5-49b0-8805-63276be5f59a"
        },
        {
          "name": "List Conversion Jobs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/convert3d/jobs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "convert3d",
                "jobs"
              ],
              "variable": [],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "offset",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            },
            "description": "List user's conversion jobs."
          },
          "response": [],
          "_postman_id": "316127d8-ae74-4847-a37e-a33756d8e4f8"
        },
        {
          "name": "List Formats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/convert3d/formats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "convert3d",
                "formats"
              ],
              "variable": []
            },
            "description": "List supported format conversions. No auth required."
          },
          "response": [],
          "_postman_id": "c1fcda50-d26d-43a4-a2bf-1798f214e97e"
        },
        {
          "name": "Cancel Conversion Job",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/convert3d/:job_id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "convert3d",
                ":job_id"
              ],
              "variable": [
                {
                  "key": "job_id",
                  "value": "<job_id>"
                }
              ]
            },
            "description": "Cancel a queued job and refund the credit."
          },
          "response": [],
          "_postman_id": "5ca85fc6-35f4-48f2-bbe6-80710337ba8d"
        }
      ],
      "_postman_id": "215a7d85-a307-430e-b3a0-fa24ba6dc20b"
    },
    {
      "name": "Default",
      "item": [
        {
          "name": "Health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "health"
              ],
              "variable": []
            },
            "description": ""
          },
          "response": [],
          "_postman_id": "69663e60-9521-4f62-a515-dd30b8951137"
        },
        {
          "name": "Root",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                ""
              ],
              "variable": []
            },
            "description": ""
          },
          "response": [],
          "_postman_id": "757d5838-895a-4530-a0e9-a9f8765c96dd"
        }
      ],
      "_postman_id": "1397da5c-88d4-421d-9caa-9c81829c2463"
    },
    {
      "name": "Eqhoclip",
      "item": [
        {
          "name": "Create Clip",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/clip/create",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "clip",
                "create"
              ],
              "variable": []
            },
            "description": "Create a video from product images. Returns job_id for polling.",
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [],
          "_postman_id": "cc153335-d482-4534-ae40-20d3feddbdd5"
        },
        {
          "name": "Get Clip Status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/clip/status/:job_id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "clip",
                "status",
                ":job_id"
              ],
              "variable": [
                {
                  "key": "job_id",
                  "value": "<job_id>"
                }
              ]
            },
            "description": "Poll for video generation status."
          },
          "response": [],
          "_postman_id": "95ab7ca1-cf3c-40c9-a33e-9df647e2a870"
        },
        {
          "name": "List Clip Jobs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/clip/jobs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "clip",
                "jobs"
              ],
              "variable": [],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "offset",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            },
            "description": "List user's video generation jobs."
          },
          "response": [],
          "_postman_id": "8b34f454-f284-4046-af68-88cb4c1e75a5"
        },
        {
          "name": "List Templates",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/clip/templates",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "clip",
                "templates"
              ],
              "variable": []
            },
            "description": "List available video templates. No auth required."
          },
          "response": [],
          "_postman_id": "8a0666a6-f4bb-4d0b-98fb-4265915db0df"
        },
        {
          "name": "Create Batch",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/clip/batch",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "clip",
                "batch"
              ],
              "variable": []
            },
            "description": "Create multiple videos at once. Requires Starter+ plan.",
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [],
          "_postman_id": "96abdf2c-0216-455c-8687-1d6cc8551705"
        },
        {
          "name": "Cancel Clip Job",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/clip/:job_id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "clip",
                ":job_id"
              ],
              "variable": [
                {
                  "key": "job_id",
                  "value": "<job_id>"
                }
              ]
            },
            "description": "Cancel a queued job and refund the credit."
          },
          "response": [],
          "_postman_id": "dfe78541-7ff6-4746-aab7-5df12ba5d6ce"
        }
      ],
      "_postman_id": "573b79e6-1a53-494c-b9a1-f7b34d3bbb77"
    },
    {
      "name": "Memory Rag",
      "item": [
        {
          "name": "Store Memory",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/memory/store",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "memory",
                "store"
              ],
              "variable": []
            },
            "description": ""
          },
          "response": [],
          "_postman_id": "5554a1a0-6d5c-4427-8a81-857642a1038d"
        },
        {
          "name": "Search Memory",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/memory/search",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "memory",
                "search"
              ],
              "variable": []
            },
            "description": ""
          },
          "response": [],
          "_postman_id": "12f506e8-7880-4462-a449-b1f778f6e15a"
        },
        {
          "name": "Memory Stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/memory/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "memory",
                "stats"
              ],
              "variable": []
            },
            "description": ""
          },
          "response": [],
          "_postman_id": "080837d1-84c0-497d-a8f4-9f6d201f1660"
        }
      ],
      "_postman_id": "876dafa0-bd43-4f64-9f20-c656ea5a03bc"
    },
    {
      "name": "Niche Finder",
      "item": [
        {
          "name": "Get Trending",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/niche/trending",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "niche",
                "trending"
              ],
              "variable": [],
              "query": [
                {
                  "key": "language",
                  "value": "",
                  "description": "Filter by language: python, javascript, rust, all",
                  "disabled": true
                },
                {
                  "key": "category",
                  "value": "",
                  "description": "Filter by category: ai, devtools, automation, all",
                  "disabled": true
                }
              ]
            },
            "description": "Get current GitHub trending repos categorized by niche."
          },
          "response": [],
          "_postman_id": "8e59a64b-11d3-40fb-9b02-b2405149fac0"
        },
        {
          "name": "Get Opportunities",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/niche/opportunities",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "niche",
                "opportunities"
              ],
              "variable": [],
              "query": [
                {
                  "key": "min_score",
                  "value": "",
                  "description": "Minimum opportunity score (0-100)",
                  "disabled": true
                },
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            },
            "description": "Get highest-scoring niche opportunities."
          },
          "response": [],
          "_postman_id": "f9993044-327e-48dd-bcfc-f5a7ba60f65f"
        },
        {
          "name": "Get Stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/niche/stats",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "niche",
                "stats"
              ],
              "variable": []
            },
            "description": "Summary statistics of current trending data."
          },
          "response": [],
          "_postman_id": "0282bf5e-d5ab-468d-a986-3f0f14e78a37"
        }
      ],
      "_postman_id": "4477b127-234c-4ab1-8306-005a1e98b1ff"
    },
    {
      "name": "Status",
      "item": [
        {
          "name": "Get Status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/status",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "status"
              ],
              "variable": []
            },
            "description": "Real-time health status for all platform services."
          },
          "response": [],
          "_postman_id": "7cd779b5-a466-4980-9225-22391fc4a934"
        }
      ],
      "_postman_id": "96e40b97-0529-41b7-a96b-281d35dc289e"
    },
    {
      "name": "Thumbnail3D",
      "item": [
        {
          "name": "Create Thumbnail",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/thumbnail3d",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "thumbnail3d"
              ],
              "variable": []
            },
            "description": "Submit a 3D thumbnail rendering job. Returns job_id for polling.",
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [],
          "_postman_id": "994a7870-47ad-4c85-838b-28319a71c77f"
        },
        {
          "name": "Get Thumbnail Status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/thumbnail3d/status/:job_id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "thumbnail3d",
                "status",
                ":job_id"
              ],
              "variable": [
                {
                  "key": "job_id",
                  "value": "<job_id>"
                }
              ]
            },
            "description": "Poll for thumbnail job status."
          },
          "response": [],
          "_postman_id": "986954e0-bd3b-4480-b13b-66ce3169c4d7"
        },
        {
          "name": "List Thumbnail Jobs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/thumbnail3d/jobs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "thumbnail3d",
                "jobs"
              ],
              "variable": [],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                },
                {
                  "key": "offset",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            },
            "description": "List user's thumbnail jobs."
          },
          "response": [],
          "_postman_id": "5dfa800a-a87f-48cd-b7d4-5018b57a872f"
        },
        {
          "name": "Cancel Thumbnail Job",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/thumbnail3d/:job_id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "thumbnail3d",
                ":job_id"
              ],
              "variable": [
                {
                  "key": "job_id",
                  "value": "<job_id>"
                }
              ]
            },
            "description": "Cancel a queued thumbnail job and refund the credit."
          },
          "response": [],
          "_postman_id": "301e1697-5ec2-4db6-b15f-7c5493391487"
        }
      ],
      "_postman_id": "55e55e7f-50af-489c-a92c-960f3d42c330"
    },
    {
      "name": "Video Generator",
      "item": [
        {
          "name": "Create Video",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/video/create",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "video",
                "create"
              ],
              "variable": []
            },
            "description": "Queue a video generation job. Poll /status/{job_id} for results.",
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [],
          "_postman_id": "0ed637d8-300d-4698-9b4c-a42fc6fc2ff9"
        },
        {
          "name": "Get Video Status",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/video/status/:job_id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "video",
                "status",
                ":job_id"
              ],
              "variable": [
                {
                  "key": "job_id",
                  "value": "<job_id>"
                }
              ]
            },
            "description": "Check the status of a video generation job."
          },
          "response": [],
          "_postman_id": "023b347c-0f37-42b1-b84f-7decac27bf5f"
        },
        {
          "name": "List Jobs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/video/jobs",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "video",
                "jobs"
              ],
              "variable": []
            },
            "description": "List recent video jobs for the current user."
          },
          "response": [],
          "_postman_id": "55947d8d-1636-42ce-9957-33f730a866d6"
        }
      ],
      "_postman_id": "8827092f-b60b-4d55-9ede-1fde6347d6b1"
    },
    {
      "name": "Webhooks",
      "item": [
        {
          "name": "List Events",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/webhooks/events",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhooks",
                "events"
              ],
              "variable": []
            },
            "description": "List all supported webhook event types."
          },
          "response": [],
          "_postman_id": "a090fc6f-691a-46cb-85e7-07dfa048e2ab"
        },
        {
          "name": "List Webhooks",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/webhooks",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhooks"
              ],
              "variable": []
            },
            "description": ""
          },
          "response": [],
          "_postman_id": "e88dd1af-ddab-4d5b-9f0b-f0c3fffba9f2"
        },
        {
          "name": "Create Webhook",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/webhooks",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhooks"
              ],
              "variable": []
            },
            "description": "",
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [],
          "_postman_id": "687b1e49-12c4-4103-a190-7c8c29ffd0c8"
        },
        {
          "name": "Get Webhook",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/webhooks/:webhook_id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhooks",
                ":webhook_id"
              ],
              "variable": [
                {
                  "key": "webhook_id",
                  "value": "<webhook_id>"
                }
              ]
            },
            "description": ""
          },
          "response": [],
          "_postman_id": "a3215ebe-619e-4c01-8702-ab799dcffe50"
        },
        {
          "name": "Update Webhook",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/webhooks/:webhook_id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhooks",
                ":webhook_id"
              ],
              "variable": [
                {
                  "key": "webhook_id",
                  "value": "<webhook_id>"
                }
              ]
            },
            "description": "",
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          },
          "response": [],
          "_postman_id": "9e705977-ad03-4bde-8b6d-01ba7ece870c"
        },
        {
          "name": "Delete Webhook",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/webhooks/:webhook_id",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhooks",
                ":webhook_id"
              ],
              "variable": [
                {
                  "key": "webhook_id",
                  "value": "<webhook_id>"
                }
              ]
            },
            "description": ""
          },
          "response": [],
          "_postman_id": "f6a339bf-50a6-4e26-b9b6-ea60fe70a8c3"
        },
        {
          "name": "Test Webhook",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/webhooks/:webhook_id/test",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhooks",
                ":webhook_id",
                "test"
              ],
              "variable": [
                {
                  "key": "webhook_id",
                  "value": "<webhook_id>"
                }
              ]
            },
            "description": "Send a test ping to the webhook URL."
          },
          "response": [],
          "_postman_id": "5afb2356-a49c-4a01-b171-88a75fd3f05f"
        },
        {
          "name": "Get Deliveries",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{api_key}}"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/webhooks/:webhook_id/deliveries",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhooks",
                ":webhook_id",
                "deliveries"
              ],
              "variable": [
                {
                  "key": "webhook_id",
                  "value": "<webhook_id>"
                }
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "",
                  "disabled": true
                }
              ]
            },
            "description": "Recent delivery history for a webhook."
          },
          "response": [],
          "_postman_id": "986f6cb5-44c4-422d-93df-ceb496cf4d5b"
        }
      ],
      "_postman_id": "bb699d7e-594c-4b26-9b62-84a7c7d60d19"
    }
  ],
  "variable": [
    {
      "key": "base_url",
      "value": "https://api.eqhoids.com",
      "type": "string"
    },
    {
      "key": "api_key",
      "value": "",
      "type": "string",
      "description": "Your EqhoIDs API key"
    }
  ]
}