StableOps
API reference

Import receiving addresses

Bulk-imports merchant addresses for one or more chains. Existing (chain, address) rows are skipped, normalization is applied before storage.

POST/v1/addresses/import

Authorization

bearerAuth
AuthorizationBearer <token>

Paste your API key from the dashboard (no sk_ prefix required).

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/v1/addresses/import" \  -H "Content-Type: application/json" \  -d '{    "addresses": [      {        "chain": "ethereum",        "address": "string"      }    ]  }'
{
  "imported": 0,
  "addresses": [
    {
      "id": "string",
      "chain": "ethereum",
      "address": "string",
      "label": "string",
      "mode": "single",
      "status": "available",
      "created_at": "2019-08-24T14:15:22Z"
    }
  ]
}
{
  "statusCode": -9007199254740991,
  "message": "string",
  "error": "string"
}
{
  "statusCode": -9007199254740991,
  "message": "string",
  "error": "string"
}