> 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.

# Send funds

POST https://your-endpoint.example.com/send
Content-Type: application/json

Signs and broadcasts a transfer, and returns as soon as the network accepts it.

⚠️ **A `txHash` is not a confirmation.** Poll `/txid` until `status` flips from `pending` to `success` or `failed`.

## The fee comes out of the amount — for native assets

**Native transfers (BTC, ETH, BNB, POL, TRX, SOL) are sent net of the network fee: the recipient receives `amount` − `fee`, not `amount`.** The transfer is sized so that the total leaving the wallet equals exactly the `amount` you asked for. If you need the recipient to receive an exact figure, add the fee (quote it with `/fee`) to the `amount` you send.

**Token transfers (USDT, USDC) deliver the full `amount`.** Their fee is paid separately, in the chain's native coin — so a token wallet also needs a native balance for gas.

## Amounts

`amount` is a **human-decimal string** (`"0.5"`), matched against `/^\d+(\.\d+)?$/` and parsed to base units with the asset's decimals. Never send base units, and never send a float you produced by arithmetic.

Minimums are enforced: **0.00001 BTC**, and **0.0001** for a native EVM send (ETH, BNB, POL). Token sends must be greater than zero. An amount with more decimal places than the asset supports is rejected.

## Sender

The **sender is resolved server-side** from `userId` + `assetId`. A client can never supply a private key or a from-address. `recipient` must differ from the sender.

Reference: https://docs.walletstech.com/api-reference/transfers/send-transfer

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: Blockchain Wallet Service
  version: 1.0.0
paths:
  /send:
    post:
      operationId: sendTransfer
      summary: Send funds
      description: >-
        Signs and broadcasts a transfer, and returns as soon as the network
        accepts it.


        ⚠️ **A `txHash` is not a confirmation.** Poll `/txid` until `status`
        flips from `pending` to `success` or `failed`.


        ## The fee comes out of the amount — for native assets


        **Native transfers (BTC, ETH, BNB, POL, TRX, SOL) are sent net of the
        network fee: the recipient receives `amount` − `fee`, not `amount`.**
        The transfer is sized so that the total leaving the wallet equals
        exactly the `amount` you asked for. If you need the recipient to receive
        an exact figure, add the fee (quote it with `/fee`) to the `amount` you
        send.


        **Token transfers (USDT, USDC) deliver the full `amount`.** Their fee is
        paid separately, in the chain's native coin — so a token wallet also
        needs a native balance for gas.


        ## Amounts


        `amount` is a **human-decimal string** (`"0.5"`), matched against
        `/^\d+(\.\d+)?$/` and parsed to base units with the asset's decimals.
        Never send base units, and never send a float you produced by
        arithmetic.


        Minimums are enforced: **0.00001 BTC**, and **0.0001** for a native EVM
        send (ETH, BNB, POL). Token sends must be greater than zero. An amount
        with more decimal places than the asset supports is rejected.


        ## Sender


        The **sender is resolved server-side** from `userId` + `assetId`. A
        client can never supply a private key or a from-address. `recipient`
        must differ from the sender.
      tags:
        - transfers
      parameters:
        - name: Authorization
          in: header
          description: >-
            A 15-minute token from `/auth`. Required on every endpoint except
            `/auth`.
          required: true
          schema:
            type: string
        - name: X-Request-Id
          in: header
          description: >-
            Correlation id. Generated if omitted, echoed on every response, and
            written to the audit log.
          required: false
          schema:
            type: string
        - name: X-USER-ID
          in: header
          description: >-
            Sent by the trusted gateway. When present it **overrides** any
            `userId` in the body.
          required: false
          schema:
            $ref: '#/components/schemas/UserId'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Transfers_sendTransfer_Response_200'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: >-
            Unauthorized — a wrong keystore password, or a missing/expired
            bearer token. Nothing is signed or broadcast.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '402':
          description: >-
            Payment Required — the wallet cannot cover the transfer. Nothing is
            signed or broadcast.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: >-
            Unprocessable — the amount is smaller than the network fee that
            would be deducted from it (native sends).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '502':
          description: >-
            Bad Gateway — the chain rejected the broadcast (TRON). The transfer
            did not go out.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: >-
            Service Unavailable — this deployment is not configured for that
            chain. Permanent, not a transient outage: do not retry.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                userId:
                  $ref: '#/components/schemas/UserId'
                assetId:
                  $ref: '#/components/schemas/AssetId'
                recipient:
                  type: string
                  description: >-
                    Destination address on the asset's chain. Must differ from
                    the sender.
                amount:
                  type: string
                  description: >-
                    Human-decimal amount, e.g. `"0.5"`. Never base units, never
                    a float.
                password:
                  $ref: '#/components/schemas/Password'
              required:
                - userId
                - assetId
                - recipient
                - amount
                - password
