Farcaster
- User
- Fetch User Information
- Fetch User's Casts
- Register New User
- Update User Profile
- GETUser interactions
- GETFetch authorization url
- Auth Address
- Signer
- Cast
- Feed
- Reaction
- Notifications
- Channel
- Social Graph
- Storage
- Mini Apps
- Mini App Hosts
- 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
Update User Profile
Update user profile
Update user profile
(In order to update user’s profile signer_uuid
must be approved)
PATCH
/
v2
/
farcaster
/
user
/
Copy
Ask AI
curl --request PATCH \
--url https://api.neynar.com/v2/farcaster/user/ \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"signer_uuid": "19d0c5fd-9b33-4a48-a0e2-bc7b0555baec",
"bio": "<string>",
"pfp_url": "<string>",
"url": "<string>",
"username": "<string>",
"display_name": "<string>",
"location": {
"latitude": 0,
"longitude": 0
},
"banner": "<string>",
"verified_accounts": {
"x": "<string>",
"github": "<string>"
}
}'
Copy
Ask AI
{
"success": true,
"message": "<string>"
}
Authorizations
API key to authorize requests
Body
application/json
Response
200
application/json
Success
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request PATCH \
--url https://api.neynar.com/v2/farcaster/user/ \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"signer_uuid": "19d0c5fd-9b33-4a48-a0e2-bc7b0555baec",
"bio": "<string>",
"pfp_url": "<string>",
"url": "<string>",
"username": "<string>",
"display_name": "<string>",
"location": {
"latitude": 0,
"longitude": 0
},
"banner": "<string>",
"verified_accounts": {
"x": "<string>",
"github": "<string>"
}
}'
Copy
Ask AI
{
"success": true,
"message": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.