# Google Play Languages API (https://www.socialcrawl.dev/platforms/google_play/languages) > Returns the languages (name + code) supported by the Google Play App Data endpoints. Use a code as the `language` param. Static reference data — heavily cached. TL;DR: `GET /v1/google_play/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/google_play/languages" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get supported Google Play languages via API? Send a GET request to /v1/google_play/languages. The response is the reference list of languages Google Play supports, each with the code and name you pass as the language parameter on app-search, app-info, and app-reviews. ### What is the Google Play languages endpoint for? It is a reference lookup for the locales you can request. The language codes it returns are the valid values for the language parameter on the app endpoints, so descriptions and reviews come back in the language you want. ### What fields does each 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 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 Google Play data? Localized 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. See the full Google Play API: https://www.socialcrawl.dev/platforms/google_play ## 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 Google Play languages via API - What language codes does the SocialCrawl Google Play API accept?