Request Funds from Faucet
POSThttps://minatokens.com/api/v1//faucet
Requests funds from the faucet for testing purposes.
Request
- application/json
Bodyrequired
addressstringrequired
The Mina address (public key) to receive the test tokens.
Responses
- 200
- 400
- 401
- 403
- 429
- 500
- 503
Faucet response
- application/json
- Schema
- Example (auto)
Schema
successboolean
Indicates whether the faucet request was successful.
hashstring
The transaction hash of the faucet transfer if successful.
errorstring
Error message if the request failed.
{
"success": true,
"hash": "string",
"error": "string"
}
Bad request - invalid input parameters.
- application/json
- Schema
- Example (auto)
Schema
errorstring
Error message detailing the issue.
{
"error": "string"
}
Unauthorized - user not authenticated.
- application/json
- Schema
- Example (auto)
Schema
errorstring
Error message detailing the issue.
{
"error": "string"
}
Forbidden - user doesn't have permission.
- application/json
- Schema
- Example (auto)
Schema
errorstring
Error message detailing the issue.
{
"error": "string"
}
Too many requests.
- application/json
- Schema
- Example (auto)
Schema
errorstring
Error message detailing the issue.
{
"error": "string"
}
Internal server error - something went wrong during the request.
- application/json
- Schema
- Example (auto)
Schema
errorstring
Error message detailing the issue.
{
"error": "string"
}
Service unavailable - blockchain or other external service is down.
- application/json
- Schema
- Example (auto)
Schema
errorstring
Error message detailing the issue.
{
"error": "string"
}
Authorization: x-api-key
name: x-api-keytype: apiKeyin: headerdescription: API key for authorization. Get your API key at https://minatokens.com/api
- curl
- javascript
- nodejs
- python
- rust
- ocaml
- go
- java
- powershell
- CURL
curl -L 'https://minatokens.com/api/v1/faucet' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'x-api-key: <x-api-key>' \
-d '{
"address": "string"
}'
ResponseClear