Skip to main content
GET
/
accounts
/
{id}
Get account by ID
curl --request GET \
  --url https://app.drippi.ai/api/v1/accounts/{id} \
  --header 'x-api-key: <api-key>'
{
  "status": "success",
  "account": {
    "id": "<string>",
    "twid": "<string>",
    "ownedBy": "<string>",
    "status": "<string>",
    "useV2Auth": true,
    "consecutiveErrors": 123,
    "v2AuthConsecutiveErrors": 123,
    "lastUpdated": {
      "_seconds": 123,
      "_nanoseconds": 123
    },
    "addedAt": {
      "_seconds": 123,
      "_nanoseconds": 123
    },
    "twitterInfo": {
      "id": "<string>",
      "name": "<string>",
      "username": "<string>",
      "created_at": "<string>",
      "description": "<string>",
      "location": "<string>",
      "url": "<string>",
      "protected": true,
      "verified": true,
      "profile_image_url": "<string>",
      "pinned_tweet_id": "<string>",
      "public_metrics": {
        "followers_count": 123,
        "following_count": 123,
        "tweet_count": 123,
        "listed_count": 123
      },
      "entities": {
        "description": {
          "urls": [
            {}
          ]
        },
        "url": {
          "urls": [
            {
              "display_url": "<string>",
              "expanded_url": "<string>",
              "url": "<string>",
              "indices": [
                123
              ]
            }
          ]
        }
      },
      "gqlId": "<string>"
    },
    "twitterInfoLastUpdated": {
      "_seconds": 123,
      "_nanoseconds": 123
    },
    "headers": {},
    "headersV2": {
      "oAuthToken": "<string>",
      "oAuthTokenSecret": "<string>",
      "cookie": [
        "<string>"
      ]
    },
    "lastDisconnectCode": 123,
    "lastDisconnectMessage": "<string>",
    "lastDisconnectType": "<string>"
  }
}
Returns a specific account by its ID. Use this endpoint to retrieve detailed information about a particular connected social media account.

Authorizations

x-api-key
string
header
required

API key for authentication

Path Parameters

id
string
required

Twitter ID of the account

Response

Successfully retrieved account

status
string
Example:

"success"

account
object