servers:
  - url: https://your-endpoint.example.com
    description: >-
      Placeholder. Each client is issued its own base URL — there is no shared
      public host. Replace this with the endpoint you were given.
components:
  schemas:
    UserId:
      type: string
      description: 24-character hex id, returned by `/create`.
      title: UserId
    AssetId:
      type: string
      enum:
        - '1'
        - '2'
        - '21'
        - '22'
        - '3'
        - '31'
        - '32'
        - '4'
        - '41'
        - '42'
        - '5'
        - '51'
        - '52'
        - '6'
        - '61'
        - '62'
      description: >-
        Primary asset selector. An all-digit string (`"21"`) is accepted and
        normalised to an integer.


        - `1` — BITCOIN BTC (native, 8 decimals)

        - `2` — ETHEREUM ETH (native, 18 decimals)

        - `21` — ETHEREUM USDT (ERC20, 6 decimals)

        - `22` — ETHEREUM USDC (ERC20, 6 decimals)

        - `3` — BNB BNB (native, 18 decimals)

        - `31` — BNB USDT (BEP20, 18 decimals)

        - `32` — BNB USDC (BEP20, 18 decimals)

        - `4` — TRON TRX (native, 6 decimals)

        - `41` — TRON USDT (TRC20, 6 decimals)

        - `42` — TRON USDC (TRC20, 6 decimals)

        - `5` — POLYGON POL (native, 18 decimals)

        - `51` — POLYGON USDT (ERC20, 6 decimals) — mainnet only

        - `52` — POLYGON USDC (ERC20, 6 decimals)

        - `6` — SOLANA SOL (native, 9 decimals)

        - `61` — SOLANA USDT (SPL, 6 decimals) — mainnet only

        - `62` — SOLANA USDC (SPL, 6 decimals)
      title: AssetId
    Password:
      type: string
      description: >-
        Keystore password (AES-256-GCM, scrypt KDF). Unrecoverable — required by
        `/send` and `/extend`.
      title: Password
    SendPostResponsesContentApplicationJsonSchemaResult:
      type: object
      properties:
        txHash:
          type: string
          description: Broadcast hash. **Not a confirmation** — poll `/txid` for status.
      required:
        - txHash
      title: SendPostResponsesContentApplicationJsonSchemaResult
    RequestId:
      type: string
      description: Echo of the inbound `X-Request-Id`, or a generated one.
      title: RequestId
    Transfers_sendTransfer_Response_200:
      type: object
      properties:
        result:
          $ref: >-
            #/components/schemas/SendPostResponsesContentApplicationJsonSchemaResult
        requestId:
          $ref: '#/components/schemas/RequestId'
      required:
        - result
        - requestId
      title: Transfers_sendTransfer_Response_200
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
          description: Safe, client-facing message. Internal detail never leaks here.
        error:
          type: string
          description: The HTTP status code, as a string.
        requestId:
          $ref: '#/components/schemas/RequestId'
      required:
        - message
        - error
        - requestId
      title: ErrorResponse
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        A 15-minute token from `/auth`. Required on every endpoint except
        `/auth`.

