List followed applications

GET Free /followed_apps/

You can get a list of all applications you follow by consulting this endpoint. This might be useful if you want to check how many applications you are following, or if you want to obtain the id of an application to stop following it.

Request for list followed applications

By informing one of your account tokens you can get the information about apps you follow.

Header parameters
X-AppTweak-Key:
Your AppTweak API Key.

GET /followed_apps/

Request example
GET /followed_apps
cURL example
curl -H "X-Apptweak-Key: ${API_KEY}" https://api.apptweak.com/followed_apps

Response for following an app

The response for this endpoint will contain a list of all the apps you follow with their unique ids.

Object properties
id: string

An id generated by us to identify this followed app uniquely

store: string

To which store the app belongs to: itunes or google

country: string

The two letter country code (ISO Alpha-2) of the followed app

language: string

The two letter language (ISO Alpha-2) of the followed app

device: string

The device of the application you are following

application_id:

ID of the application you are following.

Response Example

{
  "content": [
    {
      "id": "47592be8-aecd-431a-913b-104238fdf50f",
      "store": "itunes",
      "application_id": "1229021451",
      "country_code": "us",
      "language": "us",
      "device": "iphone"
    },
    {
      "id": "514b5c58-3ef6-4a4c-abc6-91c5316a3ec2",
      "store": "itunes",
      "application_id": "1229021451",
      "country_code": "br",
      "language": "br",
      "device": "iphone"
    }
  ],
  "metadata": {
    "request": {
      "path": "/api/followed_apps",
      "params": {
      }
    },
    "performed_at": "2019-07-31T16:08:57.188Z"
  }
}