Authorizations
API key for authentication
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>"
}
]
}Returns all connected social media accounts for the authenticated user
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>"
}
]
}API key for authentication