# LinkedIn Search Schools API (https://www.socialcrawl.dev/platforms/linkedin/search-schools) > Search LinkedIn schools — via the Fresh LinkedIn Scraper upstream, normalised to the SocialCrawl schema. TL;DR: `GET /v1/linkedin/search/schools` 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. | | `page` | no | | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/linkedin/search/schools?query=marketing" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### What does the LinkedIn Schools API return? It resolves a school name to LinkedIn school records and their ids. Send a query like Stanford University to /v1/linkedin/search/schools and get back matching schools you can reference in people search by the school filter. ### How do I find a LinkedIn school id? Send a GET request to /v1/linkedin/search/schools with the school name in the query parameter. The response lists matching schools with their names and ids, and you can add page to paginate through more matches. ### How much does the LinkedIn Schools API cost? Each request costs 1 credit on the standard tier, regardless of how many schools match. New accounts get 100 free credits with no credit card, enough for 100 school lookups. ### How does this help with recruiting? Alma-mater sourcing is the main use case. Resolve a school here, then pass its name or id into the people search school filter to build candidate lists of a university's alumni for recruiting or outreach. ### Can I paginate through school matches? Yes. Add the page query parameter (integer) and increment it to load more matching schools when a name is ambiguous. Start at page 1 and stop when the response returns an empty list. 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 find a LinkedIn school id by name - How to build an alumni candidate list with LinkedIn school search