# Inject tokens into an exchange

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

POST https://tron-mainnet.g.alchemy.com/v2/docs-demo/wallet/exchangeinject

Adds liquidity to an existing exchange by injecting a specific quantity of a token.

Reference: https://www.alchemy.com/docs/chains/tron/tron-http-api-endpoints/tron-http-api-endpoints/inject-tokens-into-an-exchange

## Code Examples

### cURL

```bash
curl --request POST \
  --url https://tron-mainnet.g.alchemy.com/v2/docs-demo/wallet/exchangeinject \
  --header 'Content-Type: application/json' \
  --data '{
  "owner_address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
  "exchange_id": 12,
  "token_id": "31303030343837",
  "quant": 100,
  "visible": true
}'
```

### JavaScript

```javascript
const options = {
  method: 'POST',
  headers: {'Content-Type': 'application/json'},
  body: JSON.stringify({
    owner_address: 'TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g',
    exchange_id: 12,
    token_id: '31303030343837',
    quant: 100,
    visible: true
  })
};

fetch('https://tron-mainnet.g.alchemy.com/v2/docs-demo/wallet/exchangeinject', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
```

### Python

```python
import requests

url = "https://tron-mainnet.g.alchemy.com/v2/docs-demo/wallet/exchangeinject"

payload = {
    "owner_address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
    "exchange_id": 12,
    "token_id": "31303030343837",
    "quant": 100,
    "visible": True
}
headers = {"Content-Type": "application/json"}

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

print(response.text)
```

### Go

```go
package main

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

func main() {

	url := "https://tron-mainnet.g.alchemy.com/v2/docs-demo/wallet/exchangeinject"

	payload := strings.NewReader("{\n  \"owner_address\": \"TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g\",\n  \"exchange_id\": 12,\n  \"token_id\": \"31303030343837\",\n  \"quant\": 100,\n  \"visible\": true\n}")

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

	req.Header.Add("Content-Type", "application/json")

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

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

	fmt.Println(string(body))

}
```

### Java

```java
HttpResponse<String> response = Unirest.post("https://tron-mainnet.g.alchemy.com/v2/docs-demo/wallet/exchangeinject")
  .header("Content-Type", "application/json")
  .body("{\n  \"owner_address\": \"TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g\",\n  \"exchange_id\": 12,\n  \"token_id\": \"31303030343837\",\n  \"quant\": 100,\n  \"visible\": true\n}")
  .asString();
```

### C#

```csharp
using RestSharp;


var options = new RestClientOptions("https://tron-mainnet.g.alchemy.com/v2/docs-demo/wallet/exchangeinject");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddJsonBody("{\n  \"owner_address\": \"TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g\",\n  \"exchange_id\": 12,\n  \"token_id\": \"31303030343837\",\n  \"quant\": 100,\n  \"visible\": true\n}", false);
var response = await client.PostAsync(request);

Console.WriteLine("{0}", response.Content);

```


## Operation Specification

```yaml
path: /wallet/exchangeinject
method: POST
operation:
  tags:
    - Tron HTTP API Endpoints
  summary: Inject tokens into an exchange
  description: Adds liquidity to an existing exchange by injecting a specific quantity of a token.
  requestBody:
    required: true
    content:
      application/json:
        schema:
          type: object
          properties:
            owner_address:
              type: string
              example: TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g
            exchange_id:
              type: integer
              example: 12
            token_id:
              type: string
              example: '31303030343837'
            quant:
              type: integer
              example: 100
            visible:
              type: boolean
              example: true
  responses:
    '200':
      description: Token injection result
      content:
        application/json:
          example:
            result: true
```