```

## Examples

### BITCOIN BTC — assetId 1



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 1,
  "recipient": "bc1q3e684gwc5ng7c72s3aup3284weejzv8zevmfun",
  "amount": "0.001",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python BITCOIN BTC — assetId 1
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 1,
    "recipient": "bc1q3e684gwc5ng7c72s3aup3284weejzv8zevmfun",
    "amount": "0.001",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript BITCOIN BTC — assetId 1
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":1,"recipient":"bc1q3e684gwc5ng7c72s3aup3284weejzv8zevmfun","amount":"0.001","password":"changeme123"}'
};

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

```go BITCOIN BTC — assetId 1
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 1,\n  \"recipient\": \"bc1q3e684gwc5ng7c72s3aup3284weejzv8zevmfun\",\n  \"amount\": \"0.001\",\n  \"password\": \"changeme123\"\n}")

	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 BITCOIN BTC — assetId 1
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 1,\n  \"recipient\": \"bc1q3e684gwc5ng7c72s3aup3284weejzv8zevmfun\",\n  \"amount\": \"0.001\",\n  \"password\": \"changeme123\"\n}"

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

```java BITCOIN BTC — assetId 1
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 1,\n  \"recipient\": \"bc1q3e684gwc5ng7c72s3aup3284weejzv8zevmfun\",\n  \"amount\": \"0.001\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php BITCOIN BTC — assetId 1
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 1,
  "recipient": "bc1q3e684gwc5ng7c72s3aup3284weejzv8zevmfun",
  "amount": "0.001",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp BITCOIN BTC — assetId 1
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 1,\n  \"recipient\": \"bc1q3e684gwc5ng7c72s3aup3284weejzv8zevmfun\",\n  \"amount\": \"0.001\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift BITCOIN BTC — assetId 1
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 1,
  "recipient": "bc1q3e684gwc5ng7c72s3aup3284weejzv8zevmfun",
  "amount": "0.001",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```

### ETHEREUM ETH — assetId 2



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 2,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "0.05",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python ETHEREUM ETH — assetId 2
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 2,
    "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
    "amount": "0.05",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript ETHEREUM ETH — assetId 2
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":2,"recipient":"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190","amount":"0.05","password":"changeme123"}'
};

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

```go ETHEREUM ETH — assetId 2
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 2,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"0.05\",\n  \"password\": \"changeme123\"\n}")

	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 ETHEREUM ETH — assetId 2
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 2,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"0.05\",\n  \"password\": \"changeme123\"\n}"

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

```java ETHEREUM ETH — assetId 2
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 2,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"0.05\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php ETHEREUM ETH — assetId 2
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 2,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "0.05",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp ETHEREUM ETH — assetId 2
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 2,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"0.05\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift ETHEREUM ETH — assetId 2
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 2,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "0.05",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```

### ETHEREUM USDT (ERC20) — assetId 21



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 21,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "25.5",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python ETHEREUM USDT (ERC20) — assetId 21
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 21,
    "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
    "amount": "25.5",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript ETHEREUM USDT (ERC20) — assetId 21
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":21,"recipient":"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190","amount":"25.5","password":"changeme123"}'
};

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

```go ETHEREUM USDT (ERC20) — assetId 21
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 21,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}")

	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 ETHEREUM USDT (ERC20) — assetId 21
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 21,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}"

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

```java ETHEREUM USDT (ERC20) — assetId 21
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 21,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php ETHEREUM USDT (ERC20) — assetId 21
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 21,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "25.5",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp ETHEREUM USDT (ERC20) — assetId 21
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 21,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift ETHEREUM USDT (ERC20) — assetId 21
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 21,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "25.5",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```

### ETHEREUM USDC (ERC20) — assetId 22



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 22,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "100",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python ETHEREUM USDC (ERC20) — assetId 22
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 22,
    "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
    "amount": "100",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript ETHEREUM USDC (ERC20) — assetId 22
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":22,"recipient":"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190","amount":"100","password":"changeme123"}'
};

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

