Farcaster
- User
- Signer
- Cast
- Feed
- Reaction
- Notifications
- Channel
- Follows
- Storage
- Mini Apps
- Agents
- Fname
- Webhook
- Action
- Mute
- Block
- Ban
- Onchain
- Login
- Metrics
Onchain
Farcaster Hub API
- Info
- Casts
- Reactions
- Links
- UserData
- Fids
- Storage
- Usernames
- Verifications
- OnChainEvents
- Message
- HubEvents
Neynar SDK
- Getting Started with Neynar NodeJS SDK
- NodeJS SDK v1 to v2 migration guide
- Getting Started with Neynar Rust SDK
- Getting Started with Neynar Go SDK
Onchain
Deploy fungible
Creates a new token.
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
}
}
}
Related tutorial: Deploy a token on Base w/ 1 API call
Authorizations
API key to authorize requests
Body
multipart/form-data
Response
200
application/json
Successful response
The response is of type object
.
Was this page helpful?
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
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.