> ## 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 profile by public identity



## OpenAPI

````yaml /openapi.json post /linkedin/get-profile-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-profile-from-url:
    post:
      tags:
        - LinkedIn
      summary: Fetch a LinkedIn profile by public identity
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                memberIdentity:
                  type: string
                  description: >-
                    The member's public identity — the slug in
                    linkedin.com/in/<memberIdentity>, e.g. "williamhgates".
              required:
                - memberIdentity
      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'
                      headline:
                        anyOf:
                          - type: string
                          - type: 'null'
                      location:
                        anyOf:
                          - type: string
                          - type: 'null'
                      profilePhotoUrl:
                        anyOf:
                          - type: string
                          - type: 'null'
                      bannerPhotoUrl:
                        anyOf:
                          - type: string
                          - type: 'null'
                      about:
                        anyOf:
                          - type: string
                          - type: 'null'
                      profileUrl:
                        type: string
                      openToWork:
                        type: boolean
                      hiring:
                        type: boolean
                      industry:
                        anyOf:
                          - type: string
                          - type: 'null'
                      experience:
                        type: array
                        items:
                          type: object
                          properties:
                            title:
                              anyOf:
                                - type: string
                                - type: 'null'
                            company:
                              anyOf:
                                - type: string
                                - type: 'null'
                            companyId:
                              anyOf:
                                - type: string
                                - type: 'null'
                            companyUrl:
                              anyOf:
                                - type: string
                                - type: 'null'
                            companyLogoUrl:
                              anyOf:
                                - type: string
                                - type: 'null'
                            employmentType:
                              anyOf:
                                - type: string
                                - type: 'null'
                            location:
                              anyOf:
                                - type: string
                                - type: 'null'
                            startDate:
                              anyOf:
                                - type: string
                                - type: 'null'
                            endDate:
                              anyOf:
                                - type: string
                                - type: 'null'
                            description:
                              anyOf:
                                - type: string
                                - type: 'null'
                            industries:
                              type: array
                              items:
                                type: string
                          required:
                            - title
                            - company
                            - companyId
                            - companyUrl
                            - companyLogoUrl
                            - employmentType
                            - location
                            - startDate
                            - endDate
                            - description
                            - industries
                          additionalProperties: false
                      education:
                        type: array
                        items:
                          type: object
                          properties:
                            school:
                              anyOf:
                                - type: string
                                - type: 'null'
                            schoolId:
                              anyOf:
                                - type: string
                                - type: 'null'
                            schoolUrl:
                              anyOf:
                                - type: string
                                - type: 'null'
                            schoolLogoUrl:
                              anyOf:
                                - type: string
                                - type: 'null'
                            degree:
                              anyOf:
                                - type: string
                                - type: 'null'
                            fieldOfStudy:
                              anyOf:
                                - type: string
                                - type: 'null'
                            startDate:
                              anyOf:
                                - type: string
                                - type: 'null'
                            endDate:
                              anyOf:
                                - type: string
                                - type: 'null'
                            grade:
                              anyOf:
                                - type: string
                                - type: 'null'
                            activities:
                              anyOf:
                                - type: string
                                - type: 'null'
                            description:
                              anyOf:
                                - type: string
                                - type: 'null'
                          required:
                            - school
                            - schoolId
                            - schoolUrl
                            - schoolLogoUrl
                            - degree
                            - fieldOfStudy
                            - startDate
                            - endDate
                            - grade
                            - activities
                            - description
                          additionalProperties: false
                      volunteering:
                        type: array
                        items:
                          type: object
                          properties:
                            role:
                              anyOf:
                                - type: string
                                - type: 'null'
                            organization:
                              anyOf:
                                - type: string
                                - type: 'null'
                            cause:
                              anyOf:
                                - type: string
                                - type: 'null'
                            startDate:
                              anyOf:
                                - type: string
                                - type: 'null'
                            endDate:
                              anyOf:
                                - type: string
                                - type: 'null'
                            description:
                              anyOf:
                                - type: string
                                - type: 'null'
                          required:
                            - role
                            - organization
                            - cause
                            - startDate
                            - endDate
                            - description
                          additionalProperties: false
                      certifications:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              anyOf:
                                - type: string
                                - type: 'null'
                            issuingOrganization:
                              anyOf:
                                - type: string
                                - type: 'null'
                            issueDate:
                              anyOf:
                                - type: string
                                - type: 'null'
                            expirationDate:
                              anyOf:
                                - type: string
                                - type: 'null'
                            credentialId:
                              anyOf:
                                - type: string
                                - type: 'null'
                            credentialUrl:
                              anyOf:
                                - type: string
                                - type: 'null'
                          required:
                            - name
                            - issuingOrganization
                            - issueDate
                            - expirationDate
                            - credentialId
                            - credentialUrl
                          additionalProperties: false
                      skills:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              anyOf:
                                - type: string
                                - type: 'null'
                            endorsements:
                              anyOf:
                                - type: string
                                - type: 'null'
                          required:
                            - name
                            - endorsements
                          additionalProperties: false
                      languages:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              anyOf:
                                - type: string
                                - type: 'null'
                            proficiency:
                              anyOf:
                                - type: string
                                - type: 'null'
                          required:
                            - name
                            - proficiency
                          additionalProperties: false
                      publications:
                        type: array
                        items:
                          type: object
                          properties:
                            title:
                              anyOf:
                                - type: string
                                - type: 'null'
                            publisher:
                              anyOf:
                                - type: string
                                - type: 'null'
                            publishDate:
                              anyOf:
                                - type: string
                                - type: 'null'
                            description:
                              anyOf:
                                - type: string
                                - type: 'null'
                            url:
                              anyOf:
                                - type: string
                                - type: 'null'
                          required:
                            - title
                            - publisher
                            - publishDate
                            - description
                            - url
                          additionalProperties: false
                      patents:
                        type: array
                        items:
                          type: object
                          properties:
                            title:
                              anyOf:
                                - type: string
                                - type: 'null'
                            patentOffice:
                              anyOf:
                                - type: string
                                - type: 'null'
                            patentNumber:
                              anyOf:
                                - type: string
                                - type: 'null'
                            issueDate:
                              anyOf:
                                - type: string
                                - type: 'null'
                            description:
                              anyOf:
                                - type: string
                                - type: 'null'
                          required:
                            - title
                            - patentOffice
                            - patentNumber
                            - issueDate
                            - description
                          additionalProperties: false
                      courses:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              anyOf:
                                - type: string
                                - type: 'null'
                            number:
                              anyOf:
                                - type: string
                                - type: 'null'
                          required:
                            - name
                            - number
                          additionalProperties: false
                      projects:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              anyOf:
                                - type: string
                                - type: 'null'
                            startDate:
                              anyOf:
                                - type: string
                                - type: 'null'
                            endDate:
                              anyOf:
                                - type: string
                                - type: 'null'
                            description:
                              anyOf:
                                - type: string
                                - type: 'null'
                            url:
                              anyOf:
                                - type: string
                                - type: 'null'
                          required:
                            - name
                            - startDate
                            - endDate
                            - description
                            - url
                          additionalProperties: false
                      honorsAndAwards:
                        type: array
                        items:
                          type: object
                          properties:
                            title:
                              anyOf:
                                - type: string
                                - type: 'null'
                            issuer:
                              anyOf:
                                - type: string
                                - type: 'null'
                            issueDate:
                              anyOf:
                                - type: string
                                - type: 'null'
                            description:
                              anyOf:
                                - type: string
                                - type: 'null'
                          required:
                            - title
                            - issuer
                            - issueDate
                            - description
                          additionalProperties: false
                      birthday:
                        anyOf:
                          - type: string
                          - type: 'null'
                      address:
                        anyOf:
                          - type: string
                          - type: 'null'
                    required:
                      - name
                      - headline
                      - location
                      - profilePhotoUrl
                      - bannerPhotoUrl
                      - about
                      - profileUrl
                      - openToWork
                      - hiring
                      - industry
                      - experience
                      - education
                      - volunteering
                      - certifications
                      - skills
                      - languages
                      - publications
                      - patents
                      - courses
                      - projects
                      - honorsAndAwards
                      - birthday
                      - address
                    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.

````