GET
/
2
/
account_activity
/
subscriptions
/
count
curl --request GET \
  --url https://api.twitter.com/2/account_activity/subscriptions/count \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "account_name": "<string>",
    "provisioned_count": "<string>",
    "subscriptions_count_all": "<string>",
    "subscriptions_count_direct_messages": "<string>"
  },
  "errors": [
    {
      "detail": "<string>",
      "status": 123,
      "title": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

The request has succeeded.

The response is of type object.