Create token
curl --request POST \
--url https://overlay.fun/tokens \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '
{
"network": "solana",
"name": "newOVL",
"symbol": "nOVL"
}
'const options = {
method: 'POST',
headers: {'api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({network: 'solana', name: 'newOVL', symbol: 'nOVL'})
};
fetch('https://overlay.fun/tokens', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": {},
"message": "<string>"
}{
"success": false,
"message": "Invalid request body.",
"error": "Bad request"
}{
"success": false,
"message": "Invalid api-key",
"error": "Unauthorized"
}Tokens
Create token
Creates a fungible token on the selected network.
POST
https://overlay.fun
/
tokens
Create token
curl --request POST \
--url https://overlay.fun/tokens \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '
{
"network": "solana",
"name": "newOVL",
"symbol": "nOVL"
}
'const options = {
method: 'POST',
headers: {'api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({network: 'solana', name: 'newOVL', symbol: 'nOVL'})
};
fetch('https://overlay.fun/tokens', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": {},
"message": "<string>"
}{
"success": false,
"message": "Invalid request body.",
"error": "Bad request"
}{
"success": false,
"message": "Invalid api-key",
"error": "Unauthorized"
}Authorizations
Body
application/json
Available options:
solana, evm, ethereum, sepolia, base, polygon, bsc, monad, sei, blast, sonic, linea, scroll, mantle, zora, optimism, arbitrum, avalanche, boba, metis, bera, celo Percentage from 0 to 100.
