overlay
  1. Token
overlay
  • Overview
    • Introduction
    • Pricing
    • Endpoint
    • Getting Started
  • Wallet
    • Create a wallet
      POST
  • Token
    • Create a token
      POST
    • Mint a token
      POST
    • Burn a token
      POST
    • Transfer a token
      POST
  • NFT
    • Create a NFT
      POST
    • Burn a NFT
      POST
    • Transfer a NFT
      POST
  1. Token

Create a token

devnet
https://devnet.overlay.fun
devnet
https://devnet.overlay.fun
POST
https://devnet.overlay.fun
/tokens
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://devnet.overlay.fun/tokens' \
--header 'api-key: API_KEY' \
--header 'auth-key: AUTH_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
    "network": "solana",
    "name": "string",
    "symbol": "string",
    "description": "string",
    "image": "string",
    "amount": 0,
    "website": "string",
    "seller_fee": "string"
}'
Response Response Example
{}

Request

Header Params

Body Params application/json

Examples

Responses

🟢200成功
application/json
Body

Previous
Create a wallet
Next
Mint a token
Built with