GET
/
twitter
/
{username}
curl --request GET \
  --url https://graph.memoryproto.co/twitter/{username} \
  --header 'Authorization: <authorization>'
{
  "data": {
    "id": "1732464385174761474",
    "username": "memoryprotocol",
    "displayName": "Memory",
    "followersCount": 1659,
    "followingCount": 414,
    "postsCount": 642,
    "creationDate": "Wed Dec 06 18:18:03 +0000 2023",
    "avatarUrl": "https://pbs.twimg.com/profile_images/1912179219758485514/WIKNnlqA_400x400.jpg",
    "externalUrl": "http://memoryproto.co",
    "location": "",
    "bio": "Where your digital identity can move across the internet  ☁︎",
    "farcasterProfile": {
      "id": "244819",
      "username": "memoryprotocol.eth",
      "displayName": "Memory",
      "followersCount": 929,
      "followingCount": 73,
      "avatarUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/931fd467-68f8-4146-9487-a9017c0f6700/rectcrop3",
      "location": "",
      "bio": "The internet forgets you. Memory doesn’t."
    }
  }
}

Headers

Authorization
string
required

Use an authorization token prefixed with Bearer. You can get your API key at https://memoryproto.co/dashboard.

Example:

"Bearer mem_xxx"

Path Parameters

username
string
required

Twitter username of the user. For example, MemoryProtocol or factory__fm.

Examples:

"MemoryProtocol"

"factory__fm"

Response

200
application/json

Successful response containing the Twitter profile.

The response is of type object.