# Retrieve a specific exchange by ID

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

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

Returns the detailed configuration of a specific exchange on the TRON blockchain, identified by its unique exchange ID.

Reference: https://www.alchemy.com/docs/chains/tron/tron-http-api-endpoints/tron-http-api-endpoints/retrieve-a-specific-exchange-by-id

## Code Examples

### cURL

```bash
curl --request POST \
  --url https://tron-mainnet.g.alchemy.com/v2/docs-demo/wallet/getexchangebyid \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "1"
}'
```

### JavaScript

```javascript
const options = {
  method: 'POST',
  headers: {'Content-Type': 'application/json'},
  body: JSON.stringify({id: '1'})
};

fetch('https://tron-mainnet.g.alchemy.com/v2/docs-demo/wallet/getexchangebyid', 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/getexchangebyid"

payload = { "id": "1" }
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/getexchangebyid"

	payload := strings.NewReader("{\n  \"id\": \"1\"\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/getexchangebyid")
  .header("Content-Type", "application/json")
  .body("{\n  \"id\": \"1\"\n}")
  .asString();
```

### C#

```csharp
using RestSharp;


var options = new RestClientOptions("https://tron-mainnet.g.alchemy.com/v2/docs-demo/wallet/getexchangebyid");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddJsonBody("{\n  \"id\": \"1\"\n}", false);
var response = await client.PostAsync(request);

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

```


## Operation Specification

```yaml
path: /wallet/getexchangebyid
method: POST
operation:
  summary: Retrieve a specific exchange by ID
  description: Returns the detailed configuration of a specific exchange on the TRON blockchain, identified by its unique exchange ID.
  tags:
    - Tron HTTP API Endpoints
  requestBody:
    required: true
    content:
      application/json:
        schema:
          type: object
          properties:
            id:
              type: string
              example: '1'
  responses:
    '200':
      description: Exchange details
      content:
        application/json:
          example:
            exchange_id: 1
            creator_address: 41f596e85bfd042744f76880979a133da0728679d9
            create_time: 1539673398000
            first_token_id: '31303030353634'
            first_token_balance: 5
            second_token_id: 5f
            second_token_balance: 4326459
```
