# LinkedIn Search Industry API (https://www.socialcrawl.dev/platforms/linkedin/search-industry) > Resolve an industry name to a LinkedIn industry id — via the Fresh LinkedIn Scraper upstream, normalised to the SocialCrawl schema. TL;DR: `GET /v1/linkedin/search/industry` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `query` | yes | Search keyword. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/linkedin/search/industry?query=marketing" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### What does the LinkedIn Industry API do? It resolves an industry name to a LinkedIn industry id. Send a query like Software Development to /v1/linkedin/search/industry and get back the industry id that people search expects in its industry filter. ### How do I get a LinkedIn industry id? Send a GET request to /v1/linkedin/search/industry with the industry name in the query parameter. The response returns the matching LinkedIn industry and its id, ready to pass into the search/people industry filter. ### How much does the LinkedIn Industry API cost? Each lookup costs 1 credit on the standard tier. It is a lightweight helper endpoint, so the 100 free credits every new account gets cover 100 industry resolutions with no credit card. ### Why resolve an industry before people search? The industry filter on people search takes a LinkedIn industry id, not free text. Resolve the name here first so your filter matches LinkedIn's own taxonomy exactly instead of missing near-matches. ### Is this a single lookup or a list? It is a single resolution lookup: send one industry name and get the best-matching LinkedIn industry id back. It exists to feed ids into people search, not to page through large result sets. See the full LinkedIn API: https://www.socialcrawl.dev/platforms/linkedin ## 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 a LinkedIn industry id for people search filters - How to resolve an industry name to a LinkedIn industry id