# Content Analysis Languages API (https://www.socialcrawl.dev/platforms/content_analysis/languages) > Returns the list of languages (name + ISO code) supported by the Content Analysis endpoints. Static reference data — use the codes to filter or interpret the `language` field on mentions. Heavily cached. TL;DR: `GET /v1/content_analysis/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/content_analysis/languages" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I list supported languages for content analysis? Send a GET request to /v1/content_analysis/languages. You get the full list of languages the content analysis API supports, each with its display name and ISO code, so you can scope brand mention and sentiment queries to the right languages. ### What does the languages endpoint return? It returns a static reference list — each item is a supported language with its name and ISO code, plus a total count. Use these codes when you want to constrain a search or summary to mentions in specific languages. ### Is the language list a live query or static reference? It is static reference data, not a live mention query. The list changes rarely, so SocialCrawl caches it and repeat calls are effectively free in practice. Fetch it once and reuse the codes across your other content analysis calls. ### How much does the languages endpoint cost? Languages is a standard-tier reference endpoint at 1 credit per call — far cheaper than the 5-credit analytic endpoints. New accounts get 100 free credits with no credit card required, so you can pull the full list at no real cost. ### Why would I need the language list? Knowing the exact ISO codes lets you filter brand mentions and sentiment by language reliably, instead of guessing. It is the reference companion to the analytic endpoints, alongside locations, categories, and filters. See the full Content Analysis API: https://www.socialcrawl.dev/platforms/content_analysis ## 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 list supported languages for the SocialCrawl content analysis API - What does the SocialCrawl content analysis languages endpoint return?