get https://api.discover.getmoni.io/api/v1/twitters//info/
GET /api/v1/twitters/{username}/info/
Retrieves detailed information about a Twitter account using its username. The response includes basic profile data visible on the Twitter page, such as quantitative metrics and visual elements, as well as advanced analytics based on the account's followers, including metrics like the count of "smart" subscriptions and mentions. Furthermore, it identifies the account's affiliation with specific blockchains and categorizes it based on manual classifications provided by our moderators.
Input:
- Username: The username of the user in x.com.
Result:
{
"twitterUserId": "string", // Internal ID of the account in [x.com](http://x.com/)
"name": "string", // Name of the account in [x.com](http://x.com/)
"username": "string", // Username of the account in [x.com](http://x.com/)
"description": "string", // Description of the account in [x.com](http://x.com/)
"twitterCreatedAt": "2024-12-03T07:48:27.871Z", // Account creation date and time in [x.com](http://x.com/)
"tweetCount": 0, // Number of posts made by the account in [x.com](http://x.com/)
"smartFollowersCount": 0, // Number of "smart" followers of the account in [x.com](http://x.com/)
"followersCount": 0, // Total number of followers of the account in [x.com](http://x.com/)
"followersScore": 0, // Account score based on its "smart" followers in [x.com](http://x.com/)
"mentionsCount": 0, // Total number of mentions of the account in [x.com](http://x.com/)
"smartMentionsCount": 0, // Number of mentions by "smart" accounts in [x.com](http://x.com/)
"profileImageUrl": "string", // URL of the account's profile picture in [x.com](http://x.com/)
"profileBannerUrl": "string", // URL of the account's banner in [x.com](http://x.com/)
"links": [
{
"url": "string", // URL of the link
"logoUrl": "string", // Logo of the service the link points to
"type": "TWITTER", // Type of the service the link points to
"name": "string" // Name of the service the link points to
}
], // Links associated with the account. Possible types: TWITTER, DISCORD, WEB
"tags": [
{
"name": "string" // Tag name
}
], // Tags associated with the account, manually assigned by moderators
"chains": [
{
"name": "string" // Networks the account is affiliated with, manually assigned by moderators
}
] // Blockchain networks the account is associated with
}