POST
/
fungible
curl --request POST \
  --url https://api.neynar.com/v2/fungible \
  --header 'Content-Type: multipart/form-data' \
  --header 'x-api-key: <api-key>' \
  --form 'owner=<string>' \
  --form 'symbol=<string>' \
  --form 'name=<string>' \
  --form 'metadata[description]=<string>' \
  --form 'metadata[nsfw]=true' \
  --form 'metadata[website_link]=<string>' \
  --form 'metadata[twitter]=<string>' \
  --form 'metadata[discord]=<string>' \
  --form 'metadata[telegram]=<string>' \
  --form network=base \
  --form factory=wow
{
  "contract": {
    "fungible": {
      "object": "fungible",
      "name": "<string>",
      "symbol": "<string>",
      "media": "<string>",
      "address": "<string>",
      "decimals": 123
    }
  }
}

Authorizations

x-api-key
string
header
default:NEYNAR_API_DOCS
required

API key to authorize requests

Body

multipart/form-data
owner
string
required

Ethereum address of the one who is creating the token

symbol
string
required

Symbol/Ticker for the token

name
string
required

Name of the token

metadata[media]

Media file associated with the token. Supported formats are image/jpeg, image/gif and image/png

metadata[description]
string

Description of the token

metadata[nsfw]
enum<string>

Indicates if the token is NSFW (Not Safe For Work).

Available options:
true,
false

Website link related to the token

metadata[twitter]
string

Twitter profile link

metadata[discord]
string

Discord server link

metadata[telegram]
string

Telegram link

network
enum<string>
default:base

Network/Chain name

Available options:
base
factory
enum<string>
default:wow

Factory name

Available options:
wow,
clanker

Response

200
application/json
Successful response
contract
object