```go ETHEREUM USDC (ERC20) — assetId 22
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 22,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}")

	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 ETHEREUM USDC (ERC20) — assetId 22
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 22,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}"

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

```java ETHEREUM USDC (ERC20) — assetId 22
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 22,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php ETHEREUM USDC (ERC20) — assetId 22
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 22,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "100",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp ETHEREUM USDC (ERC20) — assetId 22
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 22,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift ETHEREUM USDC (ERC20) — assetId 22
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 22,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "100",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```

### BNB BNB — assetId 3



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 3,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "0.1",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python BNB BNB — assetId 3
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 3,
    "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
    "amount": "0.1",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript BNB BNB — assetId 3
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":3,"recipient":"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190","amount":"0.1","password":"changeme123"}'
};

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

```go BNB BNB — assetId 3
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 3,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"0.1\",\n  \"password\": \"changeme123\"\n}")

	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 BNB BNB — assetId 3
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 3,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"0.1\",\n  \"password\": \"changeme123\"\n}"

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

```java BNB BNB — assetId 3
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 3,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"0.1\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php BNB BNB — assetId 3
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 3,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "0.1",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp BNB BNB — assetId 3
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 3,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"0.1\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift BNB BNB — assetId 3
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 3,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "0.1",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```

### BNB USDT (BEP20) — assetId 31



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 31,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "25.5",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python BNB USDT (BEP20) — assetId 31
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 31,
    "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
    "amount": "25.5",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript BNB USDT (BEP20) — assetId 31
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":31,"recipient":"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190","amount":"25.5","password":"changeme123"}'
};

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

```go BNB USDT (BEP20) — assetId 31
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 31,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}")

	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 BNB USDT (BEP20) — assetId 31
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 31,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}"

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

```java BNB USDT (BEP20) — assetId 31
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 31,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php BNB USDT (BEP20) — assetId 31
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 31,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "25.5",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp BNB USDT (BEP20) — assetId 31
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 31,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift BNB USDT (BEP20) — assetId 31
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 31,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "25.5",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```

### BNB USDC (BEP20) — assetId 32



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 32,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "100",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python BNB USDC (BEP20) — assetId 32
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 32,
    "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
    "amount": "100",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript BNB USDC (BEP20) — assetId 32
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":32,"recipient":"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190","amount":"100","password":"changeme123"}'
};

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

```go BNB USDC (BEP20) — assetId 32
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 32,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}")

	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 BNB USDC (BEP20) — assetId 32
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 32,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}"

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

```java BNB USDC (BEP20) — assetId 32
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 32,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php BNB USDC (BEP20) — assetId 32
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 32,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "100",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp BNB USDC (BEP20) — assetId 32
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 32,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift BNB USDC (BEP20) — assetId 32
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 32,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "100",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```

### TRON TRX — assetId 4



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 4,
  "recipient": "TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ",
  "amount": "100",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python TRON TRX — assetId 4
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 4,
    "recipient": "TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ",
    "amount": "100",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript TRON TRX — assetId 4
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":4,"recipient":"TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ","amount":"100","password":"changeme123"}'
};

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

```go TRON TRX — assetId 4
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 4,\n  \"recipient\": \"TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}")

	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 TRON TRX — assetId 4
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 4,\n  \"recipient\": \"TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}"

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

```java TRON TRX — assetId 4
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 4,\n  \"recipient\": \"TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php TRON TRX — assetId 4
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 4,
  "recipient": "TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ",
  "amount": "100",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp TRON TRX — assetId 4
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 4,\n  \"recipient\": \"TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift TRON TRX — assetId 4
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 4,
  "recipient": "TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ",
  "amount": "100",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```

### TRON USDT (TRC20) — assetId 41



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 41,
  "recipient": "TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ",
  "amount": "25.5",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python TRON USDT (TRC20) — assetId 41
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 41,
    "recipient": "TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ",
    "amount": "25.5",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript TRON USDT (TRC20) — assetId 41
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":41,"recipient":"TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ","amount":"25.5","password":"changeme123"}'
};

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

```go TRON USDT (TRC20) — assetId 41
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 41,\n  \"recipient\": \"TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}")

	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 TRON USDT (TRC20) — assetId 41
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 41,\n  \"recipient\": \"TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}"

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

