Skip to main content
GET
/
api
/
v1
/
apps
/
{appId}
Get App Details
curl --request GET \
  --url https://api.example.com/api/v1/apps/{appId}
{
  "data": {
    "_id": 123,
    "app_slug": "<string>",
    "app_id": "<string>",
    "store_id": 123,
    "title": "<string>",
    "url": "<string>",
    "description": {},
    "icon": "<string>",
    "version": {},
    "size": {},
    "required_os_version": {},
    "release_notes": {},
    "genres": [
      "<string>"
    ],
    "genre_ids": [
      "<string>"
    ],
    "primary_genre": "<string>",
    "primary_genre_id": 123,
    "content_rating": "<string>",
    "languages": [
      "<string>"
    ],
    "price": 123,
    "currency": "<string>",
    "free": true,
    "score": {},
    "reviews": 123,
    "current_version_score": {},
    "current_version_reviews": 123,
    "downloads": 123,
    "revenue": 123,
    "released": {},
    "updated": {},
    "date_created": 123,
    "date_updated": 123,
    "developer": "<string>",
    "developer_id": 123,
    "developer_url": {},
    "developer_website": {},
    "emails": [
      "<string>"
    ],
    "websites": [
      "<string>"
    ],
    "socials": {
      "x_url": {},
      "linkedin_url": {},
      "email": {},
      "facebook_url": {},
      "instagram_url": {},
      "youtube_url": {},
      "tiktok_url": {},
      "discord_url": {}
    },
    "decision_makers": [
      {
        "full_name": "<string>",
        "email": {},
        "linkedin_url": {},
        "x_url": {}
      }
    ],
    "hiring": {
      "careers_url": {},
      "is_hiring": true
    },
    "screenshots": [
      "<string>"
    ],
    "historical_counts": {},
    "historical_data": {
      "rank": [
        {}
      ],
      "reviews": [
        {}
      ],
      "revenue": [
        {}
      ],
      "downloads": [
        {}
      ]
    },
    "rank": 123,
    "rank_change": 123,
    "topyappers_creators": [
      {
        "user_id": "<string>",
        "handle": "<string>",
        "source": {},
        "country": {},
        "followers": {},
        "avatar_url": {}
      }
    ],
    "meta_ads": {
      "type": "<string>",
      "src": "<string>",
      "poster": {},
      "ad_archive_id": {},
      "page_name": {},
      "title": {},
      "body": {},
      "cta_text": {},
      "link_url": {},
      "is_active": true,
      "start_date": 123,
      "end_date": 123
    },
    "apple_ads": {
      "ad_id": "<string>",
      "placement": {},
      "format": {},
      "language": {},
      "first_seen": {},
      "last_seen": {},
      "running_for_days": {},
      "assets": [
        {}
      ],
      "audience": {}
    },
    "in_app_purchases": {
      "iap_id": "<string>",
      "name": "<string>",
      "price": "<string>",
      "duration": {}
    }
  }
}
Get full details for a single iOS app by its numeric Meilisearch ID. Returns everything from basic metadata to ad creatives, creator partnerships, and historical analytics. Credits: 1 per request.

Path Parameters

appId
string
required
The numeric app identifier. This is the internal _id field from the List Apps endpoint.

Response

data
object
Complete app detail object.

Example

curl -X GET "https://appkittie.com/api/v1/apps/12345" \
  -H "Authorization: Bearer YOUR_API_KEY"