# Request withdrawal metadata

## Fetch withdrawal metadata

> Fetch the withdrawal metadata (fee, limits, availability) per network for each supported cryptocurrency.

```json
{"openapi":"3.0.1","info":{"title":"OpenAPI definition","version":"v0"},"servers":[{"url":"https://api.finrax.com","description":"Generated server url"}],"paths":{"/v1/withdrawals/metadata":{"get":{"summary":"Fetch withdrawal metadata","description":"Fetch the withdrawal metadata (fee, limits, availability) per network for each supported cryptocurrency.","operationId":"fetch-withdrawal-metadata","responses":{"200":{"description":"Returns the full withdrawal metadata for each currency and its supported networks.","content":{"application/json":{"schema":{"type":"object","additionalProperties":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/WithdrawalMetadataResponse"}}}}}}}}}},"components":{"schemas":{"WithdrawalMetadataResponse":{"required":["available","fee","maxAmount","minAmount","precision"],"type":"object","properties":{"fee":{"type":"string","description":"Fee amount."},"minAmount":{"type":"string","description":"Minimum withdrawable amount."},"maxAmount":{"type":"string","description":"Maximum withdrawable amount."},"precision":{"type":"integer","description":"Maximum digits after the decimal point for the withdrawal amount.","format":"int32"},"available":{"type":"boolean","description":"Current availability of the given currency for withdrawal on the given network."}}}}}}
```

**Response example**

<pre class="language-json"><code class="lang-json"><strong>{
</strong><strong>        "ETH" : {
</strong>                    "ETH" : {
                      "fee" : "0.0032",
                      "minAmount" : "0.0125",
                      "maxAmount" : "116",
                      "precision" : 8,
                      "available" : true
                    },
                    "BSC" : {
                      "fee" : "0.00012",
                      "minAmount" : "0.00035",
                      "maxAmount" : "116",
                      "precision" : 8,
                      "available" : false
                    }
                  },
                  "USDC" : {
                    "ETH" : {
                      "fee" : "15",
                      "minAmount" : "62.5",
                      "maxAmount" : "280000",
                      "precision" : 6,
                      "available" : true
                    },
                    "BSC" : {
                      "fee" : "0.3",
                      "minAmount" : "12.5",
                      "maxAmount" : "280000",
                      "precision" : 8,
                      "available" : true
                    },
                    "TRX" : {
                      "fee" : "1",
                      "minAmount" : "12.5",
                      "maxAmount" : "280000",
                      "precision" : 6,
                      "available" : true
                    }
                  },
                  "LINK" : {
                    "ETH" : {
                      "fee" : "0.67",
                      "minAmount" : "1.675",
                      "maxAmount" : "19200",
                      "precision" : 8,
                      "available" : true
                    }
                  },
                  "XLM" : {
                    "XLM" : {
                      "fee" : "0.02",
                      "minAmount" : "31.25",
                      "maxAmount" : "2240000",
                      "precision" : 7,
                      "available" : true
                    }
                  },
                  "LTC" : {
                    "LTC" : {
                      "fee" : "0.001",
                      "minAmount" : "0.0025",
                      "maxAmount" : "4000",
                      "precision" : 8,
                      "available" : true
                    }
                  },
                  "BCH" : {
                    "BCH" : {
                      "fee" : "0.00064",
                      "minAmount" : "0.0025",
                      "maxAmount" : "1200",
                      "precision" : 8,
                      "available" : true
                    }
                  },
                  "BTC" : {
                    "BTC" : {
                      "fee" : "0.00034",
                      "minAmount" : "0.001875",
                      "maxAmount" : "7.2",
                      "precision" : 8,
                      "available" : true
                    }
                  },
                  "XRP" : {
                    "XRP" : {
                      "fee" : "0.2",
                      "minAmount" : "18.75",
                      "maxAmount" : "480000",
                      "precision" : 6,
                      "available" : true
                    }
                  }
 }
</code></pre>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.finrax.com/references/crypto-withdrawals/request-withdrawal-metadata.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