```java TRON USDT (TRC20) — assetId 41
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 41,\n  \"recipient\": \"TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php TRON USDT (TRC20) — assetId 41
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 41,
  "recipient": "TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ",
  "amount": "25.5",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp TRON USDT (TRC20) — assetId 41
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 41,\n  \"recipient\": \"TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift TRON USDT (TRC20) — assetId 41
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 41,
  "recipient": "TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ",
  "amount": "25.5",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```

### TRON USDC (TRC20) — assetId 42



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 42,
  "recipient": "TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ",
  "amount": "100",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python TRON USDC (TRC20) — assetId 42
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 42,
    "recipient": "TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ",
    "amount": "100",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript TRON USDC (TRC20) — assetId 42
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":42,"recipient":"TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ","amount":"100","password":"changeme123"}'
};

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

```go TRON USDC (TRC20) — assetId 42
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 42,\n  \"recipient\": \"TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}")

	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 TRON USDC (TRC20) — assetId 42
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 42,\n  \"recipient\": \"TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}"

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

```java TRON USDC (TRC20) — assetId 42
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 42,\n  \"recipient\": \"TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php TRON USDC (TRC20) — assetId 42
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 42,
  "recipient": "TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ",
  "amount": "100",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp TRON USDC (TRC20) — assetId 42
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 42,\n  \"recipient\": \"TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift TRON USDC (TRC20) — assetId 42
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 42,
  "recipient": "TDAG1JbfuCRcJ4kFLqTvpwdxPWPfpm37pZ",
  "amount": "100",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```

### POLYGON POL — assetId 5



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 5,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "5",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python POLYGON POL — assetId 5
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 5,
    "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
    "amount": "5",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript POLYGON POL — assetId 5
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":5,"recipient":"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190","amount":"5","password":"changeme123"}'
};

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

```go POLYGON POL — assetId 5
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 5,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"5\",\n  \"password\": \"changeme123\"\n}")

	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 POLYGON POL — assetId 5
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 5,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"5\",\n  \"password\": \"changeme123\"\n}"

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

```java POLYGON POL — assetId 5
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 5,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"5\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php POLYGON POL — assetId 5
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 5,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "5",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp POLYGON POL — assetId 5
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 5,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"5\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift POLYGON POL — assetId 5
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 5,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "5",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```

### POLYGON USDT (ERC20) — assetId 51



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 51,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "25.5",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python POLYGON USDT (ERC20) — assetId 51
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 51,
    "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
    "amount": "25.5",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript POLYGON USDT (ERC20) — assetId 51
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":51,"recipient":"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190","amount":"25.5","password":"changeme123"}'
};

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

```go POLYGON USDT (ERC20) — assetId 51
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 51,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}")

	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 POLYGON USDT (ERC20) — assetId 51
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 51,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}"

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

```java POLYGON USDT (ERC20) — assetId 51
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 51,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php POLYGON USDT (ERC20) — assetId 51
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 51,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "25.5",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp POLYGON USDT (ERC20) — assetId 51
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 51,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift POLYGON USDT (ERC20) — assetId 51
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 51,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "25.5",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```

### POLYGON USDC (ERC20) — assetId 52



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 52,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "100",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python POLYGON USDC (ERC20) — assetId 52
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 52,
    "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
    "amount": "100",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript POLYGON USDC (ERC20) — assetId 52
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":52,"recipient":"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190","amount":"100","password":"changeme123"}'
};

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

```go POLYGON USDC (ERC20) — assetId 52
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 52,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}")

	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 POLYGON USDC (ERC20) — assetId 52
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 52,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}"

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

```java POLYGON USDC (ERC20) — assetId 52
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 52,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php POLYGON USDC (ERC20) — assetId 52
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 52,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "100",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp POLYGON USDC (ERC20) — assetId 52
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 52,\n  \"recipient\": \"0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift POLYGON USDC (ERC20) — assetId 52
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 52,
  "recipient": "0x1cc5ca781f2f9ee13eb89283f71abaa24bb61190",
  "amount": "100",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```

