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

# Get a transaction

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

One transaction, in the same row shape as `/transactions`. This is how you confirm a `/send`: poll until `status` is no longer `pending`.

The hash format is chain-specific — a malformed hash is a `400`, an unknown one is a `404`.

Reference: https://docs.walletstech.com/api-reference/transactions/get-transaction

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: Blockchain Wallet Service
  version: 1.0.0
paths:
  /txid:
    post:
      operationId: getTransaction
      summary: Get a transaction
      description: >-
        One transaction, in the same row shape as `/transactions`. This is how
        you confirm a `/send`: poll until `status` is no longer `pending`.


        The hash format is chain-specific — a malformed hash is a `400`, an
        unknown one is a `404`.
      tags:
        - transactions
      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/Transactions_getTransaction_Response_200'
        '400':
          description: Bad Request — the message differs by chain family.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not Found
          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'
                txHash:
                  type: string
                  description: >-
                    Chain-specific: `0x` + 64 hex on EVM, 64 hex on Bitcoin and
                    Tron, a base58 signature on Solana.
              required:
                - userId
                - assetId
                - txHash
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
    TransactionType:
      type: string
      enum:
        - send
        - receive
      description: >-
        Direction relative to this user. `null` on EVM token lookups when the
        receipt carries no matching Transfer log.
      title: TransactionType
    TransactionStatus:
      type: string
      enum:
        - pending
        - success
        - failed
      title: TransactionStatus
    Transaction:
      type: object
      properties:
        hash:
          type: string
        type:
          $ref: '#/components/schemas/TransactionType'
          description: >-
            Direction relative to this user. `null` on EVM token lookups when
            the receipt carries no matching Transfer log.
        amount:
          type:
            - string
            - 'null'
          description: >-
            Amount denominated in the asset. `null` on EVM token lookups when
            the receipt carries no matching Transfer log.
        fee:
          type: string
          description: Fee denominated in the chain's **native** currency.
        status:
          $ref: '#/components/schemas/TransactionStatus'
        date:
          type:
            - string
            - 'null'
          format: date-time
          description: Block time. `null` while the transaction is unconfirmed.
      required:
        - hash
        - type
        - amount
        - fee
        - status
        - date
      description: >-
        A chain-agnostic transaction row. Every chain is normalised to this
        shape.
      title: Transaction
    RequestId:
      type: string
      description: Echo of the inbound `X-Request-Id`, or a generated one.
      title: RequestId
    Transactions_getTransaction_Response_200:
      type: object
      properties:
        result:
          $ref: '#/components/schemas/Transaction'
        requestId:
          $ref: '#/components/schemas/RequestId'
      required:
        - result
        - requestId
      title: Transactions_getTransaction_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 — assetId 1 — Confirmed



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 1,
  "txHash": "3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015"
}
```

**Response**

```json
{
  "result": {
    "hash": "3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015",
    "type": "send",
    "amount": "0.001",
    "fee": "0.00002820",
    "status": "success",
    "date": "2026-07-11T09:14:22.000Z"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python BITCOIN — assetId 1 — Confirmed
import requests

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

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 1,
    "txHash": "3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript BITCOIN — assetId 1 — Confirmed
const url = 'https://your-endpoint.example.com/txid';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":1,"txHash":"3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015"}'
};

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

```go BITCOIN — assetId 1 — Confirmed
package main

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

func main() {

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

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 1,\n  \"txHash\": \"3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015\"\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 — assetId 1 — Confirmed
require 'uri'
require 'net/http'

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

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  \"txHash\": \"3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015\"\n}"

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

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

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/txid")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 1,\n  \"txHash\": \"3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015\"\n}")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/txid', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 1,
  "txHash": "3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

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

var client = new RestClient("https://your-endpoint.example.com/txid");
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  \"txHash\": \"3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift BITCOIN — assetId 1 — Confirmed
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 1,
  "txHash": "3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015"
] as [String : Any]

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

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

### BITCOIN — assetId 1 — Still pending



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 1,
  "txHash": "3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015"
}
```

**Response**

```json
{
  "result": {
    "hash": "3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015",
    "type": "send",
    "amount": "0.001",
    "fee": "0",
    "status": "pending",
    "date": null
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python BITCOIN — assetId 1 — Still pending
import requests

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

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 1,
    "txHash": "3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript BITCOIN — assetId 1 — Still pending
const url = 'https://your-endpoint.example.com/txid';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":1,"txHash":"3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015"}'
};

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

```go BITCOIN — assetId 1 — Still pending
package main

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

func main() {

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

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 1,\n  \"txHash\": \"3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015\"\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 — assetId 1 — Still pending
require 'uri'
require 'net/http'

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

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  \"txHash\": \"3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015\"\n}"

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

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

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/txid")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 1,\n  \"txHash\": \"3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015\"\n}")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/txid', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 1,
  "txHash": "3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp BITCOIN — assetId 1 — Still pending
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/txid");
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  \"txHash\": \"3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift BITCOIN — assetId 1 — Still pending
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 1,
  "txHash": "3560b682bcfe4dcd10f1634a86941ab9b3eff7d6d111e4d491572838ac728015"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/txid")! 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 — assetId 2 — Confirmed



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 2,
  "txHash": "0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e"
}
```

**Response**

```json
{
  "result": {
    "hash": "0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e",
    "type": "send",
    "amount": "0.05",
    "fee": "0.000315",
    "status": "success",
    "date": "2026-07-11T09:14:22.000Z"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python ETHEREUM — assetId 2 — Confirmed
import requests

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

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 2,
    "txHash": "0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript ETHEREUM — assetId 2 — Confirmed
const url = 'https://your-endpoint.example.com/txid';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":2,"txHash":"0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e"}'
};

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

```go ETHEREUM — assetId 2 — Confirmed
package main

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

func main() {

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

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 2,\n  \"txHash\": \"0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e\"\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 — assetId 2 — Confirmed
require 'uri'
require 'net/http'

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

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  \"txHash\": \"0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e\"\n}"

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

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

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

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

$client = new \GuzzleHttp\Client();

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

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

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

var client = new RestClient("https://your-endpoint.example.com/txid");
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  \"txHash\": \"0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift ETHEREUM — assetId 2 — Confirmed
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 2,
  "txHash": "0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/txid")! 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 — assetId 2 — Still pending



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 2,
  "txHash": "0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e"
}
```

**Response**

```json
{
  "result": {
    "hash": "0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e",
    "type": "send",
    "amount": "0.05",
    "fee": "0",
    "status": "pending",
    "date": null
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python ETHEREUM — assetId 2 — Still pending
import requests

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

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 2,
    "txHash": "0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript ETHEREUM — assetId 2 — Still pending
const url = 'https://your-endpoint.example.com/txid';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":2,"txHash":"0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e"}'
};

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

```go ETHEREUM — assetId 2 — Still pending
package main

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

func main() {

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

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 2,\n  \"txHash\": \"0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e\"\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 — assetId 2 — Still pending
require 'uri'
require 'net/http'

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

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  \"txHash\": \"0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e\"\n}"

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

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

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

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

$client = new \GuzzleHttp\Client();

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

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

```csharp ETHEREUM — assetId 2 — Still pending
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/txid");
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  \"txHash\": \"0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift ETHEREUM — assetId 2 — Still pending
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 2,
  "txHash": "0x614719f0004870115fbb95130e0d1faa6df6c19f28298facb1135701326d2e1e"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/txid")! 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 — assetId 3 — Confirmed



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 3,
  "txHash": "0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b"
}
```

**Response**

```json
{
  "result": {
    "hash": "0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b",
    "type": "send",
    "amount": "0.1",
    "fee": "0.000105",
    "status": "success",
    "date": "2026-07-11T09:14:22.000Z"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python BNB — assetId 3 — Confirmed
import requests

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

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 3,
    "txHash": "0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript BNB — assetId 3 — Confirmed
const url = 'https://your-endpoint.example.com/txid';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":3,"txHash":"0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b"}'
};

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

```go BNB — assetId 3 — Confirmed
package main

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

func main() {

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

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 3,\n  \"txHash\": \"0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b\"\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 — assetId 3 — Confirmed
require 'uri'
require 'net/http'

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

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  \"txHash\": \"0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b\"\n}"

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

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

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

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

$client = new \GuzzleHttp\Client();

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

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

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

var client = new RestClient("https://your-endpoint.example.com/txid");
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  \"txHash\": \"0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift BNB — assetId 3 — Confirmed
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 3,
  "txHash": "0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/txid")! 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 — assetId 3 — Still pending



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 3,
  "txHash": "0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b"
}
```

**Response**

```json
{
  "result": {
    "hash": "0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b",
    "type": "send",
    "amount": "0.1",
    "fee": "0",
    "status": "pending",
    "date": null
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python BNB — assetId 3 — Still pending
import requests

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

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 3,
    "txHash": "0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript BNB — assetId 3 — Still pending
const url = 'https://your-endpoint.example.com/txid';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":3,"txHash":"0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b"}'
};

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

```go BNB — assetId 3 — Still pending
package main

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

func main() {

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

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 3,\n  \"txHash\": \"0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b\"\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 — assetId 3 — Still pending
require 'uri'
require 'net/http'

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

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  \"txHash\": \"0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b\"\n}"

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

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

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

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

$client = new \GuzzleHttp\Client();

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

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

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

var client = new RestClient("https://your-endpoint.example.com/txid");
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  \"txHash\": \"0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift BNB — assetId 3 — Still pending
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 3,
  "txHash": "0x9d1e6a1c6ae4d55f4a3b28a8d5e93b1c7e2f0a4b6c8d0e2f4a6b8c0d2e4f6a8b"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/txid")! 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 — assetId 4 — Confirmed



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 4,
  "txHash": "55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a"
}
```

**Response**

```json
{
  "result": {
    "hash": "55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a",
    "type": "send",
    "amount": "100",
    "fee": "0",
    "status": "success",
    "date": "2026-07-11T09:14:22.000Z"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python TRON — assetId 4 — Confirmed
import requests

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

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 4,
    "txHash": "55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript TRON — assetId 4 — Confirmed
const url = 'https://your-endpoint.example.com/txid';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":4,"txHash":"55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a"}'
};

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

```go TRON — assetId 4 — Confirmed
package main

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

func main() {

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

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 4,\n  \"txHash\": \"55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a\"\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 — assetId 4 — Confirmed
require 'uri'
require 'net/http'

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

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  \"txHash\": \"55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a\"\n}"

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

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

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/txid")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 4,\n  \"txHash\": \"55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a\"\n}")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/txid', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 4,
  "txHash": "55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

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

var client = new RestClient("https://your-endpoint.example.com/txid");
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  \"txHash\": \"55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift TRON — assetId 4 — Confirmed
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 4,
  "txHash": "55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/txid")! 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 — assetId 4 — Still pending



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 4,
  "txHash": "55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a"
}
```

**Response**

```json
{
  "result": {
    "hash": "55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a",
    "type": "send",
    "amount": "100",
    "fee": "0",
    "status": "pending",
    "date": null
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python TRON — assetId 4 — Still pending
import requests

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

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 4,
    "txHash": "55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript TRON — assetId 4 — Still pending
const url = 'https://your-endpoint.example.com/txid';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":4,"txHash":"55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a"}'
};

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

```go TRON — assetId 4 — Still pending
package main

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

func main() {

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

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 4,\n  \"txHash\": \"55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a\"\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 — assetId 4 — Still pending
require 'uri'
require 'net/http'

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

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  \"txHash\": \"55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a\"\n}"

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

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

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/txid")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 4,\n  \"txHash\": \"55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a\"\n}")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/txid', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 4,
  "txHash": "55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp TRON — assetId 4 — Still pending
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/txid");
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  \"txHash\": \"55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift TRON — assetId 4 — Still pending
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 4,
  "txHash": "55601006b935b71c8a71ef68b71ea368d2216c160838e9b5433ba55ab6736b2a"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/txid")! 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 — assetId 5 — Confirmed



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 5,
  "txHash": "0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c"
}
```

**Response**

```json
{
  "result": {
    "hash": "0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c",
    "type": "send",
    "amount": "5",
    "fee": "0.0042",
    "status": "success",
    "date": "2026-07-11T09:14:22.000Z"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python POLYGON — assetId 5 — Confirmed
import requests

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

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 5,
    "txHash": "0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript POLYGON — assetId 5 — Confirmed
const url = 'https://your-endpoint.example.com/txid';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":5,"txHash":"0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c"}'
};

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

```go POLYGON — assetId 5 — Confirmed
package main

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

func main() {

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

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 5,\n  \"txHash\": \"0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c\"\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 — assetId 5 — Confirmed
require 'uri'
require 'net/http'

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

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  \"txHash\": \"0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c\"\n}"

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

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

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

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

$client = new \GuzzleHttp\Client();

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

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

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

var client = new RestClient("https://your-endpoint.example.com/txid");
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  \"txHash\": \"0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift POLYGON — assetId 5 — Confirmed
import Foundation

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

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/txid")! 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 — assetId 5 — Still pending



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 5,
  "txHash": "0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c"
}
```

**Response**

```json
{
  "result": {
    "hash": "0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c",
    "type": "send",
    "amount": "5",
    "fee": "0",
    "status": "pending",
    "date": null
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python POLYGON — assetId 5 — Still pending
import requests

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

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 5,
    "txHash": "0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript POLYGON — assetId 5 — Still pending
const url = 'https://your-endpoint.example.com/txid';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":5,"txHash":"0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c"}'
};

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

```go POLYGON — assetId 5 — Still pending
package main

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

func main() {

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

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 5,\n  \"txHash\": \"0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c\"\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 — assetId 5 — Still pending
require 'uri'
require 'net/http'

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

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  \"txHash\": \"0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c\"\n}"

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

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

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

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

$client = new \GuzzleHttp\Client();

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

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

```csharp POLYGON — assetId 5 — Still pending
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/txid");
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  \"txHash\": \"0x3f7b2c9d1e4a6b8c0d2e4f6a8b0c2d4e6f8a0b2c4d6e8f0a2b4c6d8e0f2a4b6c\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift POLYGON — assetId 5 — Still pending
import Foundation

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

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/txid")! 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 — assetId 6 — Confirmed



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 6,
  "txHash": "4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR"
}
```

**Response**

```json
{
  "result": {
    "hash": "4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR",
    "type": "send",
    "amount": "0.25",
    "fee": "0.000005",
    "status": "success",
    "date": "2026-07-11T09:14:22.000Z"
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python SOLANA — assetId 6 — Confirmed
import requests

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

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 6,
    "txHash": "4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript SOLANA — assetId 6 — Confirmed
const url = 'https://your-endpoint.example.com/txid';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":6,"txHash":"4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR"}'
};

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

```go SOLANA — assetId 6 — Confirmed
package main

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

func main() {

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

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 6,\n  \"txHash\": \"4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR\"\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 — assetId 6 — Confirmed
require 'uri'
require 'net/http'

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

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  \"txHash\": \"4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR\"\n}"

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

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

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/txid")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 6,\n  \"txHash\": \"4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR\"\n}")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/txid', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 6,
  "txHash": "4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

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

var client = new RestClient("https://your-endpoint.example.com/txid");
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  \"txHash\": \"4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift SOLANA — assetId 6 — Confirmed
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 6,
  "txHash": "4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR"
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://your-endpoint.example.com/txid")! 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 — assetId 6 — Still pending



**Request**

```json
{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 6,
  "txHash": "4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR"
}
```

**Response**

```json
{
  "result": {
    "hash": "4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR",
    "type": "send",
    "amount": "0.25",
    "fee": "0",
    "status": "pending",
    "date": null
  },
  "requestId": "b7a1f0c2-3d4e-4a5b-9c6d-7e8f90a1b2c3"
}
```

**SDK Code**

```python SOLANA — assetId 6 — Still pending
import requests

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

payload = {
    "userId": "66b1f0c23d4e4a5b9c6d7e8f",
    "assetId": 6,
    "txHash": "4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR"
}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript SOLANA — assetId 6 — Still pending
const url = 'https://your-endpoint.example.com/txid';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"userId":"66b1f0c23d4e4a5b9c6d7e8f","assetId":6,"txHash":"4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR"}'
};

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

```go SOLANA — assetId 6 — Still pending
package main

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

func main() {

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

	payload := strings.NewReader("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 6,\n  \"txHash\": \"4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR\"\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 — assetId 6 — Still pending
require 'uri'
require 'net/http'

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

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  \"txHash\": \"4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR\"\n}"

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

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

HttpResponse<String> response = Unirest.post("https://your-endpoint.example.com/txid")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"userId\": \"66b1f0c23d4e4a5b9c6d7e8f\",\n  \"assetId\": 6,\n  \"txHash\": \"4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR\"\n}")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://your-endpoint.example.com/txid', [
  'body' => '{
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 6,
  "txHash": "4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR"
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp SOLANA — assetId 6 — Still pending
using RestSharp;

var client = new RestClient("https://your-endpoint.example.com/txid");
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  \"txHash\": \"4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift SOLANA — assetId 6 — Still pending
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [
  "userId": "66b1f0c23d4e4a5b9c6d7e8f",
  "assetId": 6,
  "txHash": "4Kg8wHv8p7W5RRDibe5FwX6E4BnZhKc5fTu4gmizkjNUF9zbMNnLBr2TWZTfqWgkSiWBYfva4SjSZvio51bnYoSR"
] as [String : Any]

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

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