---
updatedAt: 2026-01-08T00:29:33.000Z
---

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

# Create Receive info

The data field can vary depending on combinations.

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "1.0.0",
    "title": "Hub Sandbox"
  },
  "servers": [
    {
      "url": "https://api-sandbox.poweredbyibex.io"
    }
  ],
  "paths": {
    "/accounts/{account_id}/crypto/receive-infos": {
      "post": {
        "description": "",
        "operationId": "post_accounts{account_id}cryptoreceive-infos",
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string"
                    },
                    "id": {
                      "type": "string"
                    },
                    "type": {
                      "type": "string"
                    },
                    "data": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "name"
                  ]
                }
              }
            }
          }
        },
        "parameters": [
          {
            "in": "path",
            "name": "account_id",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "network": {
                    "type": "string"
                  }
                },
                "required": [
                  "name",
                  "network"
                ]
              }
            }
          }
        }
      }
    }
  },
  "x-readme": {
    "explorer-enabled": false,
    "proxy-enabled": true
  }
}
```