Skip to main content
GET
/
accounts
Get all accounts
curl --request GET \
  --url https://app.drippi.ai/api/v1/accounts \
  --header 'x-api-key: <api-key>'
{
  "status": "success",
  "accounts": [
    {
      "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>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://drippi.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Returns all connected social media accounts for the authenticated user. This endpoint provides access to account information including platform, username, status, and connected campaigns.

Authorizations

x-api-key
string
header
required

API key for authentication

Response

Successfully retrieved accounts

status
string
Example:

"success"

accounts
object[]