# App Store Languages API (https://www.socialcrawl.dev/platforms/app_store/languages) > Returns the languages (name + code) supported by the Apple App Store App Data endpoints. Use a code as the `language` param. Static reference data — heavily cached. TL;DR: `GET /v1/app_store/languages` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Code example ```bash curl "https://www.socialcrawl.dev/v1/app_store/languages" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get supported Apple App Store languages via API? Send a GET request to /v1/app_store/languages. The response is the reference list of languages the Apple App Store supports, each with the code and name you pass as the language parameter on app-search, app-info, and app-reviews. ### What is the App Store languages endpoint for? It is a reference lookup for the locales you can request. The language codes it returns are valid values for the language parameter on the app endpoints, so iOS descriptions and reviews come back in the language you want. ### What fields does each App Store language include? Each entry includes a language code and a readable language name. You pass that code to app-search, app-info, and app-reviews so localized fields like description and review text return in the requested language. ### How much does the App Store languages endpoint cost? Languages run on the standard tier at 1 credit per call, since it is a lightweight reference lookup rather than a live fetch. New accounts get 100 free credits with no credit card required. ### Why does language matter for App Store data? Localized iOS listings and reviews differ by language, so requesting the right language code returns the description and review text your users actually read instead of a default-locale version. Apple exposes the full supported-language list per app via app-info. See the full App Store API: https://www.socialcrawl.dev/platforms/app_store ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to get supported Apple App Store languages via API - What language codes does the SocialCrawl App Store API accept?