---
updatedAt: 2026-04-17T15:37:37.000Z
---

Fetch the complete documentation index at: https://docs.poweredbyibex.io/llms.txt. Use this file to discover all available pages before exploring further.

# All Accounts v1

**Get all IBEXHub accounts.**

This endpoint cannot be called more than 1 time per day.

# OpenAPI definition

```json
{
  "openapi": "3.1.0",
  "info": {
    "title": "sandbox-hub",
    "version": "1.0"
  },
  "servers": [
    {
      "url": "https://api-sandbox.poweredbyibex.io"
    }
  ],
  "components": {
    "securitySchemes": {
      "sec0": {
        "type": "apiKey",
        "in": "header",
        "name": "Authorization"
      }
    }
  },
  "security": [
    {
      "sec0": []
    }
  ],
  "paths": {
    "/account/all": {
      "get": {
        "summary": "All Accounts v1",
        "description": "**Get all IBEXHub accounts.**",
        "operationId": "get-all-the-accounts-of-the-user",
        "responses": {
          "200": {
            "description": "200",
            "content": {
              "application/json": {
                "examples": {
                  "Result": {
                    "value": "[\n    {\n        \"id\": \"\",\n        \"name\": \"\",\n        \"currencyId\": 0\n    },\n]"
                  }
                }
              }
            }
          },
          "400": {
            "description": "400",
            "content": {
              "application/json": {
                "examples": {
                  "Result": {
                    "value": "{\n    \"error\": \"\"\n}"
                  }
                },
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": ""
                    }
                  }
                }
              }
            }
          },
          "401": {
            "description": "401",
            "content": {
              "application/json": {
                "examples": {
                  "Result": {
                    "value": "{\n    // Response\n}"
                  }
                },
                "schema": {
                  "type": "object",
                  "properties": {}
                }
              }
            }
          }
        },
        "deprecated": false,
        "parameters": [
          {
            "in": "query",
            "name": "page",
            "schema": {
              "type": "integer",
              "default": "0"
            },
            "description": "Page index, default 0."
          },
          {
            "in": "query",
            "name": "limit",
            "schema": {
              "type": "integer",
              "default": "10"
            },
            "description": "Limit between 5 and 20."
          },
          {
            "in": "query",
            "name": "filter",
            "schema": {
              "type": "string"
            },
            "description": "Name filter."
          },
          {
            "in": "query",
            "name": "archived",
            "schema": {
              "type": "string",
              "default": "false"
            },
            "description": "Get the archived accounts, default false."
          }
        ]
      }
    }
  },
  "x-readme": {
    "headers": [],
    "explorer-enabled": true,
    "proxy-enabled": true
  },
  "x-readme-fauxas": true
}
```