|
| 1 | +--- |
| 2 | +title: "AppGoblin's company changes API tracks B2B churn" |
| 3 | +description: "AppGoblin's API lets you track when apps join or leave mobile app B2B companies" |
| 4 | +pubDate: "May 31 2026" |
| 5 | +heroImage: "/blog-images/appgoblin_app_changes_churn_api.png" |
| 6 | +--- |
| 7 | + |
| 8 | +# Tracking Vendor Churn and Adoption via API |
| 9 | + |
| 10 | +While many users view the AppGoblin company dataset as a static snapshot, the paid `app-changes` endpoint functions as a highly effective churn-tracking engine for known vendors. |
| 11 | + |
| 12 | +By querying a specific company domain and applying a status filter, you can isolate programmatic shifts in the mobile ecosystem: |
| 13 | + |
| 14 | +* `GET /api/v1/companies/{company_domain}/app-changes` |
| 15 | + |
| 16 | +### The Core Filters |
| 17 | +* **`status=lost`**: Reviews the exact apps that *removed* that company's technology during the selected timeframe. |
| 18 | +* **`status=added`**: Reviews the exact apps that *newly integrated* that company's technology during the selected timeframe. |
| 19 | + |
| 20 | +--- |
| 21 | + |
| 22 | +## Why This Matters |
| 23 | + |
| 24 | +Tracking quarterly ecosystem deltas unlocks powerful programmatic workflows for several core B2B teams: |
| 25 | + |
| 26 | +* **Ad Networks & Mediation Platforms:** Identify apps that recently dropped a direct competitor, instantly generating high-intent lead lists for outbound sales teams. |
| 27 | +* **Competitor Research & Strategy:** Track the churn and adoption velocity of specific market alternatives quarter-over-quarter. |
| 28 | +* **Compliance, Privacy, & Security:** Programmatically verify that sunsetted SDKs or deprecated third-party integration partners have been completely removed across a fleet of apps. |
| 29 | + |
| 30 | +> **One Important Boundary:** This endpoint provides a quarterly delta for a *known single domain*. It does not explicitly guarantee or prove that App X removed Vendor A and added Vendor B in a single combined response. However, if your team already targets specific vendors, it provides the exact list of additions and removals you need. |
| 31 | +
|
| 32 | +--- |
| 33 | + |
| 34 | +## Practical Examples |
| 35 | + |
| 36 | +The endpoint allows you to inspect changes across different relationship layers by modifying the `tag_source` parameter: |
| 37 | +* `sdk`: For native mobile SDK footprint changes. |
| 38 | +* `api_call`: For direct server-to-server or app-to-server API integrations. |
| 39 | +* `app_ads_direct`: For authorized ad seller verification changes via `app-ads.txt`. |
| 40 | + |
| 41 | +### 1. Extracting Competitor Churn (`status=lost`) |
| 42 | +To find apps that dropped a specific vendor (e.g., AppLovin) during a given quarter, isolate the lost SDK signatures: |
| 43 | + |
| 44 | +```bash |
| 45 | +curl -H "X-API-Key: <your-api-token>" \ |
| 46 | + "https://appgoblin.info/api/v1/companies/applovin.com/app-changes?status=lost&tag_source=sdk&year=2026&quarter=1" |
| 47 | +``` |
| 48 | + |
| 49 | +### 2. Identifying Market Adoption (`status=added`) |
| 50 | + |
| 51 | +To see which apps are actively onboarding a specific vendor (e.g., ironSource), swap the query to target newly added footprints: |
| 52 | + |
| 53 | +```bash |
| 54 | +curl -H "H-API-Key: <your-api-token>" \ |
| 55 | + "https://appgoblin.info/api/v1/companies/ironsrc.com/app-changes?status=added&tag_source=sdk&year=2026&quarter=1" |
| 56 | +``` |
| 57 | + |
| 58 | +## Getting Started |
| 59 | + |
| 60 | +This capability is fully live in the production API environment today. To explore the parameters or upgrade your access tier, visit the resources below: |
| 61 | + |
| 62 | +- Explore the interactive payloads in the AppGoblin API Docs. |
| 63 | + |
| 64 | +- Unlock access to premium company endpoints on the AppGoblin Pricing Page. |
0 commit comments