> ## 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.

# Fetch a LinkedIn company by universal name



## OpenAPI

````yaml /openapi.json post /linkedin/get-company-from-url
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/get-company-from-url:
    post:
      tags:
        - LinkedIn
      summary: Fetch a LinkedIn company by universal name
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                universalName:
                  type: string
                  description: >-
                    The company's LinkedIn universal name — the slug in
                    linkedin.com/company/<universalName>, e.g. "openai".
              required:
                - universalName
      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:
                      name:
                        anyOf:
                          - type: string
                          - type: 'null'
                      universalName:
                        anyOf:
                          - type: string
                          - type: 'null'
                      description:
                        anyOf:
                          - type: string
                          - type: 'null'
                      website:
                        anyOf:
                          - type: string
                          - type: 'null'
                      industry:
                        anyOf:
                          - type: string
                          - type: 'null'
                      companyType:
                        anyOf:
                          - type: string
                          - type: 'null'
                      foundedYear:
                        anyOf:
                          - type: number
                          - type: 'null'
                      staffCount:
                        anyOf:
                          - type: number
                          - type: 'null'
                      staffCountRange:
                        anyOf:
                          - type: string
                          - type: 'null'
                      specialties:
                        type: array
                        items:
                          type: string
                      headquarters:
                        anyOf:
                          - type: object
                            properties:
                              line1:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                              city:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                              geographicArea:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                              postalCode:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                              country:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                              headquarter:
                                type: boolean
                            required:
                              - line1
                              - city
                              - geographicArea
                              - postalCode
                              - country
                              - headquarter
                            additionalProperties: false
                          - type: 'null'
                      confirmedLocations:
                        type: array
                        items:
                          type: object
                          properties:
                            line1:
                              anyOf:
                                - type: string
                                - type: 'null'
                            city:
                              anyOf:
                                - type: string
                                - type: 'null'
                            geographicArea:
                              anyOf:
                                - type: string
                                - type: 'null'
                            postalCode:
                              anyOf:
                                - type: string
                                - type: 'null'
                            country:
                              anyOf:
                                - type: string
                                - type: 'null'
                            headquarter:
                              type: boolean
                          required:
                            - line1
                            - city
                            - geographicArea
                            - postalCode
                            - country
                            - headquarter
                          additionalProperties: false
                      logoUrl:
                        anyOf:
                          - type: string
                          - type: 'null'
                      bannerUrl:
                        anyOf:
                          - type: string
                          - type: 'null'
                      linkedinUrl:
                        type: string
                      followerCount:
                        anyOf:
                          - type: number
                          - type: 'null'
                      tagline:
                        anyOf:
                          - type: string
                          - type: 'null'
                      affiliatedCompanyIds:
                        type: array
                        items:
                          type: string
                      showcasePageIds:
                        type: array
                        items:
                          type: string
                      fundingData:
                        anyOf:
                          - type: object
                            properties:
                              numFundingRounds:
                                anyOf:
                                  - type: number
                                  - type: 'null'
                              lastFundingRound:
                                anyOf:
                                  - type: object
                                    properties:
                                      fundingType:
                                        anyOf:
                                          - type: string
                                          - type: 'null'
                                      moneyRaised:
                                        anyOf:
                                          - type: object
                                            properties:
                                              currencyCode:
                                                anyOf:
                                                  - type: string
                                                  - type: 'null'
                                              amount:
                                                anyOf:
                                                  - type: string
                                                  - type: 'null'
                                            required:
                                              - currencyCode
                                              - amount
                                            additionalProperties: false
                                          - type: 'null'
                                      announcedOn:
                                        anyOf:
                                          - type: string
                                          - type: 'null'
                                      leadInvestors:
                                        type: array
                                        items:
                                          type: object
                                          properties:
                                            name:
                                              anyOf:
                                                - type: string
                                                - type: 'null'
                                            crunchbaseUrl:
                                              anyOf:
                                                - type: string
                                                - type: 'null'
                                          required:
                                            - name
                                            - crunchbaseUrl
                                          additionalProperties: false
                                      numOtherInvestors:
                                        anyOf:
                                          - type: number
                                          - type: 'null'
                                      crunchbaseUrl:
                                        anyOf:
                                          - type: string
                                          - type: 'null'
                                    required:
                                      - fundingType
                                      - moneyRaised
                                      - announcedOn
                                      - leadInvestors
                                      - numOtherInvestors
                                      - crunchbaseUrl
                                    additionalProperties: false
                                  - type: 'null'
                              companyCrunchbaseUrl:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                            required:
                              - numFundingRounds
                              - lastFundingRound
                              - companyCrunchbaseUrl
                            additionalProperties: false
                          - type: 'null'
                      similarCompanies:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                            name:
                              anyOf:
                                - type: string
                                - type: 'null'
                            description:
                              anyOf:
                                - type: string
                                - type: 'null'
                            logoUrl:
                              anyOf:
                                - type: string
                                - type: 'null'
                            url:
                              anyOf:
                                - type: string
                                - type: 'null'
                            industry:
                              anyOf:
                                - type: string
                                - type: 'null'
                          required:
                            - id
                            - name
                            - description
                            - logoUrl
                            - url
                            - industry
                          additionalProperties: false
                    required:
                      - name
                      - universalName
                      - description
                      - website
                      - industry
                      - companyType
                      - foundedYear
                      - staffCount
                      - staffCountRange
                      - specialties
                      - headquarters
                      - confirmedLocations
                      - logoUrl
                      - bannerUrl
                      - linkedinUrl
                      - followerCount
                      - tagline
                      - affiliatedCompanyIds
                      - showcasePageIds
                      - fundingData
                      - similarCompanies
                    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.

````