Stop following an app

DELETE Free /followed_apps/{FOLLOWED_APP_ID}

You can stop following an app by calling this endpoint. When you stop following an app, there's no guarantee you will still have up-to-date information about this application. If you stop following an app, it stops counting towards your followed apps limit.

Request for stop following an app

This allows you to stop following an app. You need to pass the unique identifier generated by AppTweak.io as part of your request.

Header parameters
X-AppTweak-Key:
Your AppTweak API Key.
Path parameters
FOLLOWED_APP_ID:
The unique identifier of the application you want to stop following.

DELETE /followed_apps/{FOLLOWED_APP_ID}

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

Response for following an app

The response for following an app will contain information about the app you asked to stop following if the request suceeds. If the request fails, it will contain an error object informing why the request failed.

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"
  },
  "metadata": {
    "request": {
      "path": "/api/followed_apps/23945",
      "params": {
      }
    },
    "performed_at": "2019-07-31T15:35:21.504Z"
  }
}