> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.walletstech.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.walletstech.com/_mcp/server.

# List the platform wallet addresses

POST https://api-demo.walletstech.com/platform/addresses
Content-Type: application/json

One address per chain for **your platform's own wallet** — the twin of [`/addresses`](/api-reference/wallets/get-addresses), minus the `userId`. Fund the wallet at these addresses.

Do not send an `X-USER-ID` header here — a platform endpoint always acts as the platform wallet, and sending one is a `400`.

Reference: https://docs.walletstech.com/api-reference/platform-wallet/get-platform-addresses

## Authentication

- `Authorization` header (bearer token, required) — A 15-minute token from `/auth`. Required on every endpoint except `/auth`.

## Servers

- `https://api-demo.walletstech.com` (Sandbox. Develop and test here. Requires its own credentials., default)
- `https://api.walletstech.com` (Production — real funds, and transfers that cannot be reversed. Requires its own credentials.)

## Request

### Headers

- `X-Request-Id` (string, optional) — Correlation id. Generated if omitted, echoed on every response, and written to the audit log. **`/send` is the exception — there it is required, and it doubles as the idempotency key.**

## Response

### 200

OK

- `result` (map from string to string, required) — One address per chain the user holds a wallet on, limited to the chains your api client is enabled for.
- `requestId` (string, required) — Echo of the inbound `X-Request-Id`, or a generated one.

## Errors

### 400 Bad Request Error

Bad Request

- `message` (string, required) — Safe, client-facing message. Internal detail never leaks here.
- `error` (string, required) — The HTTP status code, as a string.
- `requestId` (string, required) — Echo of the inbound `X-Request-Id`, or a generated one.

### 401 Unauthorized Error

Unauthorized — no bearer token, or one that does not verify. Get a fresh access token from `/refresh` (or `/auth`) and replay the request.

- `message` (string, required) — Safe, client-facing message. Internal detail never leaks here.
- `error` (string, required) — The HTTP status code, as a string.
- `requestId` (string, required) — Echo of the inbound `X-Request-Id`, or a generated one.

### 404 Not Found Error

Not Found — your api client has no platform wallet yet. It is provisioned by the service operator; ask for it, then retry.

- `message` (string, required) — Safe, client-facing message. Internal detail never leaks here.
- `error` (string, required) — The HTTP status code, as a string.
- `requestId` (string, required) — Echo of the inbound `X-Request-Id`, or a generated one.

## Examples

**Request**

```json
{}
```

**Response**

```json
{
  "result": {
    "BITCOIN": "bc1q5psk2q8t4x495ap75zghxmyvlmk59lr2u93r6j",
    "BSC": "0xc0c548339ee2af89c078200cabd1b7c7b47d911a",
    "ETHEREUM": "0xc0c548339ee2af89c078200cabd1b7c7b47d911a",
    "POLYGON": "0xc0c548339ee2af89c078200cabd1b7c7b47d911a",
    "SOLANA": "EB81pobCpSX16xKeuwYyNMDuZEcpWuHcmimQ9LbdT63d",
    "TRON": "THxvJmtZghePy5XqDE7HKawvFAsAgxcWZt"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python Platform wallet addresses
import requests

url = "https://api-demo.walletstech.com/platform/addresses"

payload = {}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```javascript Platform wallet addresses
const url = 'https://api-demo.walletstech.com/platform/addresses';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Platform wallet addresses
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://api-demo.walletstech.com/platform/addresses"

	payload := strings.NewReader("{}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Platform wallet addresses
require 'uri'
require 'net/http'

url = URI("https://api-demo.walletstech.com/platform/addresses")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{}"

response = http.request(request)
puts response.read_body
```

```java Platform wallet addresses
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://api-demo.walletstech.com/platform/addresses")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{}")
  .asString();
```

```php Platform wallet addresses
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://api-demo.walletstech.com/platform/addresses', [
  'body' => '{}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp Platform wallet addresses
using RestSharp;

var client = new RestClient("https://api-demo.walletstech.com/platform/addresses");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift Platform wallet addresses
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://api-demo.walletstech.com/platform/addresses")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```