### SOLANA SOL — assetId 6



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 6,
  "recipient": "FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7",
  "amount": "0.25",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python SOLANA SOL — assetId 6
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 6,
    "recipient": "FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7",
    "amount": "0.25",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript SOLANA SOL — assetId 6
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":6,"recipient":"FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7","amount":"0.25","password":"changeme123"}'
};

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

```go SOLANA SOL — assetId 6
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 6,\n  \"recipient\": \"FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7\",\n  \"amount\": \"0.25\",\n  \"password\": \"changeme123\"\n}")

	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 SOLANA SOL — assetId 6
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 6,\n  \"recipient\": \"FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7\",\n  \"amount\": \"0.25\",\n  \"password\": \"changeme123\"\n}"

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

```java SOLANA SOL — assetId 6
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 6,\n  \"recipient\": \"FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7\",\n  \"amount\": \"0.25\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php SOLANA SOL — assetId 6
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 6,
  "recipient": "FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7",
  "amount": "0.25",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp SOLANA SOL — assetId 6
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 6,\n  \"recipient\": \"FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7\",\n  \"amount\": \"0.25\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift SOLANA SOL — assetId 6
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 6,
  "recipient": "FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7",
  "amount": "0.25",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```

### SOLANA USDT (SPL) — assetId 61



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 61,
  "recipient": "FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7",
  "amount": "25.5",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python SOLANA USDT (SPL) — assetId 61
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 61,
    "recipient": "FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7",
    "amount": "25.5",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript SOLANA USDT (SPL) — assetId 61
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":61,"recipient":"FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7","amount":"25.5","password":"changeme123"}'
};

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

```go SOLANA USDT (SPL) — assetId 61
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 61,\n  \"recipient\": \"FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}")

	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 SOLANA USDT (SPL) — assetId 61
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 61,\n  \"recipient\": \"FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}"

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

```java SOLANA USDT (SPL) — assetId 61
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 61,\n  \"recipient\": \"FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php SOLANA USDT (SPL) — assetId 61
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 61,
  "recipient": "FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7",
  "amount": "25.5",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp SOLANA USDT (SPL) — assetId 61
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 61,\n  \"recipient\": \"FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7\",\n  \"amount\": \"25.5\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift SOLANA USDT (SPL) — assetId 61
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 61,
  "recipient": "FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7",
  "amount": "25.5",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```

### SOLANA USDC (SPL) — assetId 62



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 62,
  "recipient": "FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7",
  "amount": "100",
  "password": "changeme123"
}
```

**Response**

```json
{
  "result": {
    "txHash": "4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python SOLANA USDC (SPL) — assetId 62
import requests

url = "https://your-endpoint.example.com/send"

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 62,
    "recipient": "FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7",
    "amount": "100",
    "password": "changeme123"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript SOLANA USDC (SPL) — assetId 62
const url = 'https://your-endpoint.example.com/send';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":62,"recipient":"FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7","amount":"100","password":"changeme123"}'
};

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

```go SOLANA USDC (SPL) — assetId 62
package main

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

func main() {

	url := "https://your-endpoint.example.com/send"

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 62,\n  \"recipient\": \"FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}")

	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 SOLANA USDC (SPL) — assetId 62
require 'uri'
require 'net/http'

url = URI("https://your-endpoint.example.com/send")

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 = "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 62,\n  \"recipient\": \"FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}"

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

```java SOLANA USDC (SPL) — assetId 62
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/send")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 62,\n  \"recipient\": \"FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}")
  .asString();
```

```php SOLANA USDC (SPL) — assetId 62
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/send', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 62,
  "recipient": "FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7",
  "amount": "100",
  "password": "changeme123"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp SOLANA USDC (SPL) — assetId 62
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/send");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 62,\n  \"recipient\": \"FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7\",\n  \"amount\": \"100\",\n  \"password\": \"changeme123\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift SOLANA USDC (SPL) — assetId 62
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 62,
  "recipient": "FYf9qLEEU29u5EjzXssNzJyUCYa5nY3CaQtBmhSsrwV7",
  "amount": "100",
  "password": "changeme123"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/send")! 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()
```