> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bridgly.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Search LinkedIn schools



## OpenAPI

````yaml /openapi.json post /linkedin/search/schools
openapi: 3.1.0
info:
  title: Bridgly API
  description: >-
    Web scraping API for LinkedIn, X (Twitter) and Reddit. Authenticated
    endpoints accept a Bridgly API key (`bgly_…`) via `Authorization: Bearer
    <token>`.
  version: 1.0.0
servers:
  - url: https://api.bridgly.app
    description: Production
  - url: http://localhost:4000
    description: Local
security: []
tags:
  - name: LinkedIn
    description: Scrape LinkedIn profiles, companies, posts, and search.
  - name: Reddit
    description: Scrape Reddit posts, subreddits, users, and search.
  - name: X (Twitter)
    description: Scrape tweets and search X.
paths:
  /linkedin/search/schools:
    post:
      tags:
        - LinkedIn
      summary: Search LinkedIn schools
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                keyword:
                  type: string
                  description: >-
                    Keyword(s) to search LinkedIn for, e.g. "openai", "software
                    engineer", "fintech".
                start:
                  description: Pagination offset into the result list. Defaults to 0.
                  type: integer
                  minimum: 0
                  maximum: 9007199254740991
                count:
                  description: Number of results to return. Defaults to 10.
                  type: integer
                  minimum: 1
                  maximum: 9007199254740991
              required:
                - keyword
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  timeMs:
                    type: number
                    description: >-
                      Wall-clock time the request took to complete, in
                      milliseconds.
                  creditsCost:
                    type: number
                    description: Number of account credits this request consumed.
                  data:
                    type: object
                    properties:
                      schools:
                        type: array
                        items:
                          type: object
                          properties:
                            schoolUrn:
                              type: string
                              description: >-
                                Stable school identifier (always present).
                                Schools are modelled as organizations, so this
                                is a company URN, e.g. urn:li:fsd_company:<id>.
                            schoolId:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Numeric school id parsed from the school URN,
                                e.g. "2151499".
                            universalName:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Vanity slug from the /company/<slug>/ URL.
                            schoolUrl:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Canonical school page URL
                                (https://www.linkedin.com/company/<slug>/).
                            name:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: School display name.
                            location:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Location line, e.g. "Melbourne, Victoria".
                            studentsAndAlumniLabel:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Raw label, e.g. "4,525 students and alumni on
                                LinkedIn".
                            studentsAndAlumniCount:
                              anyOf:
                                - type: number
                                - type: 'null'
                              description: >-
                                Parsed count of students & alumni on LinkedIn,
                                when present.
                            description:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Tagline / short description snippet.
                            logoUrl:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: Largest available school logo URL.
                          required:
                            - schoolUrn
                            - schoolId
                            - universalName
                            - schoolUrl
                            - name
                            - location
                            - studentsAndAlumniLabel
                            - studentsAndAlumniCount
                            - description
                            - logoUrl
                          additionalProperties: false
                        description: Ranked matching schools.
                      keyword:
                        type: string
                        description: The keyword(s) that were searched on LinkedIn.
                      totalResultCount:
                        anyOf:
                          - type: number
                          - type: 'null'
                        description: >-
                          Total number of matching results reported by LinkedIn
                          (not the number returned in this page).
                    required:
                      - schools
                      - keyword
                      - totalResultCount
                    additionalProperties: false
                required:
                  - timeMs
                  - creditsCost
                  - data
                additionalProperties: false
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '402':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        A Bridgly API key (`bgly_…`). Metered endpoints deduct credits from the
        resolved account.

````