Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api-staging.boost.xyz/users/farcaster \
--header 'Authorization: Bearer <token>'{
"userId": "<string>",
"fid": 123,
"username": "<string>",
"displayName": "<string>",
"profileImageUrl": "<string>"
}Get the farcaster profile for a given user address
curl --request GET \
--url https://api-staging.boost.xyz/users/farcaster \
--header 'Authorization: Bearer <token>'{
"userId": "<string>",
"fid": 123,
"username": "<string>",
"displayName": "<string>",
"profileImageUrl": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.