openapi: 3.0.0
info:
  title: LinkdAPI
  version: 1.0.0
  description: '**LinkdAPI** The best Professional data API for developers'
servers:
  - url: linkdapi.com
paths:
  /api/v1/profile/overview:
    get:
      summary: Profile overview
      parameters:
        - name: username
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ryanroslansky
      responses:
        '200':
          description: Profile overview
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      firstName:
                        type: string
                      lastName:
                        type: string
                      fullName:
                        type: string
                      headline:
                        type: string
                      publicIdentifier:
                        type: string
                      followerCount:
                        type: integer
                      connectionsCount:
                        type: integer
                      creator:
                        type: boolean
                      qualityProfile:
                        type: boolean
                      joined:
                        type: integer
                      profileID:
                        type: string
                        format: color
                      urn:
                        type: string
                      CurrentPositions:
                        type: array
                        items:
                          type: object
                          properties:
                            urn:
                              type: string
                              format: utc-millisec
                            name:
                              type: string
                            url:
                              type: string
                              format: uri
                            logoURL:
                              type: string
                              format: uri
                      isTopVoice:
                        type: boolean
                      premium:
                        type: boolean
                      influencer:
                        type: boolean
                      location:
                        type: object
                        properties:
                          countryCode:
                            type: string
                          countryName:
                            type: string
                          city:
                            type: string
                          region:
                            type: string
                          fullLocation:
                            type: string
                          geoCountryUrn:
                            type: string
                            format: uri
                          geoRegionUrn:
                            type: string
                            format: uri
                      backgroundImageURL:
                        type: string
                        format: uri
                      profilePictureURL:
                        type: string
                        format: uri
                      supportedLocales:
                        type: array
                        items:
                          type: object
                          properties:
                            country:
                              type: string
                            language:
                              type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  firstName: Ryan
                  lastName: Roslansky
                  fullName: Ryan Roslansky
                  headline: CEO at LinkedIn
                  publicIdentifier: ryanroslansky
                  followerCount: 887877
                  connectionsCount: 8624
                  creator: true
                  qualityProfile: true
                  joined: 1086269234000
                  profileID: '678940'
                  urn: ACoAAAAKXBwBikfbNJww68eYvcu2dqDYJhHbp4g
                  CurrentPositions:
                    - urn: '1337'
                      name: LinkedIn
                      url: https://www.linkedin.com/company/linkedin/
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1761782400&v=beta&t=x_9t8LMKN1X_iOpOKN33-CV7fzDbS5ZZY-S9gp6KmrU
                  isTopVoice: true
                  premium: true
                  influencer: true
                  location:
                    countryCode: US
                    countryName: United States
                    city: San Francisco Bay Area
                    region: San Francisco Bay Area
                    fullLocation: San Francisco Bay Area
                    geoCountryUrn: urn:li:fsd_geo:103644278
                    geoRegionUrn: urn:li:fsd_geo:90000084
                  backgroundImageURL: >-
                    https://media.licdn.com/dms/image/v2/C4D16AQHXtyQ-bg4B2Q/profile-displaybackgroundimage-shrink_350_1400/profile-displaybackgroundimage-shrink_350_1400/0/1580864697728?e=1761782400&v=beta&t=5WI2KjHGu4yAkVC47GmTmH_EZBLimOEWwMAwIhKJz-o
                  profilePictureURL: >-
                    https://media.licdn.com/dms/image/v2/C4D03AQELbnIckyItlw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1667929254389?e=1761782400&v=beta&t=KEPEFMp-rGZfNCq7BJ3Pm8-RKEdWShSdERdcy6k4HWQ
                  supportedLocales:
                    - country: US
                      language: en
      tags:
        - Profile
      description: '##### Fetch a user’s basic profile information by their username.'
  /api/v1/profile/details:
    get:
      summary: Profile details
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM
      responses:
        '200':
          description: Profile details
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      about:
                        type: string
                      featuredPosts:
                        type: array
                        items:
                          type: object
                          properties:
                            postLink:
                              type: string
                              format: uri
                            postText:
                              type: string
                      positions:
                        type: array
                        items:
                          type: object
                          properties:
                            jobTitle:
                              type: string
                            company:
                              type: string
                            location:
                              type: string
                            duration:
                              type: string
                            companyLink:
                              type: string
                              format: uri
                            companyId:
                              type: string
                              format: utc-millisec
                            jobDescription:
                              type: string
                      education:
                        type: array
                        items:
                          type: object
                          properties:
                            duration:
                              type: string
                            durationParsed:
                              type: object
                              properties:
                                start:
                                  type: object
                                  properties:
                                    year:
                                      type: integer
                                    month:
                                      type: integer
                                    day:
                                      type: integer
                                end:
                                  type: object
                                  properties:
                                    year:
                                      type: integer
                                    month:
                                      type: integer
                                    day:
                                      type: integer
                            university:
                              type: string
                            universityLink:
                              type: string
                              format: uri
                            degree:
                              type: string
                            description:
                              nullable: true
                            subDescription:
                              nullable: true
                      languages:
                        type: object
                        properties:
                          languages:
                            type: array
                            items:
                              type: object
                              properties:
                                Language:
                                  type: string
                                Level:
                                  type: string
                          deepLink:
                            type: string
                            format: uri
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                data:
                  about: >-
                    . Experience of 19+ years in Software Quality Assurance and
                    Test Automation

                    . Currently working as an Global Automation Lead for 5
                    projects within Client Reporting group in Securities
                    Services Team within Corporate and Investment Banking
                    Technology (CIB Tech) division.

                    . Rich experience in creating testing and automation
                    strategy.

                    . Hands on experience of working with Java, Selenium,
                    Cucumber, Testng, Maven, Rest Assured.

                    . Hands on experience of creating API Test Automation
                    Framework using Java, Testng, Maven Rest Assured.

                    . Hands on experience of creating BDD Test Automation For
                    Web Application.

                    . Hands on experience of working with API Testing related
                    tools - Postman, SOAP UI, Chrome Dev Tools, Modify Header
                    Plugin, Fiddler.

                    . Hands on experience of defect and test management using HP
                    ALM, JIRA.

                    . Hands on experience on Manual testing - Functional UI, End
                    to End and Regression testing.

                    . Rich experience of working in Agile Methodologies - Scrum
                    and Kanban both.

                    . Hands on experience on implementing Mutation Testing using
                    PIT tool.

                    . Hands on experience in database management systems like
                    Oracle, MySQL, SQL Server, IBM DB2

                    . Hands on experience of source code version control systems
                    like GIT, Subversion.

                    . Hands on experience of CI / CD pipeline using Jenkins

                    . Hands on experience of performance testing of Web
                    application using jMeter and Blazemeter.

                    . Hands on experience on Kafka and distributed system
                    testing

                    . Rich experience of working in Cloud Computing - Private
                    Cloud 

                    . Good knowledge on Cloud providers - Oracle Cloud, AWS

                    . Oracle Cloud Certified.


                    Current Organization - JP Morgan Chase & Co.

                    Previous Organization - GE, Microsoft and Tech Mahindra.
                  featuredPosts:
                    - postLink: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7244940347900874753?updateEntityUrn=urn%3Ali%3Afs_feedUpdate%3A%28V2%2Curn%3Ali%3Aactivity%3A7244940347900874753%29
                      postText: >-
                        Regular recurring reminder


                        If you are into software testing, automation or software
                        engineering, I will accept your connection request.


                        No need to write lengthy customized connection request
                        message.


                        It does not matter to me if you are an MD or a fresher
                        or a student. As long as you are here to discuss above
                        domains, you are welcome to send me connection request.


                        If you are not into above domains, please unfollow me,
                        else my posts will bore you to the core. Letting you
                        know this beforehand.


                        #testing #automation #softwareengineering
                    - postLink: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:6986605591880196096?updateEntityUrn=urn%3Ali%3Afs_feedUpdate%3A%28V2%2Curn%3Ali%3Aactivity%3A6986605591880196096%29
                      postText: >-
                        Nice to see many of you have similar interests as mine.
                        I am from test automation background. Doing that
                        throughout my career spanning 19 years as of now. This
                        field is always changing and dynamic. Always something
                        new to learn each day. You are only limited by your
                        thinking.


                        Been a developer first few years of my career. Didn't
                        like it. Simply because as application developer you
                        tend to work on same module for long. As automation
                        developer you get to work on many different modules as
                        well as application. Nowadays there is lot in
                        development as well, thanks to cloud burst, I might move
                        to development again in future. No immediate plans as of
                        now.


                        I work on Java and related technologies. I don't think
                        that I will ever move out of this language. Simply
                        because there is lot to learn in this space and this
                        language and related ecosystem has lot to offer.


                        I have worked in service industry ( Tech Mahindra Ltd),
                        product company ( GE and Microsoft) as well as banking (
                        JP Morgan Chase). I have a good understanding of how
                        these different industries work. All are different.


                        I am glad you follow me. I too follow many of you.
                        Linkedin seem to have finally understood what I prefer
                        in my feeds.


                        Note: I am NOT looking for a job change.Happy with my
                        current firm for 14+ years now.
                  positions:
                    - jobTitle: Vice President - Software Engineering
                      company: JPMorganChase · Full-time
                      location: Mumbai, Maharashtra, India
                      duration: Apr 2010 - Present · 14 yrs 10 mos
                      companyLink: https://www.linkedin.com/company/1068/
                      companyId: '1068'
                      jobDescription: ''
                    - jobTitle: Advanced Software Engineer
                      company: GE
                      location: ''
                      duration: Jul 2007 - Apr 2010 · 2 yrs 10 mos
                      companyLink: https://www.linkedin.com/company/1015/
                      companyId: '1015'
                      jobDescription: >-
                        1. Managing the QA Team. 

                        2. Automating test cases using QTP. 

                        3. Getting team upto speed in Automation by conducting
                        automation tool trainings. 

                        4. Participate in Product Evaluation and Software
                        Benchmarking.
                    - jobTitle: Technical Associate
                      company: Tech Mahindra
                      location: ''
                      duration: Apr 2005 - Jun 2007 · 2 yrs 3 mos
                      companyLink: https://www.linkedin.com/company/3067/
                      companyId: '3067'
                      jobDescription: >-
                        Worked on Testing Project called HMC (Hosted Messaging
                        and Collaboration)
                    - jobTitle: Software Development Engineer in Test (SDET)
                      company: Microsoft
                      location: ''
                      duration: Nov 2005 - Feb 2007 · 1 yr 4 mos
                      companyLink: https://www.linkedin.com/company/1035/
                      companyId: '1035'
                      jobDescription: >-
                        Worked on Client Side at Microsoft IDC on RFID Project
                        for Automation using MAUI (Microsoft Automation Of User
                        Interface). During this time, I was a permanent employee
                        of Tech Mahindra Ltd. Received a token of appreciation
                        from my manager at Microsoft for meeting the automation
                        deadlines. Actively involved in 4 CTP releases of
                        BizTalk RFID. Logged over 300 bugs in a short period of
                        time.
                  education:
                    - duration: 2000 - 2004
                      durationParsed:
                        start:
                          year: 2000
                          month: 1
                          day: 1
                        end:
                          year: 2004
                          month: 1
                          day: 1
                      university: University of Mumbai
                      universityLink: https://www.linkedin.com/company/15093732/
                      degree: BE Computers, Computer Engineering
                      description: null
                      subDescription: null
                    - duration: 2012 - 2014
                      durationParsed:
                        start:
                          year: 2012
                          month: 1
                          day: 1
                        end:
                          year: 2014
                          month: 1
                          day: 1
                      university: Sikkim Manipal University Distance Education
                      universityLink: >-
                        https://www.linkedin.com/search/results/all/?keywords=Sikkim+Manipal+University+Distance+Education
                      degree: >-
                        Master of Business Administration (MBA), Accounting and
                        Finance
                      description: null
                      subDescription: null
                  languages:
                    languages:
                      - Language: English
                        Level: Full professional proficiency
                      - Language: Hindi
                        Level: Full professional proficiency
                    deepLink: >-
                      https://www.linkedin.com/in/mansoorshaikh/details/languages?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM
      tags:
        - Profile
      description: Get profile details information by URN
  /api/v1/profile/services:
    get:
      summary: Profile services
      parameters:
        - name: urn
          in: query
          schema:
            type: string
          example: ACoAACABYFIBg-2LsuVOL5nmempFYpxNnXkq63A
      responses:
        '200':
          description: Profile services
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      services:
                        type: object
                        properties:
                          servicesProvided:
                            type: array
                            items:
                              type: string
                          servicePageURL:
                            type: string
                            format: uri
                          serviceId:
                            type: string
                          requestProposalURL:
                            type: string
                            format: uri
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  services:
                    servicesProvided:
                      - Graphic Design
                      - Web Design
                      - Web Development
                      - Custom Software Development
                    servicePageURL: https://www.linkedin.com/services/page/7144683349b511a503
                    serviceId: 7144683349b511a503
                    requestProposalURL: >-
                      https://www.linkedin.com/in/maddierosejane/opportunities/services/request-proposal?servicePageVanityName=7144683349b511a503
      tags:
        - Profile
      description: Get profile services by URN
  /api/v1/profile/contact-info:
    get:
      summary: Contact Info
      parameters:
        - name: username
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: hnaser
      responses:
        '200':
          description: Contact Info
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      emailAddress:
                        nullable: true
                      phoneNumber:
                        nullable: true
                      websites:
                        type: array
                        items:
                          type: object
                          properties:
                            url:
                              type: string
                              format: uri
                            category:
                              type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                data:
                  emailAddress: null
                  phoneNumber: null
                  websites:
                    - url: http://backend.husseinnasser.com
                      category: PERSONAL
                    - url: https://anchor.fm/s/1eb6d14/podcast/rss
                      category: RSS
                    - url: >-
                        https://www.youtube.com/HusseinNasser-software-engineering
                      category: OTHER
      tags:
        - Profile
      description: >-
        Retrieve a profile’s contact details by username. Email and phone number
        are included only if the user has made them public.
  /api/v1/profile/full-experience:
    get:
      summary: Full experience
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ACoAAAKmquABM0LC0AnA3zMnfEZv2zSWO-gyUdk
      responses:
        '200':
          description: Full experience
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      experience:
                        type: array
                        items:
                          type: object
                          properties:
                            companyName:
                              type: string
                            companyId:
                              type: string
                              format: utc-millisec
                            companyLink:
                              type: string
                              format: uri
                            companyLogo:
                              type: string
                              format: uri
                            location:
                              type: string
                            title:
                              type: string
                            subTitle:
                              type: string
                            description:
                              type: string
                            duration:
                              type: string
                            durationParsed:
                              type: object
                              properties:
                                start:
                                  type: object
                                  properties:
                                    year:
                                      type: integer
                                    month:
                                      type: integer
                                    day:
                                      type: integer
                                end:
                                  type: object
                                  properties:
                                    year:
                                      type: integer
                                    month:
                                      type: integer
                                    day:
                                      type: integer
                                present:
                                  type: boolean
                                period:
                                  type: string
                            positions:
                              type: array
                              items:
                                type: object
                                properties:
                                  companyName:
                                    type: string
                                  companyId:
                                    type: string
                                    format: utc-millisec
                                  companyLink:
                                    type: string
                                    format: uri
                                  companyLogo:
                                    type: string
                                    format: uri
                                  location:
                                    type: string
                                  title:
                                    type: string
                                  subTitle:
                                    type: string
                                  description:
                                    type: string
                                  duration:
                                    type: string
                                  durationParsed:
                                    type: object
                                    properties:
                                      start:
                                        type: object
                                        properties:
                                          year:
                                            type: integer
                                          month:
                                            type: integer
                                          day:
                                            type: integer
                                      end:
                                        type: object
                                        properties:
                                          year:
                                            type: integer
                                          month:
                                            type: integer
                                          day:
                                            type: integer
                                      present:
                                        type: boolean
                                      period:
                                        type: string
                            isMultiPositions:
                              type: boolean
                            totalDuration:
                              type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  experience:
                    - companyName: Esri
                      companyId: '5311'
                      companyLink: https://www.linkedin.com/company/5311/
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C560BAQE7SEkY882aSg/company-logo_200_200/company-logo_200_200/0/1656114632675/esri_logo?e=1761782400&v=beta&t=QcoWv8mYpfG6Mp9J-8Dw9X2B8hpaAUPBwPA5gBdxAAI
                      location: ''
                      title: Esri
                      subTitle: 10 yrs 3 mos
                      description: ''
                      duration: 10 yrs 3 mos
                      durationParsed:
                        start:
                          year: 0
                          month: 0
                          day: 0
                        end:
                          year: 0
                          month: 0
                          day: 0
                        present: false
                        period: ''
                      positions:
                        - companyName: Esri
                          companyId: '5311'
                          companyLink: https://www.linkedin.com/company/5311/
                          companyLogo: >-
                            https://media.licdn.com/dms/image/v2/C560BAQE7SEkY882aSg/company-logo_200_200/company-logo_200_200/0/1656114632675/esri_logo?e=1761782400&v=beta&t=QcoWv8mYpfG6Mp9J-8Dw9X2B8hpaAUPBwPA5gBdxAAI
                          location: Redlands, California, United States
                          title: Principal Product Engineer
                          subTitle: Full-time
                          description: >-
                            I contribute to research, design and testing efforts
                            on to multiple projects in Development at Esri

                            - Services, REST Spec (ArcGIS Enterprise)

                            - Network Management for Utilities (Utility Network)

                            - Database Technology (Geodatabase, Branch
                            Versioning, Attribute Rules)

                            - ArcGIS Scripting Language (Arcade)

                            - Mobile Technology (ArcGIS Runtime)

                            - Software Architecture (Using modern Proxies with
                            ArcGIS)
                          duration: Oct 2019 - Present · 6 yrs
                          durationParsed:
                            start:
                              year: 2019
                              month: 10
                              day: 1
                            end:
                              year: 0
                              month: 0
                              day: 0
                            present: true
                            period: 6 yrs
                        - companyName: Esri
                          companyId: '5311'
                          companyLink: https://www.linkedin.com/company/5311/
                          companyLogo: >-
                            https://media.licdn.com/dms/image/v2/C560BAQE7SEkY882aSg/company-logo_200_200/company-logo_200_200/0/1656114632675/esri_logo?e=1761782400&v=beta&t=QcoWv8mYpfG6Mp9J-8Dw9X2B8hpaAUPBwPA5gBdxAAI
                          location: Redlands, CA, United States
                          title: Product Owner
                          subTitle: ''
                          description: Utility network, geodatabase, ArcGIS Runtime
                          duration: Jan 2018 - Oct 2019 · 1 yr 10 mos
                          durationParsed:
                            start:
                              year: 2018
                              month: 1
                              day: 1
                            end:
                              year: 2019
                              month: 10
                              day: 1
                            present: false
                            period: 1 yr 10 mos
                        - companyName: Esri
                          companyId: '5311'
                          companyLink: https://www.linkedin.com/company/5311/
                          companyLogo: >-
                            https://media.licdn.com/dms/image/v2/C560BAQE7SEkY882aSg/company-logo_200_200/company-logo_200_200/0/1656114632675/esri_logo?e=1761782400&v=beta&t=QcoWv8mYpfG6Mp9J-8Dw9X2B8hpaAUPBwPA5gBdxAAI
                          location: Redlands, California, United States
                          title: Product Engineer
                          subTitle: Full-time
                          description: >-
                            Product Engineer in Software Products Division -
                            Esri
                          duration: Jul 2015 - Jan 2018 · 2 yrs 7 mos
                          durationParsed:
                            start:
                              year: 2015
                              month: 7
                              day: 1
                            end:
                              year: 2018
                              month: 1
                              day: 1
                            present: false
                            period: 2 yrs 7 mos
                      isMultiPositions: true
                      totalDuration: 10 yrs 3 mos
                    - companyName: Electricity and water Authority
                      companyId: ''
                      companyLink: >-
                        https://www.linkedin.com/search/results/all/?keywords=Electricity+and+water+Authority
                      companyLogo: ''
                      location: Bahrain
                      title: Software Architect
                      subTitle: Electricity and water Authority
                      description: >-
                        As a Software Architect at EWA, I’m responsible for
                        maintaining and up and running operations so the
                        customers can receive optimum and uninterrupted
                        electricity and water service. EWA keeps upgrading the
                        systems to ensure effective service and to stay up to
                        date with technology.
                      duration: May 2012 - Jul 2015 · 3 yrs 3 mos
                      durationParsed:
                        start:
                          year: 2012
                          month: 5
                          day: 1
                        end:
                          year: 2015
                          month: 7
                          day: 1
                        present: false
                        period: 3 yrs 3 mos
                      positions:
                        - companyName: Microcenter, Esri Distributor in Bahrain
                          companyId: ''
                          companyLink: >-
                            https://www.linkedin.com/search/results/all/?keywords=Microcenter%2C+Esri+Distributor+in+Bahrain
                          companyLogo: ''
                          location: Bahrain
                          title: Software Architect
                          subTitle: Microcenter, Esri Distributor in Bahrain
                          description: ''
                          duration: Jun 2011 - May 2012 · 1 yr
                          durationParsed:
                            start:
                              year: 2011
                              month: 6
                              day: 1
                            end:
                              year: 2012
                              month: 5
                              day: 1
                            present: false
                            period: 1 yr
                    - companyName: Khatib & Alami CEC
                      companyId: '313169'
                      companyLink: https://www.linkedin.com/company/313169/
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C4D0BAQHh7jATR5D0OQ/company-logo_200_200/company-logo_200_200/0/1631353631656?e=1761782400&v=beta&t=Varm0v_TKGHDYFxuU_Kk8za452FBPxh35OuejrwEAck
                      location: ''
                      title: Khatib & Alami CEC
                      subTitle: 5 yrs 6 mos
                      description: ''
                      duration: 5 yrs 6 mos
                      durationParsed:
                        start:
                          year: 0
                          month: 0
                          day: 0
                        end:
                          year: 0
                          month: 0
                          day: 0
                        present: false
                        period: ''
                      positions:
                        - companyName: Khatib & Alami CEC
                          companyId: '313169'
                          companyLink: https://www.linkedin.com/company/313169/
                          companyLogo: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQHh7jATR5D0OQ/company-logo_200_200/company-logo_200_200/0/1631353631656?e=1761782400&v=beta&t=Varm0v_TKGHDYFxuU_Kk8za452FBPxh35OuejrwEAck
                          location: Bahrain
                          title: Technical Lead
                          subTitle: Full-time
                          description: ''
                          duration: Jan 2007 - Jun 2011 · 4 yrs 6 mos
                          durationParsed:
                            start:
                              year: 2007
                              month: 1
                              day: 1
                            end:
                              year: 2011
                              month: 6
                              day: 1
                            present: false
                            period: 4 yrs 6 mos
                        - companyName: Khatib & Alami CEC
                          companyId: '313169'
                          companyLink: https://www.linkedin.com/company/313169/
                          companyLogo: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQHh7jATR5D0OQ/company-logo_200_200/company-logo_200_200/0/1631353631656?e=1761782400&v=beta&t=Varm0v_TKGHDYFxuU_Kk8za452FBPxh35OuejrwEAck
                          location: Bahrain
                          title: GIS Application Developer
                          subTitle: ''
                          description: ''
                          duration: Jan 2006 - Dec 2007 · 2 yrs
                          durationParsed:
                            start:
                              year: 2006
                              month: 1
                              day: 1
                            end:
                              year: 2007
                              month: 12
                              day: 1
                            present: false
                            period: 2 yrs
                      isMultiPositions: true
                      totalDuration: 5 yrs 6 mos
      tags:
        - Profile
      description: Get the full work experience of a user by their URN.
  /api/v1/profile/certifications:
    get:
      summary: Certifications
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM
      responses:
        '200':
          description: Certifications
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      certifications:
                        type: array
                        items:
                          type: object
                          properties:
                            issuedBy:
                              type: string
                            certificationLink:
                              type: string
                            certificationName:
                              type: string
                            issuedDate:
                              type: string
                            issuerId:
                              type: string
                              format: utc-millisec
                            issuerLink:
                              type: string
                              format: uri
                            issuedDateParsed:
                              type: object
                              properties:
                                year:
                                  type: integer
                                month:
                                  type: integer
                                day:
                                  type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                data:
                  certifications:
                    - issuedBy: Zerodha
                      certificationLink: ''
                      certificationName: Stock Market Basics
                      issuedDate: Issued May 2022
                      issuerId: '2160857'
                      issuerLink: https://www.linkedin.com/company/2160857/
                      issuedDateParsed:
                        year: 2022
                        month: 5
                        day: 1
                    - issuedBy: Oracle
                      certificationLink: >-
                        https://brm-certview.oracle.com/pls/certview/ecertificate?ssn=OC2225604&trackId=OCIAA2021CA&key=7b70040e7a71e8c4c6a1102466642e0ab0787d85
                      certificationName: >-
                        Oracle Cloud Infrastructure 2021 Certified Solutions
                        Architect
                      issuedDate: Issued Dec 2021
                      issuerId: '1028'
                      issuerLink: https://www.linkedin.com/company/1028/
                      issuedDateParsed:
                        year: 2021
                        month: 12
                        day: 1
                    - issuedBy: Oracle
                      certificationLink: >-
                        https://brm-certview.oracle.com/pls/certview/ecertificate?ssn=OC2225604&trackId=OCIBF2021&key=89a859484e91f556af36324f628c4e3e3a40300d
                      certificationName: Oracle Certified Foundations Associate
                      issuedDate: Issued Sep 2021
                      issuerId: '1028'
                      issuerLink: https://www.linkedin.com/company/1028/
                      issuedDateParsed:
                        year: 2021
                        month: 9
                        day: 1
                    - issuedBy: Cisco
                      certificationLink: >-
                        https://www.credly.com/badges/a58edb6e-7819-4f24-8ff8-168b5a970fe0?source=linked_in_profile
                      certificationName: Introduction to Cybersecurity
                      issuedDate: Issued Aug 2021
                      issuerId: '1063'
                      issuerLink: https://www.linkedin.com/company/1063/
                      issuedDateParsed:
                        year: 2021
                        month: 8
                        day: 1
                    - issuedBy: Good Agile (www.goodagile.com)
                      certificationLink: ''
                      certificationName: Agile Scrum Master
                      issuedDate: ''
                      issuerId: ''
                      issuerLink: ''
                      issuedDateParsed:
                        year: 0
                        month: 0
                        day: 0
                    - issuedBy: Microsoft Corporation
                      certificationLink: ''
                      certificationName: Microsoft Certified Professional in C#.Net
                      issuedDate: ''
                      issuerId: ''
                      issuerLink: ''
                      issuedDateParsed:
                        year: 0
                        month: 0
                        day: 0
                    - issuedBy: National Stock Exhange of India
                      certificationLink: ''
                      certificationName: NCFM (NSE's certification in Financial Markets)
                      issuedDate: ''
                      issuerId: ''
                      issuerLink: ''
                      issuedDateParsed:
                        year: 0
                        month: 0
                        day: 0
                    - issuedBy: General Electric
                      certificationLink: ''
                      certificationName: Six Sigma Green Belt
                      issuedDate: ''
                      issuerId: ''
                      issuerLink: ''
                      issuedDateParsed:
                        year: 0
                        month: 0
                        day: 0
      tags:
        - Profile
      description: Get a user’s professional certifications by their URN.
  /api/v1/profile/education:
    get:
      summary: Education
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM
      responses:
        default:
          description: Education
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      education:
                        type: array
                        items:
                          type: object
                          properties:
                            duration:
                              type: string
                            durationParsed:
                              type: object
                              properties:
                                start:
                                  type: object
                                  properties:
                                    year:
                                      type: integer
                                    month:
                                      type: integer
                                    day:
                                      type: integer
                                end:
                                  type: object
                                  properties:
                                    year:
                                      type: integer
                                    month:
                                      type: integer
                                    day:
                                      type: integer
                            university:
                              type: string
                            universityLink:
                              type: string
                              format: uri
                            degree:
                              type: string
                            description:
                              type: string
                            subDescription:
                              type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                data:
                  education:
                    - duration: 2000 - 2004
                      durationParsed:
                        start:
                          year: 2000
                          month: 1
                          day: 1
                        end:
                          year: 2004
                          month: 1
                          day: 1
                      university: University of Mumbai
                      universityLink: https://www.linkedin.com/company/15093732/
                      degree: BE Computers, Computer Engineering
                      description: ''
                      subDescription: ''
                    - duration: 2012 - 2014
                      durationParsed:
                        start:
                          year: 2012
                          month: 1
                          day: 1
                        end:
                          year: 2014
                          month: 1
                          day: 1
                      university: Sikkim Manipal University Distance Education
                      universityLink: >-
                        https://www.linkedin.com/search/results/all/?keywords=Sikkim+Manipal+University+Distance+Education
                      degree: >-
                        Master of Business Administration (MBA), Accounting and
                        Finance
                      description: ''
                      subDescription: ''
      tags:
        - Profile
      description: Get a user’s complete education history by their URN.
  /api/v1/profile/skills:
    get:
      summary: Skills
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM
      responses:
        default:
          description: Skills
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      skills:
                        type: array
                        items:
                          type: object
                          properties:
                            skillName:
                              type: string
                            endorsementsLink:
                              type: string
                              format: uri
                            textActionTarget:
                              type: string
                              format: uri
                            isPassedLinkedInSkillAssessment:
                              type: boolean
                            endorsementsCount:
                              type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                data:
                  skills:
                    - skillName: Mentoring
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,1)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=1
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Mentoring&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 1
                    - skillName: Problem Solving
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Problem+Solving&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Leadership
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Leadership&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Strategic Planning
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Strategic+Planning&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Cloud Computing
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,22)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=1
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Cloud+Computing&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 30
                    - skillName: DevOps
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,18)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=1
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=DevOps&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 21
                    - skillName: Agile Methodologies
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,1311968710)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=1
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Agile+Methodologies&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: true
                      endorsementsCount: 17
                    - skillName: Requirements Analysis
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,464508201)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=1
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Requirements+Analysis&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 9
                    - skillName: Software Testing
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,4)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=1
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Software+Testing&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 5
                    - skillName: Shell Scripting
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Shell+Scripting&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Data Warehousing
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Data+Warehousing&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Coaching
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,3)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=1
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Coaching&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 1
                    - skillName: Groovy
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Groovy&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Microservices
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Microservices&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Cloud Foundry
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Cloud+Foundry&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Test Automation
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,23)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=1
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Test+Automation&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 36
                    - skillName: Test Planning
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,24)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=1
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Test+Planning&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 2
                    - skillName: Software Quality Assurance
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,25)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=1
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Software+Quality+Assurance&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 7
                    - skillName: Selenium WebDriver
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,26)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=1
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Selenium+WebDriver&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 1
                    - skillName: Behavior-Driven Development (BDD)
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Behavior-Driven+Development+%28BDD%29&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Continuous Delivery
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Continuous+Delivery&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Manual Testing
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,32)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=1
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Manual+Testing&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 1
                    - skillName: Quality Assurance
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,33)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=1
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Quality+Assurance&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 7
                    - skillName: Scrum
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,34)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=1
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Scrum&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 18
                    - skillName: Java
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,1312001480)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=2&modalTabIndex=2&detailScreenTabIndex=0
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Java&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: true
                      endorsementsCount: 0
                    - skillName: QTP
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,1312008404)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=0
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=QTP&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 8
                    - skillName: Oracle
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,1312005298)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=0
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Oracle&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 13
                    - skillName: HP Quality Center
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,1311999869)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=0
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=HP+Quality+Center&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 6
                    - skillName: Microsoft SQL Server
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,1312002950)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=0
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Microsoft+SQL+Server&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 4
                    - skillName: C#
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,1311971459)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=0
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=C%23&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 1
                    - skillName: HP QTP
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,1311973359)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=0
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=HP+QTP&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 1
                    - skillName: PL/SQL
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,1312006872)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=0
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=PL%2FSQL&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 2
                    - skillName: Selenium
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,2)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=0
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Selenium&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 2
                    - skillName: UFT
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=UFT&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Unix
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Unix&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Relational Databases
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Relational+Databases&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Git
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,12)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=0
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Git&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 2
                    - skillName: Spring Boot
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Spring+Boot&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Jenkins
                      endorsementsLink: >-
                        https://www.linkedin.com/in/mansoorshaikh/details/skills/urn:li:fsd_skill:(ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM,16)/endorsers?profileUrn=urn%3Ali%3Afsd_profile%3AACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM&tabIndex=0&modalTabIndex=0&detailScreenTabIndex=1
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Jenkins&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 2
                    - skillName: JIRA
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=JIRA&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: HP QuickTest Professional (QTP)
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=HP+QuickTest+Professional+%28QTP%29&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: JavaScript
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=JavaScript&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: JSON
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=JSON&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Maven
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Maven&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
                    - skillName: Cucumber
                      endorsementsLink: ''
                      textActionTarget: >-
                        https://www.linkedin.com/search/results/all/?keywords=Cucumber&origin=PROFILE_PAGE_SKILL_NAVIGATION
                      isPassedLinkedInSkillAssessment: false
                      endorsementsCount: 0
      tags:
        - Profile
      description: Get a user’s profile skills by their URN.
  /api/v1/profile/social-matrix:
    get:
      summary: Social Matrix
      parameters:
        - name: username
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ryanroslansky
      responses:
        default:
          description: Social Matrix
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      connectionsCount:
                        type: integer
                      followersCount:
                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                data:
                  connectionsCount: 8041
                  followersCount: 849253
      tags:
        - Profile
      description: >-
        Get a user’s social metrics by username, including follower count and
        connections.
  /api/v1/profile/recommendations:
    get:
      summary: Recommendations
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ACoAAAAKXBwBikfbNJww68eYvcu2dqDYJhHbp4g
      responses:
        '200':
          description: Recommendations
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      Recived:
                        type: array
                        items:
                          type: object
                          properties:
                            Text:
                              type: string
                            Caption:
                              type: string
                            Recommendee:
                              type: object
                              properties:
                                name:
                                  type: string
                                headline:
                                  type: string
                                urn:
                                  type: string
                                url:
                                  type: string
                                  format: uri
                      Given:
                        type: array
                        items:
                          type: object
                          properties:
                            Text:
                              type: string
                            Caption:
                              type: string
                            Recommendee:
                              type: object
                              properties:
                                name:
                                  type: string
                                headline:
                                  type: string
                                urn:
                                  type: string
                                url:
                                  type: string
                                  format: uri
                      Total:
                        type: integer
                      TotalGiven:
                        type: integer
                      TotalRecived:
                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  Recived:
                    - Text: >-
                        I worked with Mansoor for about 3 years. Mansoor has
                        been a great friend & colleague to work with. He was
                        leading a team I was part of. With MS automation
                        experience, he took no time to learn QTP tool & soon
                        became SME. He created QTP framework from scratch. He
                        mentored the team relatively new to automation.
                        Absolutely committed to work, excellent at communication
                        & people management. It was a good learning experience
                        working with him.
                      Caption: >-
                        July 17, 2012, Mansoor was senior to Kuldeep but didn't
                        manage Kuldeep directly
                      Recommendee:
                        name: Kuldeep Chavan
                        headline: Software Engineer at GE
                        urn: ACoAAAE0Z7IBswMmfsMjtbJHCe1qvsK-36yiOxo
                        url: https://www.linkedin.com/in/kuldeep-chavan-66a9286
                    - Text: "Worked with Mansoor in same group over the same functionality.Mansoor is a very had working,excellent team player, and person with very clear thinking who is really good at understanding of requirements and at the same time explaining them to the fellow team mates.Found him to be a very good team player who is ready to help and guide at every front.Expert in Test automation.On the top of it all a very enthusiastic,positive person and a very good human being.\r\n\r\nWish him all the very best."
                      Caption: >-
                        April 22, 2011, Aditya worked with Mansoor on the same
                        team
                      Recommendee:
                        name: Aditya Modi
                        headline: Senior Manager, Delivery at Nagarro
                        urn: ACoAAAXSvssBM2LCu8q3V3nxRBYKXI00PIXuefA
                        url: https://www.linkedin.com/in/adityamodi1983
                    - Text: "To whom it may concern, \r\nI have worked with Mansoor at GE.  In our time working together on test automation code I have found Mansoor to be a good partner in getting things done.  We worked at opposite times with him being in Mumbai, India, and myself being in Minden, NV.  As such, it has been helpful that Mansoor was easily able to understand requests for functionality via email and deliver good working code by the next day. The work that Mansoor has done, that I am familiar with, was using Quick Test Professional to automate testing of Windows applications.  I would say that his experience in this work is expert level.  I would recommend him any time for test automation work.\r\nEelke Wiegers"
                      Caption: June 2, 2009, Eelke worked with Mansoor on the same team
                      Recommendee:
                        name: Eelke Wiegers
                        headline: Software Engineer at Disney
                        urn: ACoAAAAseUgBrx-qYr8C_mqAZeY9cdY-PJu5EEE
                        url: https://www.linkedin.com/in/ewiegers
                  Given:
                    - Text: >-
                        I know Sarafaraz for more than 3 years now. We both were
                        working in the same Java based project.  I find him very
                        detailed oriented. He know how to break down complex
                        problems into manageable pieces. Technically, he is very
                        strong and loves programming. He has created several
                        Java based frameworks which are used by several teams. 
                        Always ready to offer guidance and support when needed.
                        Excellent team player. Would love to work with him in
                        future too. 
                      Caption: >-
                        April 22, 2018, Mansoor worked with Sarfaraz on the same
                        team
                      Recommendee:
                        name: Sarfaraz Ahmed
                        headline: >-
                          Group CEO | Co-founder | Entrepreneur | Technology
                          Leader | Innovation | Transformation | AI | Building
                          Innovative Solution | Strategic Initiatives  | Ex-JPMC
                          Vice President | Ex-Morgan Stanley - Senior Manager|
                        urn: ACoAAAPEHpUBQfGdjOhIECV0uS3lrLTG5W8IvvM
                        url: https://www.linkedin.com/in/sarfaraz007
                    - Text: "I and Eelke has worked in the same group at GE. He was located in Minden, US and I was based in Mumbai, India. We both worked on the automation development activities. He is a very nice person with good interpersonal skills and has very strong technical expertise as far as Software Test Automation is concerned. He was able to understand the task that I gave to him during my EOD and was able to deliver it to me by the next day. His understanding of test automation was of an expert level. I can recommend him anytime for testing and test automation related task.\r\nIt was wonderful working with him.\r\n\r\nI wish him best of luck for all his future endeavors.\r\n\r\nThanks,\r\nMansoor"
                      Caption: >-
                        September 1, 2011, Mansoor worked with Eelke on the same
                        team
                      Recommendee:
                        name: Eelke Wiegers
                        headline: Software Engineer at Disney
                        urn: ACoAAAAseUgBrx-qYr8C_mqAZeY9cdY-PJu5EEE
                        url: https://www.linkedin.com/in/ewiegers
                    - Text: "I and Vishal studied in the same engineering college in mumbai. He is really good person with good interpersonal skills. He was a very hardworking and talented guy with good grasping skills. I wish him best of luck for his career.\r\n\r\nThanks,\r\nMansoor"
                      Caption: September 1, 2011, Mansoor and Vishal studied together
                      Recommendee:
                        name: Vishal Bhanage
                        headline: >-
                          Senior Solution & Data Architect | Development Head | 

                          Azure | AWS | Dynamics 365 | Power Platform | DevOps |
                          AI | Copilot | 

                          .Net | API | Microservice | Angular JS | React | SQL
                        urn: ACoAAAOii6kBDaMi8uNzEHLsy2_eOYydTsQ6qYE
                        url: >-
                          https://www.linkedin.com/in/vishalmicrosoftprofessional
                    - Text: "I have worked with Aditya at GE Energy in the same project. I found him to be an excellent team player and has good problem solving skills. He has good programming skills and does a good job at analysing the Root Cause of a technical issue and fixing them as well.He picked up new tools pretty quickly and played a signficant role in managing 3 Patni consultants at GE for unit testing and automation work of our project.   It was wonderful working with him at GE.\r\n\r\nThanks,\r\nMansoor"
                      Caption: >-
                        April 22, 2011, Mansoor worked with Aditya on the same
                        team
                      Recommendee:
                        name: Aditya Modi
                        headline: Senior Manager, Delivery at Nagarro
                        urn: ACoAAAXSvssBM2LCu8q3V3nxRBYKXI00PIXuefA
                        url: https://www.linkedin.com/in/adityamodi1983
                  Total: 7
                  TotalGiven: 4
                  TotalRecived: 3
      tags:
        - Profile
      description: Get a user’s given and received recommendations by their URN.
  /api/v1/profile/similar:
    get:
      summary: Similar
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ACoAAA8BYqEBCGLg_vT_ca6mMEqkpp9nVffJ3hc
      responses:
        default:
          description: Similar
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: utc-millisec
                        urn:
                          type: string
                        publicIdentifier:
                          type: string
                        firstName:
                          type: string
                        lastName:
                          type: string
                        headline:
                          type: string
                        creator:
                          type: boolean
                        profilePictureURL:
                          type: string
                          format: uri
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  - id: '11096266'
                    urn: ACoAAACpUMoB0cYuPVVbZpK8Y-gNn0mVmGWwnzk
                    publicIdentifier: kevinolearytv
                    firstName: Kevin
                    lastName: O'Leary
                    headline: Chairman, O’Leary Ventures and Beanstox
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/C4E03AQFztoBPChLfwQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516323178819?e=1746057600&v=beta&t=AGtRVPE0LfZretgoOZvIsi4SBfl_qzQpqA8NM9mpO_o
                  - id: '50515335'
                    urn: ACoAAAMCzYcBj7k8LBrG8tu6vjLRWGWaQ9WFxoc
                    publicIdentifier: anupammittal007
                    firstName: Anupam
                    lastName: Mittal
                    headline: >-
                      Founder & CEO @ People Group | Tech & D2C Builder &
                      Investor

                      🦈 @Shark Tank India
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/D4D03AQH-UEtOFzyzKQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1684481062551?e=1746057600&v=beta&t=sanHexbKn5CKCufuKP8TUqGQaUSCfwElVaUsdiRCUJE
                  - id: '205000603'
                    urn: ACoAAAw4D5sB4ZMefUY22SQECAv5kgQQKM4Cwh4
                    publicIdentifier: stephencurry30
                    firstName: Stephen
                    lastName: Curry
                    headline: >-
                      NBA Athlete | Producer, Investor, Entrepreneur,
                      Philanthropist, Gold Medalist
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/C5603AQFB4ebeyLpzgw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1568784020966?e=1746057600&v=beta&t=_XLoCJXi8XBKm29EQY57BTFxhMY2bbm0QUmrd6fRrj0
                  - id: '949736145'
                    urn: ACoAADib0tEByzvgsS0kMMiPk4liOa1qZs3Q4pE
                    publicIdentifier: vancityreynolds
                    firstName: Ryan
                    lastName: Reynolds
                    headline: Part-Time Actor, Business Owner
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/C5603AQGOBfXsKX8U5Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1636498355197?e=1746057600&v=beta&t=xh6zOwFgpmHCRHHIOXQcg0w1o9CB7DGAOhz7XtePKwc
                  - id: '955327387'
                    urn: ACoAADjxI5sB8zh1KYWtStYxnRHjvVa6ckeE8Eo
                    publicIdentifier: nitin-gadkari-5b7b2b227
                    firstName: Nitin
                    lastName: Gadkari
                    headline: >-
                      Minister of Road Transport & Highways, Government of India
                      at Government of India
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/D4D03AQFuxFsr9M-Xlg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1723815535181?e=1746057600&v=beta&t=P4hkmu-F_PgN9xkP55_QECNTxm7rS4nUpcwZ_EV90e4
                  - id: '5230595'
                    urn: ACoAAABP0AMBxTT-IKvJJmR1hsrWl5SeJjUvi10
                    publicIdentifier: sethberkley
                    firstName: Seth
                    lastName: Berkley
                    headline: Health Consultant
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/D4E03AQF2mnyMwpNcZA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1696409610876?e=1746057600&v=beta&t=yVG96oaKxyUBw0BN3YrJx-m0Nie5gL3xCF-4TdO9MMg
                  - id: '19186432'
                    urn: ACoAAAEkwwAB9KEc2TrQgOLEQ-vzRyZeCDyc6DQ
                    publicIdentifier: satyanadella
                    firstName: Satya
                    lastName: Nadella
                    headline: Chairman and CEO at Microsoft
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/C5603AQHHUuOSlRVA1w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1579726625483?e=1746057600&v=beta&t=5PaCFTSZ5mrqysAHWG6MJUKLD6Fe0XqJFr6qf-DPU-c
                  - id: '1213'
                    urn: ACoAAAAABL0B3SGhqeNX998wiOuk_8hYA6ojLwg
                    publicIdentifier: reidhoffman
                    firstName: Reid
                    lastName: Hoffman
                    headline: >-
                      Co-Founder, LinkedIn & Inflection AI. Author of
                      Superagency. Investor at Greylock.
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/D5603AQHW7wKzPb3DAg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1718216236351?e=1746057600&v=beta&t=L665q8aTpoje1OPom6DtGkKd-XMROyaHqgt0R6i6900
                  - id: '1111511297'
                    urn: ACoAAEJAUQEBouU2110ZLhX9BGLPGGP61Wuqsv8
                    publicIdentifier: snoopdogg
                    firstName: 'Snoop '
                    lastName: Dogg
                    headline: >-
                      CEO - Death Row Records | Founder - Snoopadelic Pictures |
                      Founder - Doggy Style Records |
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/D5603AQHN1f-W4ZsjWQ/profile-displayphoto-shrink_800_800/B56ZRfsMmSH0Ag-/0/1736772209353?e=1746057600&v=beta&t=P_IKQgpvyofMYTb8k-g0zYQLe9leRM7s87D0JhwHgVg
                  - id: '971363896'
                    urn: ACoAADnl1jgBdlHVvRibBu9Fm0M77z4oYsyVQ0k
                    publicIdentifier: mr-beast
                    firstName: Jimmy
                    lastName: Donaldson
                    headline: Founder at MrBeast & Feastables
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/D5603AQEojUMMIywnPA/profile-displayphoto-shrink_400_400/B56ZQFD5qVHoAk-/0/1735251696581?e=1746057600&v=beta&t=6C6NYgKZOiEDtWym0rtb9Xnxhd1TZIdzPO2JohOy3jg
                  - id: ''
                    urn: ACoAAEX57VsBxraqaomep26lftffzMVDVCpa4_Q
                    publicIdentifier: ''
                    firstName: ''
                    lastName: ''
                    headline: ''
                    creator: false
                    profilePictureURL: ''
                  - id: '795733202'
                    urn: ACoAAC9t7NIBcdtQHhTWVV25CbaB7E6s729cTMQ
                    publicIdentifier: ursula-von-der-leyen
                    firstName: Ursula
                    lastName: von der Leyen
                    headline: President of the European Commission
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/C5603AQGJCqFaKOA9FA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1581949606683?e=1746057600&v=beta&t=MsxUCYk_cQ9duX99sIJlVg2-ye2G1Yq1aI2Qsoqbin4
                  - id: '1317361366'
                    urn: ACoAAE6FVtYBAW4bP82g1IhIHxzu_1J010WU3CQ
                    publicIdentifier: sundarpichai
                    firstName: 'Sundar '
                    lastName: 'Pichai '
                    headline: CEO at Google
                    creator: false
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/D4E03AQFrmDuWUxQoMg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1715645354620?e=1746057600&v=beta&t=TckVp1h1uw8UpKXZh2i2OA-_KDsYFhTKpLj2aumfxf0
                  - id: '803657130'
                    urn: ACoAAC_m1aoBCuAl3tCOFJZho4TVOR6w9XqnbH4
                    publicIdentifier: rishi-sunak
                    firstName: Rishi
                    lastName: Sunak
                    headline: >-
                      MP for Richmond and Northallerton. Former Prime Minister
                      of the United Kingdom.
                    creator: false
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/D4E03AQHe-oWoEMEqUw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1666517789777?e=1746057600&v=beta&t=cUV1_QNwl7Gs1YV-glpIkpVvA_o6cYlbFsWa00UwcrU
                  - id: '274826784'
                    urn: ACoAABBhhiABVwqIoiMz90f7wLjjl8xvtPe3u3c
                    publicIdentifier: narendramodi
                    firstName: Narendra
                    lastName: Modi
                    headline: Prime Minister of India
                    creator: false
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/D4D03AQHElqo2BcNgyw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1730290871844?e=1746057600&v=beta&t=Drve7fT6ahi03RZct4s6O_W8BuXR4_KONvIETuE6u-E
                  - id: '204068115'
                    urn: ACoAAAwp1RMBxG26M3Qkhm4klqLNr1bIplo6GhY
                    publicIdentifier: rbranson
                    firstName: Richard
                    lastName: Branson
                    headline: Founder at Virgin Group
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/C4D03AQHh6_Wth5f3rQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1625181963183?e=1746057600&v=beta&t=tyhz-9Epp0ZJ-1NkoEEJmwnmEVdsmRaz8luim1Va-vs
                  - id: '342821992'
                    urn: ACoAABRvDGgBUDKf31KasHdmgvySw4Pen6ybAes
                    publicIdentifier: beerbiceps
                    firstName: Ranveer
                    lastName: Allahbadia
                    headline: >-
                      Founder at BeerBiceps Media World Pvt. Ltd. | Forbes 30
                      under 30
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/D5603AQGlosHMDk-kwg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1730171107988?e=1746057600&v=beta&t=H0_8WII_YJfS5Rr-rek5hGUKh_R-S52qdyENwjklWUg
                  - id: '520776272'
                    urn: ACoAAB8KalABDcw07tqC2Tt9EP4dlEh-EaIjLU8
                    publicIdentifier: shantanu-naidu
                    firstName: Shantanu
                    lastName: Naidu
                    headline: >-
                      General Manager, Head - Strategic Initiatives, Tata
                      Motors,


                      Tata Small Animal Hospital Mumbai, Board of Directors, 


                      Founder, Goodfellows India, Mumbai Bookies


                      Business World 30 under 30, TEDx Sometimes
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/D4D03AQG2Bk6emxOMxA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1705473995236?e=1746057600&v=beta&t=emMZstTxGTOjmnLwnKOFIWDIYCg27XtyqNGdg8OpI60
                  - id: '1523653'
                    urn: ACoAAAAXP8UB4_GzJNUYcEDdAM6IBQNKZYe-WOU
                    publicIdentifier: andy-jassy-8b1615
                    firstName: Andy
                    lastName: Jassy
                    headline: President and CEO at Amazon
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/C5603AQGSl0b1ZCh2sQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1631724420241?e=1746057600&v=beta&t=uiGdWbh9gMTlr2Ds5n-kvCUKpGLHz7liiMyKLkF48xM
                  - id: '322149465'
                    urn: ACoAABMznFkB_XPgkYHnUl33kIHTWt1DtMAV6Pg
                    publicIdentifier: jenhsunhuang
                    firstName: Jensen
                    lastName: Huang
                    headline: Founder and CEO, NVIDIA
                    creator: false
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/D5603AQHOzNxbdK5hrg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1724130099627?e=1746057600&v=beta&t=uRMulFYy_-RlKXEd_EFc6PMCjdSqi6G9iCZKvqjqYOM
                  - id: '454269'
                    urn: ACoAAAAG7n0BqIWxwKBc4aC0Io6sFM1Rzg3vONI
                    publicIdentifier: khanacademy
                    firstName: Sal
                    lastName: Khan
                    headline: >-
                      Khan Academy, Schoolhouse.world, Khan Lab School, Khan Lab
                      High School
                    creator: true
                    profilePictureURL: >-
                      https://media.licdn.com/dms/image/v2/C4D03AQGac362dD7snA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1615325372156?e=1746057600&v=beta&t=Yb9CHRYSrZvcuuOg2PHiu-oG73zIQNJarkXtP7lv1ko
      tags:
        - Profile
      description: Get profiles similar to a user by their URN.
  /api/v1/profile/about:
    get:
      summary: About
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ACoAABV-k2IBBOzC_m_-Tap6jgcz-uybkCGszn8
      responses:
        default:
          description: About
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      contactInformation:
                        type: string
                      joined:
                        type: string
                      profilePhoto:
                        type: string
                      VerificationInfo:
                        type: object
                        properties:
                          isVerified:
                            type: boolean
                          verifiedSince:
                            type: string
                          verifiedBy:
                            type: string
                          issuedBy:
                            type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  contactInformation: Updated less than 3 months ago
                  joined: August 2014
                  profilePhoto: Updated over 1 year ago
                  VerificationInfo:
                    isVerified: true
                    verifiedSince: Over 1 year ago
                    verifiedBy: Verified by CLEAR using government ID
                    issuedBy: Yunling used an ID issued by China.
      tags:
        - Profile
      description: Get profile metadata, including last update and verification details.
  /api/v1/profile/full:
    get:
      summary: Get Full Profile
      parameters:
        - name: username
          in: query
          schema:
            type: string
          example: ryanroslansky
        - name: urn
          in: query
          schema:
            type: string
          example: ACoAAAAKXBwBikfbNJww68eYvcu2dqDYJhHbp4g
      responses:
        '200':
          description: Get Full Profile
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      id:
                        type: integer
                      urn:
                        type: string
                      username:
                        type: string
                      firstName:
                        type: string
                      lastName:
                        type: string
                      isCreator:
                        type: boolean
                      isPremium:
                        type: boolean
                      profilePicture:
                        type: string
                        format: uri
                      profilePictures:
                        type: array
                        items:
                          type: object
                          properties:
                            url:
                              type: string
                              format: uri
                            width:
                              type: integer
                            height:
                              type: integer
                      backgroundImage:
                        type: array
                        items:
                          type: object
                          properties:
                            width:
                              type: integer
                            height:
                              type: integer
                            url:
                              type: string
                              format: uri
                      summary:
                        type: string
                      headline:
                        type: string
                      geo:
                        type: object
                        properties:
                          country:
                            type: string
                          city:
                            type: string
                          full:
                            type: string
                          countryCode:
                            type: string
                      languages:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              type: string
                            proficiency:
                              type: string
                      educations:
                        type: array
                        items: {}
                      position:
                        type: array
                        items:
                          type: object
                          properties:
                            companyId:
                              type: integer
                            companyName:
                              type: string
                            companyUsername:
                              type: string
                            companyURL:
                              type: string
                              format: uri
                            companyLogo:
                              type: string
                              format: uri
                            companyIndustry:
                              type: string
                            companyStaffCountRange:
                              type: string
                            title:
                              type: string
                            multiLocaleTitle:
                              type: object
                              properties:
                                en_US:
                                  type: string
                            multiLocaleCompanyName:
                              type: object
                              properties:
                                en_US:
                                  type: string
                            location:
                              type: string
                            locationType:
                              type: string
                            description:
                              type: string
                            employmentType:
                              type: string
                            start:
                              type: object
                              properties:
                                year:
                                  type: integer
                                month:
                                  type: integer
                                day:
                                  type: integer
                            end:
                              type: object
                              properties:
                                year:
                                  type: integer
                                month:
                                  type: integer
                                day:
                                  type: integer
                      fullPositions:
                        type: array
                        items:
                          type: object
                          properties:
                            companyId:
                              type: integer
                            companyName:
                              type: string
                            companyUsername:
                              type: string
                            companyURL:
                              type: string
                              format: uri
                            companyLogo:
                              type: string
                              format: uri
                            companyIndustry:
                              type: string
                            companyStaffCountRange:
                              type: string
                            title:
                              type: string
                            multiLocaleTitle:
                              type: object
                              properties:
                                en_US:
                                  type: string
                            multiLocaleCompanyName:
                              type: object
                              properties:
                                en_US:
                                  type: string
                            location:
                              type: string
                            locationType:
                              type: string
                            description:
                              type: string
                            employmentType:
                              type: string
                            start:
                              type: object
                              properties:
                                year:
                                  type: integer
                                month:
                                  type: integer
                                day:
                                  type: integer
                            end:
                              type: object
                              properties:
                                year:
                                  type: integer
                                month:
                                  type: integer
                                day:
                                  type: integer
                      skills:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              type: string
                            passedSkillAssessment:
                              type: boolean
                      courses:
                        type: array
                        items: {}
                      certifications:
                        type: array
                        items: {}
                      projects:
                        type: object
                      publications:
                        type: array
                        items: {}
                      volunteering:
                        type: array
                        items: {}
                      supportedLocales:
                        type: array
                        items:
                          type: object
                          properties:
                            country:
                              type: string
                            language:
                              type: string
                      multiLocaleFirstName:
                        type: object
                        properties:
                          en_US:
                            type: string
                      multiLocaleLastName:
                        type: object
                        properties:
                          en_US:
                            type: string
                      multiLocaleHeadline:
                        type: object
                        properties:
                          en_US:
                            type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  id: 678940
                  urn: ACoAAAAKXBwBikfbNJww68eYvcu2dqDYJhHbp4g
                  username: ryanroslansky
                  firstName: Ryan
                  lastName: Roslansky
                  isCreator: true
                  isPremium: true
                  profilePicture: >-
                    https://media.licdn.com/dms/image/v2/C4D03AQELbnIckyItlw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1667929254389?e=1764201600&v=beta&t=rItiPBdNliUg-i1Dof_SB0C_x9YIQRjHoF5Nhgyfaas
                  profilePictures:
                    - url: >-
                        https://media.licdn.com/dms/image/v2/C4D03AQELbnIckyItlw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1667929254389?e=1764201600&v=beta&t=p3lIz1Vh7qs3zETsVaDeOuJhgwfHwqHURLMCijqMhH0
                      width: 100
                      height: 100
                    - url: >-
                        https://media.licdn.com/dms/image/v2/C4D03AQELbnIckyItlw/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1667929254389?e=1764201600&v=beta&t=BiE4d3bMEr4bSiljr4weweVRn0UuER6Ewci9qKrqknc
                      width: 200
                      height: 200
                    - url: >-
                        https://media.licdn.com/dms/image/v2/C4D03AQELbnIckyItlw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1667929254389?e=1764201600&v=beta&t=k1hf0C8fyvPLhZZZPf0OKqJAWPyy5uuxlNu4ezx02e0
                      width: 400
                      height: 400
                    - url: >-
                        https://media.licdn.com/dms/image/v2/C4D03AQELbnIckyItlw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1667929254389?e=1764201600&v=beta&t=rItiPBdNliUg-i1Dof_SB0C_x9YIQRjHoF5Nhgyfaas
                      width: 800
                      height: 800
                  backgroundImage:
                    - width: 800
                      height: 200
                      url: >-
                        https://media.licdn.com/dms/image/v2/C4D16AQHXtyQ-bg4B2Q/profile-displaybackgroundimage-shrink_200_800/profile-displaybackgroundimage-shrink_200_800/0/1580864697675?e=1764201600&v=beta&t=j6CSIRk8ijFfhJoeWHi1ltRrZnu7yy65PCjGt3oGmrE
                    - width: 1280
                      height: 320
                      url: >-
                        https://media.licdn.com/dms/image/v2/C4D16AQHXtyQ-bg4B2Q/profile-displaybackgroundimage-shrink_350_1400/profile-displaybackgroundimage-shrink_350_1400/0/1580864697728?e=1764201600&v=beta&t=wJxI2G_pvaG85T_qF676ZtkQaYMzrmsxVuqAFZTf0s4
                  summary: >-
                    As CEO of LinkedIn and EVP of Microsoft Office and Copilot,
                    I am passionate about connecting the world’s professionals
                    to make them more productive and successful. In my years
                    with LinkedIn, I've been fortunate to work alongside
                    talented and innovative colleagues, and together we have
                    developed the world's leading professional networking
                    platform. As we look to grow and evolve LinkedIn in the
                    years to come, I'm excited to continue driving our vision of
                    creating economic opportunity for every member of the global
                    workforce.
                  headline: CEO at LinkedIn
                  geo:
                    country: Stati Uniti d'America
                    city: San Francisco
                    full: San Francisco
                    countryCode: us
                  languages:
                    - name: English
                      proficiency: NATIVE_OR_BILINGUAL
                    - name: Spanish
                      proficiency: FULL_PROFESSIONAL
                  educations: []
                  position:
                    - companyId: 1337
                      companyName: LinkedIn
                      companyUsername: linkedin
                      companyURL: https://www.linkedin.com/company/linkedin/
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1764201600&v=beta&t=Y40pa-7WDwflzo6AdgZI8_nj_GZ6CchxmW1_LR7ad5E
                      companyIndustry: Software
                      companyStaffCountRange: 10001 - 0
                      title: Chief Executive Officer
                      multiLocaleTitle:
                        en_US: Chief Executive Officer
                      multiLocaleCompanyName:
                        en_US: LinkedIn
                      location: San Francisco Bay Area
                      locationType: ''
                      description: ''
                      employmentType: A tempo pieno
                      start:
                        year: 2020
                        month: 6
                        day: 0
                      end:
                        year: 0
                        month: 0
                        day: 0
                    - companyId: 1337
                      companyName: LinkedIn
                      companyUsername: linkedin
                      companyURL: https://www.linkedin.com/company/linkedin/
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1764201600&v=beta&t=Y40pa-7WDwflzo6AdgZI8_nj_GZ6CchxmW1_LR7ad5E
                      companyIndustry: Software
                      companyStaffCountRange: 10001 - 0
                      title: Chief Product Officer
                      multiLocaleTitle:
                        en_US: Chief Product Officer
                      multiLocaleCompanyName:
                        en_US: LinkedIn
                      location: San Francisco Bay Area
                      locationType: ''
                      description: ''
                      employmentType: A tempo pieno
                      start:
                        year: 2009
                        month: 5
                        day: 0
                      end:
                        year: 2020
                        month: 6
                        day: 0
                    - companyId: 1035
                      companyName: Microsoft
                      companyUsername: microsoft
                      companyURL: https://www.linkedin.com/company/microsoft/
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_400_400/B56ZYQ0mrGGoAc-/0/1744038948046/microsoft_logo?e=1764201600&v=beta&t=qlgOqrs287ZbE45SS_Jub8V3rOIB5dKMC6jAfRT3Z-k
                      companyIndustry: Software
                      companyStaffCountRange: 10001 - 0
                      title: Executive Vice President
                      multiLocaleTitle:
                        en_US: Executive Vice President
                      multiLocaleCompanyName:
                        en_US: Microsoft
                      location: ''
                      locationType: ''
                      description: ''
                      employmentType: A tempo pieno
                      start:
                        year: 2025
                        month: 6
                        day: 0
                      end:
                        year: 0
                        month: 0
                        day: 0
                    - companyId: 1666
                      companyName: Intuit
                      companyUsername: intuit
                      companyURL: https://www.linkedin.com/company/intuit/
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C560BAQFTpF8uneqScw/company-logo_400_400/company-logo_400_400/0/1661446146222/intuit_logo?e=1764201600&v=beta&t=KylFg2g-k_dV9bNC7K0L-lxIpseV8s6unOeOJupBWV8
                      companyIndustry: Software
                      companyStaffCountRange: 10001 - 0
                      title: Member Board of Directors
                      multiLocaleTitle:
                        en_US: Member Board of Directors
                      multiLocaleCompanyName:
                        en_US: Intuit
                      location: United States
                      locationType: ''
                      description: ''
                      employmentType: Part-time
                      start:
                        year: 2023
                        month: 5
                        day: 0
                      end:
                        year: 0
                        month: 0
                        day: 0
                    - companyId: 47009
                      companyName: The Paley Center for Media
                      companyUsername: the-paley-center-for-media
                      companyURL: >-
                        https://www.linkedin.com/company/the-paley-center-for-media/
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D4E0BAQED1gppBGHWcQ/company-logo_400_400/B4EZnkBxszGcAk-/0/1760467295635/the_paley_center_for_media_logo?e=1764201600&v=beta&t=WKK5YREyXSGBBv7JCsH-tLmPgJDOsyD5NtuNx7f8G9w
                      companyIndustry: Musei e istituzioni
                      companyStaffCountRange: 51 - 200
                      title: Member Board of Trustees
                      multiLocaleTitle:
                        en_US: Member Board of Trustees
                      multiLocaleCompanyName:
                        en_US: The Paley Center for Media
                      location: United States
                      locationType: ''
                      description: ''
                      employmentType: Part-time
                      start:
                        year: 2023
                        month: 5
                        day: 0
                      end:
                        year: 0
                        month: 0
                        day: 0
                  fullPositions:
                    - companyId: 1337
                      companyName: LinkedIn
                      companyUsername: linkedin
                      companyURL: https://www.linkedin.com/company/linkedin/
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1764201600&v=beta&t=Y40pa-7WDwflzo6AdgZI8_nj_GZ6CchxmW1_LR7ad5E
                      companyIndustry: Software
                      companyStaffCountRange: 10001 - 0
                      title: Chief Executive Officer
                      multiLocaleTitle:
                        en_US: Chief Executive Officer
                      multiLocaleCompanyName:
                        en_US: LinkedIn
                      location: San Francisco Bay Area
                      locationType: ''
                      description: ''
                      employmentType: A tempo pieno
                      start:
                        year: 2020
                        month: 6
                        day: 0
                      end:
                        year: 0
                        month: 0
                        day: 0
                    - companyId: 1337
                      companyName: LinkedIn
                      companyUsername: linkedin
                      companyURL: https://www.linkedin.com/company/linkedin/
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1764201600&v=beta&t=Y40pa-7WDwflzo6AdgZI8_nj_GZ6CchxmW1_LR7ad5E
                      companyIndustry: Software
                      companyStaffCountRange: 10001 - 0
                      title: Chief Product Officer
                      multiLocaleTitle:
                        en_US: Chief Product Officer
                      multiLocaleCompanyName:
                        en_US: LinkedIn
                      location: San Francisco Bay Area
                      locationType: ''
                      description: ''
                      employmentType: A tempo pieno
                      start:
                        year: 2009
                        month: 5
                        day: 0
                      end:
                        year: 2020
                        month: 6
                        day: 0
                    - companyId: 1035
                      companyName: Microsoft
                      companyUsername: microsoft
                      companyURL: https://www.linkedin.com/company/microsoft/
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_400_400/B56ZYQ0mrGGoAc-/0/1744038948046/microsoft_logo?e=1764201600&v=beta&t=qlgOqrs287ZbE45SS_Jub8V3rOIB5dKMC6jAfRT3Z-k
                      companyIndustry: Software
                      companyStaffCountRange: 10001 - 0
                      title: Executive Vice President
                      multiLocaleTitle:
                        en_US: Executive Vice President
                      multiLocaleCompanyName:
                        en_US: Microsoft
                      location: ''
                      locationType: ''
                      description: ''
                      employmentType: A tempo pieno
                      start:
                        year: 2025
                        month: 6
                        day: 0
                      end:
                        year: 0
                        month: 0
                        day: 0
                    - companyId: 1666
                      companyName: Intuit
                      companyUsername: intuit
                      companyURL: https://www.linkedin.com/company/intuit/
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C560BAQFTpF8uneqScw/company-logo_400_400/company-logo_400_400/0/1661446146222/intuit_logo?e=1764201600&v=beta&t=KylFg2g-k_dV9bNC7K0L-lxIpseV8s6unOeOJupBWV8
                      companyIndustry: Software
                      companyStaffCountRange: 10001 - 0
                      title: Member Board of Directors
                      multiLocaleTitle:
                        en_US: Member Board of Directors
                      multiLocaleCompanyName:
                        en_US: Intuit
                      location: United States
                      locationType: ''
                      description: ''
                      employmentType: Part-time
                      start:
                        year: 2023
                        month: 5
                        day: 0
                      end:
                        year: 0
                        month: 0
                        day: 0
                    - companyId: 47009
                      companyName: The Paley Center for Media
                      companyUsername: the-paley-center-for-media
                      companyURL: >-
                        https://www.linkedin.com/company/the-paley-center-for-media/
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D4E0BAQED1gppBGHWcQ/company-logo_400_400/B4EZnkBxszGcAk-/0/1760467295635/the_paley_center_for_media_logo?e=1764201600&v=beta&t=WKK5YREyXSGBBv7JCsH-tLmPgJDOsyD5NtuNx7f8G9w
                      companyIndustry: Musei e istituzioni
                      companyStaffCountRange: 51 - 200
                      title: Member Board of Trustees
                      multiLocaleTitle:
                        en_US: Member Board of Trustees
                      multiLocaleCompanyName:
                        en_US: The Paley Center for Media
                      location: United States
                      locationType: ''
                      description: ''
                      employmentType: Part-time
                      start:
                        year: 2023
                        month: 5
                        day: 0
                      end:
                        year: 0
                        month: 0
                        day: 0
                    - companyId: 7846
                      companyName: GoDaddy
                      companyUsername: godaddy
                      companyURL: https://www.linkedin.com/company/godaddy/
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C560BAQFBubd4youVzg/company-logo_400_400/company-logo_400_400/0/1636569873716/godaddy_logo?e=1764201600&v=beta&t=gPwueM1OhyF7GRcIBjWxUI-cDcEM2fVkwjmStZPC0js
                      companyIndustry: Software
                      companyStaffCountRange: 5001 - 10000
                      title: Member Board Of Directors
                      multiLocaleTitle:
                        en_US: Member Board Of Directors
                      multiLocaleCompanyName:
                        en_US: GoDaddy
                      location: ''
                      locationType: ''
                      description: ''
                      employmentType: Part-time
                      start:
                        year: 2018
                        month: 8
                        day: 0
                      end:
                        year: 2023
                        month: 1
                        day: 0
                    - companyId: 23488
                      companyName: Glam Media
                      companyUsername: mode-media
                      companyURL: https://www.linkedin.com/company/mode-media/
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C4E0BAQGlxdWh6ORomg/company-logo_400_400/company-logo_400_400/0/1631307880105?e=1764201600&v=beta&t=Ig2ITY5w_sQNFVbn3UetGGuv__NcHFFPUWbQ2nYqHKg
                      companyIndustry: Media online
                      companyStaffCountRange: 501 - 1000
                      title: SVP Products & Content
                      multiLocaleTitle:
                        en_US: SVP Products & Content
                      multiLocaleCompanyName:
                        en_US: Glam Media
                      location: ''
                      locationType: ''
                      description: >-
                        Responsible for all consumer, advertiser, publisher and
                        developer products across the Glam Media Network.


                        Grew Glam Media from a top 100 global Comscore property
                        to a top 10 in 18 months.
                      employmentType: ''
                      start:
                        year: 2007
                        month: 5
                        day: 0
                      end:
                        year: 2009
                        month: 5
                        day: 0
                    - companyId: 0
                      companyName: Housing Media
                      companyUsername: ''
                      companyURL: ''
                      companyLogo: ''
                      companyIndustry: ''
                      companyStaffCountRange: ''
                      title: Co-Founder / CEO
                      multiLocaleTitle:
                        en_US: Co-Founder / CEO
                      multiLocaleCompanyName:
                        en_US: Housing Media
                      location: ''
                      locationType: ''
                      description: >-
                        Co-founded and grew one of the first internet real
                        estate & rentals classified directories.  Leveraged the
                        internet for finding real estate buyers, selling
                        properties, and bringing efficiency to the home buying
                        process through multiple real estate brokers across CA
                        and FL.
                      employmentType: ''
                      start:
                        year: 1997
                        month: 1
                        day: 0
                      end:
                        year: 2007
                        month: 7
                        day: 0
                    - companyId: 1288
                      companyName: Yahoo
                      companyUsername: yahoo
                      companyURL: https://www.linkedin.com/company/yahoo/
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D4E0BAQHZRIvlF1NvZA/company-logo_400_400/company-logo_400_400/0/1734629033465/yahoo_logo?e=1764201600&v=beta&t=AHxJv7Tm3gYJwUARYU8_kyryYY5uaJX4xqd-xABWbhk
                      companyIndustry: Software
                      companyStaffCountRange: 5001 - 10000
                      title: General Management & Product Management
                      multiLocaleTitle:
                        en_US: General Management & Product Management
                      multiLocaleCompanyName:
                        en_US: Yahoo
                      location: ''
                      locationType: ''
                      description: >-
                        Various General Management and Global Product Management
                        roles across Commerce, Classifieds, Directory and
                        Search.
                      employmentType: ''
                      start:
                        year: 1999
                        month: 12
                        day: 0
                      end:
                        year: 2004
                        month: 6
                        day: 0
                  skills:
                    - name: Microsoft Copilot
                      passedSkillAssessment: false
                    - name: Product Management
                      passedSkillAssessment: false
                    - name: Online Advertising
                      passedSkillAssessment: false
                    - name: Monetization
                      passedSkillAssessment: false
                    - name: Strategy
                      passedSkillAssessment: false
                    - name: Social Media
                      passedSkillAssessment: false
                    - name: Consumer Products
                      passedSkillAssessment: false
                    - name: SEO
                      passedSkillAssessment: false
                    - name: Entrepreneurship
                      passedSkillAssessment: false
                    - name: PPC
                      passedSkillAssessment: false
                    - name: Real Estate
                      passedSkillAssessment: false
                    - name: Analytics
                      passedSkillAssessment: false
                    - name: Usability
                      passedSkillAssessment: false
                    - name: Digital Strategy
                      passedSkillAssessment: false
                    - name: Business Operations Management
                      passedSkillAssessment: false
                    - name: User Experience
                      passedSkillAssessment: false
                    - name: Start-ups
                      passedSkillAssessment: false
                    - name: Online Marketing
                      passedSkillAssessment: false
                    - name: Web Analytics
                      passedSkillAssessment: false
                    - name: Mobile Marketing
                      passedSkillAssessment: false
                  courses: []
                  certifications: []
                  projects: {}
                  publications: []
                  volunteering: []
                  supportedLocales:
                    - country: US
                      language: en
                  multiLocaleFirstName:
                    en_US: Ryan
                  multiLocaleLastName:
                    en_US: Roslansky
                  multiLocaleHeadline:
                    en_US: CEO at LinkedIn
      tags:
        - Profile
      description: >-
        Retrieve the complete profile in a single request (all fields included).
        Only a URN or a username is required no need to provide both.
  /api/v1/profile/username-to-urn:
    get:
      summary: Get URN
      parameters:
        - name: username
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ryanroslansky
      responses:
        '200':
          description: Get URN
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      urn:
                        type: string
                      username:
                        type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  urn: ACoAAAAKXBwBikfbNJww68eYvcu2dqDYJhHbp4g
                  username: ryanroslansky
      tags:
        - Profile
      description: Get urn of profile by username
  /api/v1/profile/reactions:
    get:
      summary: Reactions
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM
        - name: cursor
          in: query
          required: false
          deprecated: false
          schema:
            type: string
      responses:
        default:
          description: Reactions
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      cursor:
                        type: string
                      reactions:
                        type: array
                        items:
                          type: object
                          properties:
                            header:
                              type: string
                            text:
                              type: string
                              format: style
                            url:
                              type: string
                              format: uri
                            urn:
                              type: string
                              format: uri
                            author:
                              type: object
                              properties:
                                name:
                                  type: string
                                headline:
                                  type: string
                                urn:
                                  type: string
                                id:
                                  type: string
                                  format: uri
                                url:
                                  type: string
                                  format: uri
                                profilePictureURL:
                                  type: string
                                  format: uri
                            postedAt:
                              type: object
                              properties:
                                timestamp:
                                  type: integer
                                fullDate:
                                  type: string
                                  format: style
                                relativeDay:
                                  type: string
                            edited:
                              type: boolean
                            engagements:
                              type: object
                              properties:
                                totalReactions:
                                  type: integer
                                commentsCount:
                                  type: integer
                                repostsCount:
                                  type: integer
                                reactions:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      reactionType:
                                        type: string
                                      reactionCount:
                                        type: integer
                            mediaContent:
                              type: array
                              items:
                                type: object
                                properties:
                                  type:
                                    type: string
                                  url:
                                    type: string
                                    format: uri
                            resharedPostContent:
                              nullable: true
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  cursor: >-
                    dXJuOmxpOmFjdGl2aXR5OjczMDcwOTk5ODI3ODY5Mjg2NDAtMTc0MjE0ODM5MTYxNQ==
                  reactions:
                    - header: Mansoor Shaikh likes this
                      text: >-
                        Back at Meta, I interviewed a smart engineer with ~20
                        years of experience, but I had to fail them for a simple
                        reason: They could barely code.


                        It was so bad that most Meta junior engineers would have
                        been stronger coders than this candidate.


                        Based on the behavioral round, it seemed like this
                        engineer had transitioned to a more high-level architect
                        role at their company.


                        This meant that they were very far removed from the
                        day-to-day code and only engaged with the technical part
                        of engineering through very broad strokes.


                        Despite being huge, Meta is a lightning-fast place where
                        engineers must put boots on the ground immediately and
                        land commits as early as Week 1.


                        This engineer certainly wouldn't have survived had we
                        let them in. This was the best decision for both
                        parties.


                        It doesn't matter how senior you are as an engineer, you
                        must keep your coding skills sharp to guarantee your
                        relevance in the market. Learn the best way to do that
                        here: https://lnkd.in/gWXbDnM2


                        #techcareergrowth #softwareengineering #growthtips
                        #interviewtips #staffengineer
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307251328097882112
                      urn: urn:li:activity:7307251328097882112
                      author:
                        name: Alex Chiou
                        headline: Co-Founder @ Taro, Ex-Robinhood, Ex-Meta Tech Lead
                        urn: ACoAAAuZcwoBPlBN2NazFcacZUqv-5tBXFFzglg
                        id: urn:li:member:194605834
                        url: https://www.linkedin.com/in/alexander-chiou
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQH_UXSxccTnKQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1658957420377?e=1747872000&v=beta&t=6l8oCMuEwpaiDCLyVEEDx5Qgq8rUGNCwFoyARfKEKOg
                      postedAt:
                        timestamp: 1742184478783
                        fullDate: 2025-03-17 04:07:58.00 +0000 UTC
                        relativeDay: 19h
                      edited: true
                      engagements:
                        totalReactions: 1238
                        commentsCount: 85
                        repostsCount: 10
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 949
                          - reactionType: ENTERTAINMENT
                            reactionCount: 222
                          - reactionType: INTEREST
                            reactionCount: 28
                          - reactionType: PRAISE
                            reactionCount: 17
                          - reactionType: EMPATHY
                            reactionCount: 12
                          - reactionType: APPRECIATION
                            reactionCount: 10
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D5622AQFsBo0CMTsG8A/feedshare-shrink_2048_1536/B56ZV5zzg5HoAo-/0/1741505378664?e=1744848000&v=beta&t=KEnif19OCbx4n0w7_LK0o7KRMPJjQctnStVpdZCJGjs
                      resharedPostContent: null
                    - header: Mansoor Shaikh likes this
                      text: >-
                        #OpenToWork

                        After over four years of high impact HR work at
                        Citizens, my role has been eliminated due to
                        organizational changes following the retirement of Beth
                        Johnson  our Chief Experience Officer. As her group was
                        distributed across other teams, my position was no
                        longer needed. While transitions like these are never
                        easy, I choose to see them as opportunities—moments to
                        reflect, reset, and step boldly into what’s next.


                        I am incredibly grateful for the opportunity to have
                        worked alongside phenomenal leaders, shaping the people
                        and talent strategies that drive digital, data, and AI
                        transformation. My passion lies at the intersection of
                        business strategy and human capital—ensuring that
                        organizations evolve their people, culture, and
                        leadership capabilities alongside technological
                        advancements.


                        What’s Next?


                        I’m looking for my next leadership opportunity where I
                        can:

                        — Architect people strategies that fuel transformation,
                        innovation, and growth

                        —Align talent, culture, and organizational design to
                        help businesses thrive in an AI-driven world

                        —Build high-performing, inclusive teams and develop the
                        next generation of leadership


                        I bring expertise in:


                        — AI, Data & Digital Transformation – Helping companies
                        integrate AI, foster data literacy, and enable
                        enterprise-wide analytics adoption.

                        — HR Strategy for C-Suite Leaders – Partnering with
                        executive teams across strategy, product, marketing,
                        digital, experience design, and enterprise
                        transformation.

                        —Talent Acquisition , Culture & Workforce Strategy –
                        Leading large-scale recruiting operations, succession
                        planning, and workforce upskilling at national and
                        global levels.


                        While my time at Citizens is winding down, my energy for
                        driving impact through people and culture is stronger
                        than ever. If you know of organizations looking for an
                        HR executive and culture carrier with a track record of
                        enabling transformation and high performance, I’d love
                        to connect.


                        To my incredible network—thank you in advance for your
                        support. Let’s talk, share ideas, and explore what’s
                        next together!


                        #HRLeadership #Transformation #PeopleStrategy
                        #ExecutiveSearch #AIandHR #FutureOfWork #mindsetshift
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307218784979738624
                      urn: urn:li:activity:7307218784979738624
                      author:
                        name: Chad Reynolds
                        headline: >-
                          Strategic HR Executive | Driving Data & Digital
                          Transformation & Organizational Change | People &
                          Culture Leader | Suicide Prevention | Top 150 Global
                          Fundraiser for Movember 2021-2024
                        urn: ACoAAAnp5K0BqWTKRdxaPFkiyjUPxqyielbHOu4
                        id: urn:li:member:166323373
                        url: https://www.linkedin.com/in/chad-reynolds-citizensbank
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQH8rH5XFvwl1A/profile-displayphoto-shrink_800_800/B56ZQi9fJEHIAc-/0/1735753332277?e=1747872000&v=beta&t=K5a9Jp9boouTSJEjphSJYEF80zIPRlo0tu5uc6lcXmI
                      postedAt:
                        timestamp: 1742176719899
                        fullDate: 2025-03-17 01:58:39.00 +0000 UTC
                        relativeDay: 13h
                      edited: false
                      engagements:
                        totalReactions: 669
                        commentsCount: 49
                        repostsCount: 59
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 360
                          - reactionType: APPRECIATION
                            reactionCount: 264
                          - reactionType: EMPATHY
                            reactionCount: 34
                          - reactionType: PRAISE
                            reactionCount: 11
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D5622AQE4lAzVP5dj6A/feedshare-shrink_2048_1536/B56ZWg6lEFGQAo-/0/1742161469872?e=1744848000&v=beta&t=lwlkB8WOjLtaYB3pWgx4Uqsc7Sj8wALoUWxPopwBBa0
                      resharedPostContent: null
                    - header: Mansoor Shaikh likes this
                      text: >-
                        I am celebrating my failures today. Please comment -
                        Congratulations, Keep Going, Awesome… something of that
                        sort. Thank you!


                        Update: I need to explain something. I fail everyday. So
                        do you. We just don’t take time to celebrate it. Today,
                        as I am taking a day off, decided to sit and celebrate
                        my little failures.


                        I failed to make chai for my wife once because I was
                        lazy that day is an equal failure to I lost some
                        business. 


                        Don’t think of too dramatic a failure. 🤣

                        Also this is a reminder to you. 


                        I am not seeking emotional support or empathy through
                        this. I am celebrating my failure and I meant it.
                        Partying today, meeting friends, chilling out in a cafe
                        by myself. That sort celebrating the kutti failures.
                        They should know I dedicated a day for them. They
                        deserve it.
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307218577487458305
                      urn: urn:li:activity:7307218577487458305
                      author:
                        name: Pradeep Soundararajan
                        headline: >-
                          Driving growth by preventing bugs & regression |
                          Founder CEO of Bugasura & Moolya
                        urn: ACoAAACM9ogB1e-QhbcMIo2ce_uTDK_771k-PnQ
                        id: urn:li:member:9238152
                        url: https://www.linkedin.com/in/testertested
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFclUuZENs8Pw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1727431695272?e=1747872000&v=beta&t=_Yprh6OhtRmFR7Uajzro7te88stvw1GpXyRS1S7gHQw
                      postedAt:
                        timestamp: 1742176670429
                        fullDate: 2025-03-17 01:57:50.00 +0000 UTC
                        relativeDay: 5d
                      edited: true
                      engagements:
                        totalReactions: 41
                        commentsCount: 17
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 31
                          - reactionType: EMPATHY
                            reactionCount: 4
                          - reactionType: PRAISE
                            reactionCount: 4
                          - reactionType: ENTERTAINMENT
                            reactionCount: 1
                          - reactionType: APPRECIATION
                            reactionCount: 1
                      mediaContent: null
                      resharedPostContent: null
                    - header: Mansoor Shaikh likes this
                      text: >-
                        AI is quietly hijacking startup tech stacks—and it’s a
                        problem. When I interview founders, I dig into *why*
                        they insist on a specific stack for their first CTO
                        hire. The answer? Almost always: 'AI told me.' They’ve
                        used tools like ChatGPT to write job specs or build
                        prototypes, then blindly locked in those suggestions.


                        Here’s the kicker: Critical decisions—like the tech that
                        powers your business—are being outsourced to
                        trend-chasing LLMs instead of deliberate strategy. My
                        advice? Strip *all* technical requirements from
                        AI-generated specs. Let your CTO decide what’s best.


                        Anyone else seeing this? What’s your take—smart shortcut
                        or risky move?
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307208045757947904
                      urn: urn:li:activity:7307208045757947904
                      author:
                        name: Dan Boresjo
                        headline: Principal Developer | Chief Technology Officer (CTO)
                        urn: ACoAAAA09RQB20ifPgwFm_zMOr70ji9R6P3f7fc
                        id: urn:li:member:3470612
                        url: https://www.linkedin.com/in/dboresjo
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5103AQG2tXXS04Tjuw/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1516234714504?e=1747872000&v=beta&t=nEl3EFYzGY2L0oklRyFJUNDlizPBC4jSYYFTS2vKu7U
                      postedAt:
                        timestamp: 1742174159469
                        fullDate: 2025-03-17 01:15:59.00 +0000 UTC
                        relativeDay: 3d
                      edited: false
                      engagements:
                        totalReactions: 17
                        commentsCount: 8
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 14
                          - reactionType: INTEREST
                            reactionCount: 3
                      mediaContent: null
                      resharedPostContent: null
                      reactedComment:
                        author:
                          name: John Crickett
                          headline: >-
                            Helping you become a better software engineer by
                            building real-world applications.
                          urn: ACoAAAAADOIB1jesEqZdnwQE5csLme2tAbpHuMg
                          id: urn:li:member:3298
                          url: https://www.linkedin.com/in/johncrickett
                          profilePictureURL: >-
                            https://media.licdn.com/dms/image/v2/D4E03AQFt6rZ2n09buA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1721990590702?e=1747872000&v=beta&t=PtJwH7ec0H0KUxUOJ4fwsTiAs3WuGm8d8C5Z8DHu0qo
                        comment: >-
                          Then they're not looking for a CTO, they're looking
                          for a software engineer.
                        createdAt: 1741949320328
                        permalink: >-
                          https://www.linkedin.com/feed/update/urn:li:activity:7305920064304672768?commentUrn=urn%3Ali%3Acomment%3A%28activity%3A7305920064304672768%2C7306265002045329411%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287306265002045329411%2Curn%3Ali%3Aactivity%3A7305920064304672768%29
                        edited: false
                        engagements:
                          totalReactions: 7
                          commentsCount: 0
                          repostsCount: 0
                          reactions:
                            - reactionType: LIKE
                              reactionCount: 7
                    - header: Mansoor Shaikh likes this
                      text: >-
                        General Category, Male, Salaried Class, Taxpayer is the
                        most (forced) giving person in the country. 😞


                        He only gives and receives nothing in return from
                        government. No reservations in schools or jobs, no
                        subsidies, no handouts, laws which hold you guilty
                        unless proven otherwise, and responsibilities of all
                        kinds.


                        Let's all take some time out of our busy schedule to
                        honour this class of givers.


                        Being a male is tough 💔
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307207729054408704
                      urn: urn:li:activity:7307207729054408704
                      author:
                        name: Sumit Goyal
                        headline: >-
                          @Fujitsu | Selenium | Playwright | API | Educator
                          👨‍💻 | Sharing Latest Interview Questions | 10
                          million + views 🚀🚀
                        urn: ACoAABsVEZsBtGIRagyeO_cOqAD_AdeOcAPw_eU
                        id: urn:li:member:454365595
                        url: https://www.linkedin.com/in/sumit-goyal-0771bb108
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFCm9ymjVtkrQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1730643836484?e=1747872000&v=beta&t=Td3wdP-xgRaXnJhzM-c3r6bulOSn5LxXIq9x1xtxGkM
                      postedAt:
                        timestamp: 1742174083961
                        fullDate: 2025-03-17 01:14:43.00 +0000 UTC
                        relativeDay: 1w
                      edited: false
                      engagements:
                        totalReactions: 55
                        commentsCount: 4
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 47
                          - reactionType: APPRECIATION
                            reactionCount: 6
                          - reactionType: EMPATHY
                            reactionCount: 2
                      mediaContent: null
                      resharedPostContent: null
                    - header: Mansoor Shaikh likes this
                      text: |-
                        Another day to celebrate getting older.

                        It’s a new year to learn, relearn, unlearn, and grow.

                        Happy birthday to me🎉
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307207561596792832
                      urn: urn:li:activity:7307207561596792832
                      author:
                        name: Marvelous Ikechi
                        headline: >-
                          Mobile & Web Engineer | Building Scalable &
                          High-Performance Apps | React Native, React JS, Next
                          JS
                        urn: ACoAACU17cABAbYWskfvJeMGuJxzOurhWzPGvcI
                        id: urn:li:member:624291264
                        url: https://www.linkedin.com/in/marvelous-ikechi
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFO_9AnNZHJxQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1701229237189?e=1747872000&v=beta&t=GOMGZFN89s6RAauIZ8sDukLjMeMmbmVFOsVUeTRIqUU
                      postedAt:
                        timestamp: 1742174044036
                        fullDate: 2025-03-17 01:14:04.00 +0000 UTC
                        relativeDay: 6d
                      edited: false
                      engagements:
                        totalReactions: 33
                        commentsCount: 15
                        repostsCount: 1
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 24
                          - reactionType: PRAISE
                            reactionCount: 5
                          - reactionType: EMPATHY
                            reactionCount: 4
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D5622AQE4oansW_Q6LQ/feedshare-shrink_1280/B56ZWAN6XEHEAo-/0/1741612892579?e=1744848000&v=beta&t=vXdbiu43YKRXjx6TYzED2yytHJ8NENLvGGXa4Ea7VlU
                      resharedPostContent: null
                    - header: Mansoor Shaikh likes this
                      text: >-
                        My most used code refactoring technique:


                        Replace the comment with a method.


                        It worries me that many developers think their intent is
                        best explained by writing a verbose comment instead of
                        creating a self-documenting structure.


                        There are rare cases in which you must explain WHY,
                        never WHAT.
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307207388510486529
                      urn: urn:li:activity:7307207388510486529
                      author:
                        name: Niko Heikkilä (he/him)
                        headline: >-
                          Need help with Extreme Programming, DevOps, Lean, TDD,
                          CI/CD, Clean Architecture? Don't ask AI, talk to me
                          instead!
                        urn: ACoAAA81IdMBuGLlIoc6GTG14t9PC7BxlBNheqg
                        id: urn:li:member:255140307
                        url: https://www.linkedin.com/in/nikoheikkila
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGI9VS2Bk6W0A/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1712670317271?e=1747872000&v=beta&t=EkcmLb5exqyhUNFHLKSvxw5vFOlyyXr53Dumh4gwpZA
                      postedAt:
                        timestamp: 1742174002769
                        fullDate: 2025-03-17 01:13:22.00 +0000 UTC
                        relativeDay: 2d
                      edited: false
                      engagements:
                        totalReactions: 84
                        commentsCount: 31
                        repostsCount: 3
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 67
                          - reactionType: INTEREST
                            reactionCount: 6
                          - reactionType: APPRECIATION
                            reactionCount: 5
                          - reactionType: PRAISE
                            reactionCount: 4
                          - reactionType: EMPATHY
                            reactionCount: 2
                      mediaContent: null
                      resharedPostContent: null
                    - header: Mansoor Shaikh likes this
                      text: "Hey junior developers! Here are 4 simple but powerful techniques you can use right now to reduce coupling in your code. \n\n- Separating concerns\_\n- Using encapsulation together with data hiding\n- Strategic use of abstractions\n- Managing the direction of dependencies\n\nMastering these will cover 80% of your coupling problems and all it takes is a good understanding of core software design concepts like cohesion, coupling and abstraction. \n\n\n#softwaredevelopment #softwareengineering #softwaredesign"
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307207327588257792
                      urn: urn:li:activity:7307207327588257792
                      author:
                        name: Nicholas Ocket
                        headline: >-
                          I turn developers into software design experts. Join
                          the About Coding Dojo!
                        urn: ACoAAAzhhT4B4H7vT1JD-pD_rsqF1pLI0HGJBVs
                        id: urn:li:member:216106302
                        url: https://www.linkedin.com/in/nicholas-ocket
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQHsFqzeS7u-EQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1699215002632?e=1747872000&v=beta&t=ScFT1XaIE-IWHNUkgYWH_01jog5rEsGejqGmDHAXk28
                      postedAt:
                        timestamp: 1742173988244
                        fullDate: 2025-03-17 01:13:08.00 +0000 UTC
                        relativeDay: 1w
                      edited: false
                      engagements:
                        totalReactions: 12
                        commentsCount: 15
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 11
                          - reactionType: INTEREST
                            reactionCount: 1
                      mediaContent: null
                      resharedPostContent: null
                    - header: Mansoor Shaikh likes this
                      text: >-
                        Last year my feed was inundated with people telling
                        everyone how they are in awe with generative AI and how
                        it's going to replace everyone in IT.


                        A few people kept obstinately telling them they were
                        wrong.


                        Today it's kind of half and half, people complain about
                        the shortfalls of AI and almost everybody in the comment
                        section basically tells them they are stupid for not
                        prompting it right.


                        The same people that kept telling everyone else they
                        were wrong now have statistical evidence that AI hasn't
                        replace everyone in IT yet. Shoutout to Michael Bolton
                        and James Bach, your articles and comments did what
                        every other tester should have, fended the zealots off
                        and told everyone the emperor was nude.


                        Maybe now we can find a middle ground where people like
                        Wayne Roseberry study the use of LLMs for what they were
                        intended and stop anthropomorphizing code just so we can
                        feed our egos and line our pockets.


                        Just sayin...
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307207250572402688
                      urn: urn:li:activity:7307207250572402688
                      author:
                        name: Bogdan Stefan Plesa
                        headline: Quality Assurance Engineer
                        urn: ACoAAAll9uQBpcOsGyz3kJIDnoKyaNDXEcXxMrA
                        id: urn:li:member:157677284
                        url: https://www.linkedin.com/in/bogdanplesa
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGdxrLZSBGk1g/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1678197942070?e=1747872000&v=beta&t=Vnqo4JBNnrPvNeqVAc4CKkNYx1fO_jcU65VzHEJdPfg
                      postedAt:
                        timestamp: 1742173969882
                        fullDate: 2025-03-17 01:12:49.00 +0000 UTC
                        relativeDay: 1d
                      edited: true
                      engagements:
                        totalReactions: 11
                        commentsCount: 8
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 9
                          - reactionType: INTEREST
                            reactionCount: 2
                      mediaContent: null
                      resharedPostContent: null
                      reactedComment:
                        author:
                          name: Anna Royzman
                          headline: >-
                            Technology Leader | International Speaker & Trainer
                            | Quality Leadership Visionary►Organizing
                            groundbreaking conferences
                          urn: ACoAAACjHO8BByaqqyWvp4tYmzHy77ZTO1ZiQnA
                          id: urn:li:member:10689775
                          url: https://www.linkedin.com/in/anna-royzman
                          profilePictureURL: >-
                            https://media.licdn.com/dms/image/v2/C4E03AQEsre0daT75Gg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1575307514572?e=1747872000&v=beta&t=o3sLTxyDpLM6MdpJCvXpdiOy3EVmly_r37gX8_zYE6Q
                        comment: >-
                          Bogdan Stefan Plesa i had the same experience with AI
                          enhanced app generating sites. 


                          In general, I find that many ai-enhanced apps are just
                          as non user-friendly as the ones without it.
                        createdAt: 1742086005855
                        permalink: >-
                          https://www.linkedin.com/feed/update/urn:li:activity:7306822871819939840?commentUrn=urn%3Ali%3Acomment%3A%28activity%3A7306822871819939840%2C7306830387287130112%29&replyUrn=urn%3Ali%3Acomment%3A%28activity%3A7306822871819939840%2C7306838302697902081%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287306830387287130112%2Curn%3Ali%3Aactivity%3A7306822871819939840%29&dashReplyUrn=urn%3Ali%3Afsd_comment%3A%287306838302697902081%2Curn%3Ali%3Aactivity%3A7306822871819939840%29
                        edited: false
                        engagements:
                          totalReactions: 0
                          commentsCount: 0
                          repostsCount: 0
                          reactions: null
                    - header: Mansoor Shaikh likes this
                      text: >-
                        We’re hiring for Partner Solution Architects at Docusign
                        Bengaluru.

                        If you thrive on connecting the dots, crafting smart
                        solutions, and making tech magic happen, this role might
                        have your name on it. Curious? Let’s talk! 

                        #hiring
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307207002001178625
                      urn: urn:li:activity:7307207002001178625
                      author:
                        name: Amrit Prakash
                        headline: >-
                          Senior Partner Solutions Architect @ Docusign | MBA in
                          Marketing and Digital l ex-Adobe
                        urn: ACoAACY6PeMBw4HJnsF8A_DPuAJhPbgUcoVmXuQ
                        id: urn:li:member:641351139
                        url: https://www.linkedin.com/in/amritvprakash
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQH8KVktwT86Xg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1713703712602?e=1747872000&v=beta&t=2-6kJfupCa9XT8ZxF2CUceOS3r38Z7Mb4mkgXzpEYAI
                      postedAt:
                        timestamp: 1742173910618
                        fullDate: 2025-03-17 01:11:50.00 +0000 UTC
                        relativeDay: 1w
                      edited: false
                      engagements:
                        totalReactions: 25
                        commentsCount: 3
                        repostsCount: 5
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 24
                          - reactionType: APPRECIATION
                            reactionCount: 1
                      mediaContent: null
                      resharedPostContent: null
                    - header: Mansoor Shaikh likes this
                      text: >-
                        The people who claim they will replace devs with LLMs
                        also sell LLMs. 


                        Someone should look into that.
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307206771016671232
                      urn: urn:li:activity:7307206771016671232
                      author:
                        name: David Forrest
                        headline: Writer and software developer
                        urn: ACoAAAY0UKcBnrSaljKMdFlu8fuUzCgfxx53ulw
                        id: urn:li:member:104091815
                        url: https://www.linkedin.com/in/david-forrest-39ba3a2a
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQFAsuwGD591pw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1517617831835?e=1747872000&v=beta&t=jGfvl3bNSMVOOEEraPszkxB5z2Skl-kXIRD6oWOsUpg
                      postedAt:
                        timestamp: 1742173855547
                        fullDate: 2025-03-17 01:10:55.00 +0000 UTC
                        relativeDay: 17h
                      edited: false
                      engagements:
                        totalReactions: 18
                        commentsCount: 3
                        repostsCount: 1
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 9
                          - reactionType: ENTERTAINMENT
                            reactionCount: 8
                          - reactionType: EMPATHY
                            reactionCount: 1
                      mediaContent: null
                      resharedPostContent: null
                    - header: Mansoor Shaikh likes this
                      text: >-
                        When the AI-generated solution fails, can you fix it?


                        If a dev's workflow starts looking like "Prompt ->
                        Copy-Paste -> Ship", what happens when they encounter a
                        problem AI can't solve?


                        Deep debugging, critical thinking, and system design are
                        skills we can't fully outsource to AI, yet.


                        I’m seeing more devs lean on AI-generated code without
                        fully understanding the mechanics. And I've seen this
                        before: copying code from Stack Overflow without fully
                        understanding it. But AI isn't just giving snippets,
                        it's generating entire solutions.


                        Want to stay ahead and grow as a dev? Don't just copy,
                        ask AI to explain the solution before using it.


                        If you can’t understand or verify the explanation, you
                        shouldn’t ship it.


                        AI should accelerate learning, not replace it.
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307206727307845632
                      urn: urn:li:activity:7307206727307845632
                      author:
                        name: Stefan Olaru
                        headline: CTO | Architect | AWS | Serverless
                        urn: ACoAAAEkWqUBy6LHBoL_iAQZLXdqEtn2Nkkgcg0
                        id: urn:li:member:19159717
                        url: https://www.linkedin.com/in/stefanolaru
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQHl5XLNjDVXNQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1579790966114?e=1747872000&v=beta&t=in3yktm0aDi8dVe7KjOwpNdXLbCHq5_qP0bbaZC9ijw
                      postedAt:
                        timestamp: 1742173845126
                        fullDate: 2025-03-17 01:10:45.00 +0000 UTC
                        relativeDay: 4d
                      edited: false
                      engagements:
                        totalReactions: 8
                        commentsCount: 1
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 8
                      mediaContent: null
                      resharedPostContent: null
                    - header: Mansoor Shaikh likes this
                      text: "This boardroom is ideal for fast decision-making and effective communication.\n\n#technology #workplace #management \n\nFollow me if you are looking for an honest, pragmatic and funny perspective on\_technology. Hit the 🔔 on my profile to get a notification for all my new posts."
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307206546709504000
                      urn: urn:li:activity:7307206546709504000
                      author:
                        name: Ralph Aboujaoude Diaz
                        headline: Global Head - Product and Operations Cybersecurity
                        urn: ACoAAAK5cogB0wz9h4jk2giGcg821baQkx7MXI0
                        id: urn:li:member:45707912
                        url: >-
                          https://www.linkedin.com/in/ralph-aboujaoude-diaz-40838313
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQH8S22M9O8-WA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1712181489465?e=1747872000&v=beta&t=-xtxEAlMuAItpBX_xXICrv4RtMTEu2fVcrzEq8dtQOc
                      postedAt:
                        timestamp: 1742173802068
                        fullDate: 2025-03-17 01:10:02.00 +0000 UTC
                        relativeDay: 19h
                      edited: false
                      engagements:
                        totalReactions: 2565
                        commentsCount: 247
                        repostsCount: 51
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 1333
                          - reactionType: ENTERTAINMENT
                            reactionCount: 1107
                          - reactionType: EMPATHY
                            reactionCount: 57
                          - reactionType: INTEREST
                            reactionCount: 37
                          - reactionType: PRAISE
                            reactionCount: 23
                          - reactionType: APPRECIATION
                            reactionCount: 8
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQEUFnt3syCkHw/feedshare-shrink_2048_1536/B4DZWfuM3IHAAo-/0/1742141444333?e=1744848000&v=beta&t=wEOusfNDmLm3vlj_bXaD7VoIKQWkPDHb_CKGLkKbwmo
                      resharedPostContent: null
                    - header: Mansoor Shaikh likes this
                      text: >-
                        The final 10% of any software engineering project takes
                        90% of the time. We all know that. But...


                        So does the final 1% somehow. 😣
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307100514997952513
                      urn: urn:li:activity:7307100514997952513
                      author:
                        name: Matt Watson
                        headline: >-
                          Product Driven Engineer, Founder/CTO for 20 years,
                          Bootstrapped a SaaS company to a 9 figure exit, CEO of
                          Full Scale
                        urn: ACoAAAAwlmsBBjRA9j-BTPSkS-_YSkbDtj5vi8o
                        id: urn:li:member:3184235
                        url: https://www.linkedin.com/in/mattwatsonkc
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQEQlNsDbIUy6w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1651801144223?e=1747872000&v=beta&t=WFLDa8rEVmg8dY4dX2kNHOxQp1ZK3jE1xw6_PBbpqPE
                      postedAt:
                        timestamp: 1742148522138
                        fullDate: 2025-03-16 18:08:42.00 +0000 UTC
                        relativeDay: 1d
                      edited: false
                      engagements:
                        totalReactions: 48
                        commentsCount: 14
                        repostsCount: 1
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 38
                          - reactionType: ENTERTAINMENT
                            reactionCount: 5
                          - reactionType: APPRECIATION
                            reactionCount: 4
                          - reactionType: INTEREST
                            reactionCount: 1
                      mediaContent: null
                      resharedPostContent: null
                    - header: Mansoor Shaikh likes this
                      text: >-
                        Are you ready for a faster Hugging Face? 🏃‍♀️💨


                        Do you want to be among the first to try the future?


                        We are replacing LFS with Xet, the HF Hub's new 10x more
                        performant storage technology. It's built to
                        dramatically accelerate both uploads and downloads on
                        the Hub.


                        We've already migrated a few historical repos so you can
                        already see how it looks: bigscience/bloom for instance.


                        Join the waitlist then let us know how much faster the
                        Hub is for your workloads 🔥

                        https://lnkd.in/emu6MN9e
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307100508995907584
                      urn: urn:li:activity:7307100508995907584
                      author:
                        name: Julien Chaumond
                        headline: CTO at Hugging Face
                        urn: ACoAAACGArQBeIsShtJCKN3fD399YabWHlFXTLc
                        id: urn:li:member:8782516
                        url: https://www.linkedin.com/in/julienchaumond
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQGewM4n-hRq2w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1551194736724?e=1747872000&v=beta&t=gAbmRie80WnyOtwcBZeV6zIihsBedrpmoAvjt8AOqus
                      postedAt:
                        timestamp: 1742148520707
                        fullDate: 2025-03-16 18:08:40.00 +0000 UTC
                        relativeDay: 23h
                      edited: false
                      engagements:
                        totalReactions: 993
                        commentsCount: 33
                        repostsCount: 35
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 814
                          - reactionType: PRAISE
                            reactionCount: 87
                          - reactionType: EMPATHY
                            reactionCount: 69
                          - reactionType: INTEREST
                            reactionCount: 18
                          - reactionType: APPRECIATION
                            reactionCount: 5
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4E22AQHFAIK3yG7_Ig/feedshare-shrink_2048_1536/B4EZWe1cJeHgAs-/0/1742126565578?e=1744848000&v=beta&t=eHduUG4bkAlFOTFP6P0DLVOnBjuWl3r4f4Sb6SkwmWA
                      resharedPostContent: null
                    - header: Mansoor Shaikh likes this
                      text: >-
                        Hi friends and connections,


                        I’m seeking new opportunities and would appreciate your
                        support. If you hear of any opportunities or just want
                        to catch up, please send me a message or comment below.
                        I’d love to reconnect.


                        About me & what I’m looking for:

                        💼 I’m looking for Quality Engineering Specialist /
                        Quality Engineer / Test Specialist / Software Engineer
                        in Test / Senior Test Engineer roles.

                        🌎 I’m open to roles in Singapore.

                        ⭐ I’ve previously worked at Quest Global, SP Group and
                        Accenture.


                        Do let me know if you know of any companies hiring such
                        roles in Singapore, or if you can help with referrals
                        for such roles at your organisation - that would be of
                        great help :) 


                        Please comment or like this post to spread the message.
                        Thank you for your help!


                        #OpenToWork  #JobSearch #Singapore
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307100235334348800
                      urn: urn:li:activity:7307100235334348800
                      author:
                        name: Rewati Joshi
                        headline: Test Automation Lead
                        urn: ACoAABbygBkBgN5gVoHIPKhePi7NbrAmqy797HA
                        id: urn:li:member:384991257
                        url: https://www.linkedin.com/in/revati-joshi
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5635AQEA7S69m3poZQ/profile-framedphoto-shrink_800_800/profile-framedphoto-shrink_800_800/0/1736686065475?e=1742817600&v=beta&t=SJVzyiRlr8mzMk431eNgAmuOWy4uA0PWn-DjACD72WY
                      postedAt:
                        timestamp: 1742148455461
                        fullDate: 2025-03-16 18:07:35.00 +0000 UTC
                        relativeDay: 4d
                      edited: false
                      engagements:
                        totalReactions: 40
                        commentsCount: 3
                        repostsCount: 5
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 30
                          - reactionType: APPRECIATION
                            reactionCount: 10
                      mediaContent: null
                      resharedPostContent: null
                    - header: Mansoor Shaikh likes this
                      text: >-
                        The hardest part about business is the part nobody ever
                        talks about: business partners.


                        I talked to a friend yesterday who tragically found out
                        one his partners had stolen hundreds of thousands of
                        dollars from the company and was being abusive to
                        employees.


                        These stories are not actually that rare.


                        I've had my own problems with business partners that
                        could have easily tanked my companies.


                        Be careful you who you get into business with. Founder's
                        vesting stock is a good thing.
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307100093969539072
                      urn: urn:li:activity:7307100093969539072
                      author:
                        name: Matt Watson
                        headline: >-
                          Product Driven Engineer, Founder/CTO for 20 years,
                          Bootstrapped a SaaS company to a 9 figure exit, CEO of
                          Full Scale
                        urn: ACoAAAAwlmsBBjRA9j-BTPSkS-_YSkbDtj5vi8o
                        id: urn:li:member:3184235
                        url: https://www.linkedin.com/in/mattwatsonkc
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQEQlNsDbIUy6w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1651801144223?e=1747872000&v=beta&t=WFLDa8rEVmg8dY4dX2kNHOxQp1ZK3jE1xw6_PBbpqPE
                      postedAt:
                        timestamp: 1742148421757
                        fullDate: 2025-03-16 18:07:01.00 +0000 UTC
                        relativeDay: 6d
                      edited: false
                      engagements:
                        totalReactions: 25
                        commentsCount: 17
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 19
                          - reactionType: EMPATHY
                            reactionCount: 2
                          - reactionType: APPRECIATION
                            reactionCount: 2
                          - reactionType: INTEREST
                            reactionCount: 2
                      mediaContent: null
                      resharedPostContent: null
                    - header: Mansoor Shaikh likes this
                      text: >-
                        On Friday evening I landed at Newark Liberty Airport
                        after my 20+ hours of travel. I was coming from
                        Hyderabad, India where I had the privilege to spend the
                        week at JPMorganChase Developer’s Conference - DEVUP
                        where I had the honor of kicking off Track 2: Delivering
                        Data & AI/ML Responsibly at Speed and Scale at the
                        opening ceremony. 


                        DEVUP proved to be amazing once again from the amazing
                        people I met to the content I learned I know I will
                        leverage with my team starting on Monday!


                        Thank you to the DEVUP Crew, Global Technology
                        Leadership Team, India Leadership Team and Speakers for
                        peaking my curiosity, peaking my interest in hit
                        technology topics and lighting a fire that continues to
                        spark innovation and creativity for months to come. 


                        #DEVUP

                        #JPMC
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7307099982786928640
                      urn: urn:li:activity:7307099982786928640
                      author:
                        name: Stacy Newman
                        headline: >-
                          Executive Director, AI/ML Employee Data Experience;
                          JPMC Prolific Inventor
                        urn: ACoAAAFO0usBw2ZonJMI-AWdgeDL1sRQqINY4P0
                        id: urn:li:member:21943019
                        url: https://www.linkedin.com/in/stacyanewman
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGLtsa4i5FNcA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1724944654596?e=1747872000&v=beta&t=4pFBhzfqjNUIq1mJaZcOq2WZ2B40e0-HlAojGjvLeUE
                      postedAt:
                        timestamp: 1742148395249
                        fullDate: 2025-03-16 18:06:35.00 +0000 UTC
                        relativeDay: 18h
                      edited: false
                      engagements:
                        totalReactions: 61
                        commentsCount: 3
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 47
                          - reactionType: PRAISE
                            reactionCount: 7
                          - reactionType: EMPATHY
                            reactionCount: 7
                      mediaContent:
                        - type: video
                          url: >-
                            https://dms.licdn.com/playlist/vid/v2/D4E05AQFOWac1YzwX9Q/mp4-720p-30fp-crf28/B4EZWf.CvYHgBg-/0/1742145672076?e=1742817600&v=beta&t=kV8Us5E5oBC4heGH-h5L-C1fTeRC_-0Xmygjvot8qdY
                      resharedPostContent: null
      tags:
        - Profile
      description: Get all reactions associated with a user by their URN.
  /api/v1/profile/interests:
    get:
      summary: Profile interests
      parameters:
        - name: urn
          in: query
          required: true
          description: profile URN
          deprecated: false
          schema:
            type: string
          example: ACoAAAAKXBwBikfbNJww68eYvcu2dqDYJhHbp4g
      responses:
        '200':
          description: Profile interests
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      interests:
                        type: object
                        properties:
                          topVoices:
                            type: array
                            items:
                              type: object
                              properties:
                                urn:
                                  type: string
                                firstName:
                                  type: string
                                lastName:
                                  type: string
                                fullName:
                                  type: string
                                publicIdentifier:
                                  type: string
                                profilePictureURL:
                                  type: string
                                  format: uri
                                creator:
                                  type: boolean
                                followerCount:
                                  type: integer
                          companies:
                            type: array
                            items:
                              type: object
                              properties:
                                urn:
                                  type: string
                                  format: utc-millisec
                                name:
                                  type: string
                                url:
                                  type: string
                                  format: uri
                                logoURL:
                                  type: string
                                  format: uri
                                followerCount:
                                  type: integer
                          groups:
                            type: array
                            items:
                              type: object
                              properties:
                                urn:
                                  type: string
                                  format: utc-millisec
                                name:
                                  type: string
                                logoURL:
                                  type: string
                                  format: uri
                          newsletter:
                            type: array
                            items:
                              type: object
                              properties:
                                urn:
                                  type: string
                                  format: utc-millisec
                                title:
                                  type: string
                                description:
                                  type: string
                                logoURL:
                                  type: string
                                  format: uri
                                authorName:
                                  type: string
                                authorProfile:
                                  type: string
                                  format: uri
                                authorUrn:
                                  type: string
                                frequency:
                                  type: string
                                newsletterURL:
                                  type: string
                                  format: uri
                          school:
                            type: array
                            items:
                              type: object
                              properties:
                                urn:
                                  type: string
                                  format: utc-millisec
                                name:
                                  type: string
                                logoURL:
                                  type: string
                                  format: uri
                                followerCount:
                                  type: integer
                                schoolURL:
                                  type: string
                                  format: uri
                                companyURL:
                                  type: string
                                  format: uri
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  interests:
                    topVoices:
                      - urn: ACoAAA6cWdYBftPaRBLlH5Dt4bhikW4dkgudOko
                        firstName: David
                        lastName: Kostin
                        fullName: David Kostin
                        publicIdentifier: david-kostin-3321146a
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQENkh7ebbOmdw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1665589609582?e=1761782400&v=beta&t=KCr68fMigvS8mjZ9KLPuk_Wj0J-b6N6kTcyoeCw-Emc
                        creator: true
                        followerCount: 65348
                      - urn: ACoAAAz-FacByv6gAdpe99uUPm014hDm7GmLlgM
                        firstName: Mark
                        lastName: Mobius
                        fullName: Mark Mobius
                        publicIdentifier: markmobius
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQEjKiWowc1imw/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1517374184576?e=1761782400&v=beta&t=SGGhV1vYlwygbogWoGZp4hhGS5pdzFchroAtmXMcsoY
                        creator: true
                        followerCount: 455901
                      - urn: ACoAAABS7N8BHFdEL6zV6HwqeQyDrrIiyjF-2OY
                        firstName: Glenn
                        lastName: Kelman
                        fullName: Glenn Kelman
                        publicIdentifier: glennkelman
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5103AQG6_Ry7F65aHQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516348462842?e=1761782400&v=beta&t=aWXbsTJREAVUGEtvPtZLuaBqmH5XlCjsO25wnbDlRAc
                        creator: true
                        followerCount: 207460
                      - urn: ACoAAAFUu6sBhlQbcvAS0GdcPE344dA3vwutzVM
                        firstName: Jeff
                        lastName: Weiner
                        fullName: Jeff Weiner
                        publicIdentifier: jeffweiner08
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQFM3Y2r-OEStw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1515623804984?e=1761782400&v=beta&t=CF0aWMMnT4z_WSgR8E9JwkU4WquB8OiAYzASCWZg0ao
                        creator: true
                        followerCount: 10399059
                      - urn: ACoAADjn70gBqV2yrxBbEIRnZNNuSQumbIB6bl0
                        firstName: Héctor
                        lastName: Herrera
                        fullName: Héctor Herrera
                        publicIdentifier: hectorherreralopez
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQH69-NTAu3LjA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1639604683615?e=1761782400&v=beta&t=GgvVJMh8ojdOrcv3p0jIrxvUjDLzQQKO8apfDWI8Vvs
                        creator: true
                        followerCount: 10640
                      - urn: ACoAAEn4fgoBq7P8wLgR_zmfSCm_tPIHGcbleWw
                        firstName: 'Tharman '
                        lastName: Shanmugaratnam
                        fullName: Tharman  Shanmugaratnam
                        publicIdentifier: tharman-shanmugaratnam
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEAf3ySJ9KcFw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1703985725418?e=1761782400&v=beta&t=4FRi2GPpOOfRWgcVnRkvT5t1mGY48zVNQZq9Oq2jSGQ
                        creator: true
                        followerCount: 208777
                      - urn: ACoAADMMfvIBK9r0p5vPkBsknLICWmNzoRWeOeg
                        firstName: Kareem
                        lastName: Abdul-Jabbar
                        fullName: Kareem Abdul-Jabbar
                        publicIdentifier: kareem-abdul-jabbar
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEClfxbVTMrHA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1698254290930?e=1761782400&v=beta&t=VM3magIBv5tf4hnHAyI3VCUGAFfRtQbkuHjN_LLQYpI
                        creator: true
                        followerCount: 153888
                      - urn: ACoAADJPQh0BurPajL5qSMLBddNKrIMCCUF9WEs
                        firstName: Everette
                        lastName: Taylor
                        fullName: Everette Taylor
                        publicIdentifier: everette
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQHJZywRSTgaBg/profile-displayphoto-shrink_800_800/B4EZQbz1vQGwAc-/0/1735633363076?e=1761782400&v=beta&t=hqIY0YOMJF1EMevWbWts5Cl7lyOfs3SD-Yn2ttQtEBo
                        creator: true
                        followerCount: 50814
                      - urn: ACoAAAA6iRMBaolUyvRZOF1IDpmNtRPh98F54l8
                        firstName: Neil
                        lastName: Patel
                        fullName: Neil Patel
                        publicIdentifier: neilkpatel
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5103AQFihp1Vzz6oCQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1516255378392?e=1761782400&v=beta&t=9Y5nUyM4AOlgh0alGrPZyIUvJZXCwpQ61K2om2T4zyg
                        creator: true
                        followerCount: 771246
                      - urn: ACoAAAylSRIBXNFRGjmGfTQsZZL04N8Sf_IyVao
                        firstName: Mark
                        lastName: Cuban
                        fullName: Mark Cuban
                        publicIdentifier: mark-cuban-06a0755b
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQH9b4ZbzNR0zg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1681567357400?e=1761782400&v=beta&t=fjPeiDlIWV7WC31ChWmz6ka3CnoGeWilPWGjwzNxc5c
                        creator: true
                        followerCount: 8157021
                      - urn: ACoAAAFcx5IBGAqhdlXRKBFwyocjwrxbGqlxnzQ
                        firstName: Rupa
                        lastName: Wong MD
                        fullName: Rupa Wong MD
                        publicIdentifier: drrupawong
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQFPrKsI66JNoQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516330556407?e=1761782400&v=beta&t=l_jtNXncvsSuFLlBAMjVki0pGbyF6CmzVSHYVkxP32I
                        creator: true
                        followerCount: 3822
                      - urn: ACoAADZjPmoBC4cPUUfY-lZweACWaJoOZCdqFT8
                        firstName: 'Robert '
                        lastName: 'Downey Jr. '
                        fullName: 'Robert  Downey Jr. '
                        publicIdentifier: robert-downey-jr-ab6703215
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQHCH4-ilSuHrg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1624304092686?e=1761782400&v=beta&t=I56jIvvzGlN4mHcKts-MLGXOJXHQFYys9J_gqD_WNZ4
                        creator: true
                        followerCount: 663431
                      - urn: ACoAAAIjtdcB7YmIEeIAm311rmLvvt4MmQqZugI
                        firstName: Adam
                        lastName: Bryant
                        fullName: Adam Bryant
                        publicIdentifier: adambryantleadership
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQG0d-HBFq2e4w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1533137376682?e=1761782400&v=beta&t=58LJztEWyklVU8kVdS0FxPC-stJaQ0tZNfwVB034vew
                        creator: true
                        followerCount: 170937
                      - urn: ACoAAAC42vQBjTGum5sSTbrccZR6VVeWNqN84po
                        firstName: Peter
                        lastName: Yang
                        fullName: Peter Yang
                        publicIdentifier: petergyang
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFZD9oJt0W0Og/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1676926852209?e=1761782400&v=beta&t=vTbqbGi6qlKW6dJrudp7-i6vBdR0h0epYzphrFDhpv4
                        creator: true
                        followerCount: 136046
                      - urn: ACoAAAdjM0MBpXMsSRpJ0BXdio1uTGOUCQnJm54
                        firstName: Betty
                        lastName: L.
                        fullName: Betty L.
                        publicIdentifier: bettywliu
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQF-JizgoJJ65w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1681108600113?e=1761782400&v=beta&t=s2PqARQ6k1sAhDR7AtV9rMwLraycUWgZwQ4Ag7tQyi0
                        creator: true
                        followerCount: 697857
                      - urn: ACoAACiOcWcBVREZA-uK6mg3IlgCE5sS2ILhdZs
                        firstName: Dan
                        lastName: Harris
                        fullName: Dan Harris
                        publicIdentifier: dan-harris-91ba5716b
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQH3HLh4n3GUdQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1725910840109?e=1761782400&v=beta&t=_ER1CWy4h2eaWJyPSyMYBbrT9chL-k6Gv6b0RF1DEh4
                        creator: true
                        followerCount: 23002
                      - urn: ACoAAA094vkB2YFNd39ZOjclF23js6t3VBvhObE
                        firstName: Dara
                        lastName: Khosrowshahi
                        fullName: Dara Khosrowshahi
                        publicIdentifier: dara-khosrowshahi-70949862
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHIncr1VmohYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1673547835729?e=1761782400&v=beta&t=sXnUVLcOKU3hCFGXgucugbJvv-HNwGqq_LVjdQYF5t8
                        creator: false
                        followerCount: 376121
                      - urn: ACoAACwMwvsBkuHIY-4RWhVitAwI3XznSklKQtY
                        firstName: Phil
                        lastName: Rosen
                        fullName: Phil Rosen
                        publicIdentifier: philrosen
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQHEbSMKv3SN8w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1645740959085?e=1761782400&v=beta&t=mPTCPr2TofW1nfBKNZHwXROyYkivD_qYhG5ogsSkYMM
                        creator: true
                        followerCount: 39726
                      - urn: ACoAAAF7DzQB1VoEHXKzSxII3nSgdi27Zrh5d5k
                        firstName: Jim
                        lastName: Rowan
                        fullName: Jim Rowan
                        publicIdentifier: jim-rowan1
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQFs9y030AAoYQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1629211261582?e=1761782400&v=beta&t=rLNPxLmRDf8ML5bNfAxBhDImg67T1bi8hwh5ND2tUAM
                        creator: true
                        followerCount: 26123
                      - urn: ACoAAC6Afp8BG1UgRMngvimZEGua_jE15LFwy9I
                        firstName: Chris
                        lastName: Kempczinski
                        fullName: Chris Kempczinski
                        publicIdentifier: chriskempczinski
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQEtIhev65R0Sg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1614874746452?e=1761782400&v=beta&t=4-G9cuZaDsafdsDcmGBlgRlzpA38sbGBy_SvEcWul6A
                        creator: true
                        followerCount: 153956
                      - urn: ACoAAAAtR9cBFVXIhd9ehKSS9JDHMrxQeFCN-4Q
                        firstName: Ryan
                        lastName: Holmes
                        fullName: Ryan Holmes
                        publicIdentifier: rholmes
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGCG770nGh6tw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1642094195856?e=1761782400&v=beta&t=gyDJ4kXmkvXFvYBfP0qS2uvBztrUkEdToNiXQ7e4720
                        creator: true
                        followerCount: 1652618
                      - urn: ACoAAAAAGLwBRaHyOBGIPJ5_GS8oh3q-4jYUqdw
                        firstName: Brad
                        lastName: Feld
                        fullName: Brad Feld
                        publicIdentifier: bfeld
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQFEmWzjfcpGKw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1663083302599?e=1761782400&v=beta&t=--Inyac_iEebNGWFCsERo0gPR09H1Q9yB6Uwa1cNsYg
                        creator: true
                        followerCount: 335930
                      - urn: ACoAAArRUqwBpi9paj3rHuNqahE1EjqEgFqAm3w
                        firstName: Sahil
                        lastName: Bloom
                        fullName: Sahil Bloom
                        publicIdentifier: sahilbloom
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFdgn2OU81oKQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1667155655120?e=1761782400&v=beta&t=payvi7_SRz0olxRdUMV1vI1okLKHwWKv_HiDhmtASNY
                        creator: true
                        followerCount: 665305
                      - urn: ACoAAAAJXoIBX96-mb5Teejr20v1aE8GH0vUhIw
                        firstName: Alistair
                        lastName: Cox
                        fullName: Alistair Cox
                        publicIdentifier: alistair--cox
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQEEZjqSS63YTg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1671018205044?e=1761782400&v=beta&t=RHab-xGrJz_qJNHfgBPKfdchGG3UgrMtj_QC2h1_Xwo
                        creator: true
                        followerCount: 215133
                      - urn: ACoAADAm41YBuzIKPIublsOOXtV3kLlVkt1OEsQ
                        firstName: Guy
                        lastName: Raz
                        fullName: Guy Raz
                        publicIdentifier: guyrazpodcasts
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQHzHhR_6KAR3w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1589230910353?e=1761782400&v=beta&t=V3owXKdAv1s-eOFvWslylG1Qxaaq7Lrv0wG-RZBgHTo
                        creator: true
                        followerCount: 46870
                      - urn: ACoAAAI4Aw4BS3TllsKr6E15v4CDckxNKmfQpTY
                        firstName: Maynard
                        lastName: Webb
                        fullName: Maynard Webb
                        publicIdentifier: maynardwebb
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQEuPOk2NvPQYw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1517725564624?e=1761782400&v=beta&t=FU9WxDkHcJFKoNz9BslEyCE4k16ThGDkK2QeSwJx7oY
                        creator: true
                        followerCount: 334344
                      - urn: ACoAAFdRfQMBk2prGwlN0q8b4OfOUR8dYDQO7BA
                        firstName: Evan
                        lastName: Spiegel
                        fullName: Evan Spiegel
                        publicIdentifier: evan-spiegel-8ab74034a
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQHIaPlxqxIYAw/profile-displayphoto-shrink_800_800/B4EZTMbVdjG0Ag-/0/1738596505778?e=1761782400&v=beta&t=sn5_j1zv8N6BR8Qj1I-qXXKXmwPiTU8UNIbWU2kRQpo
                        creator: false
                        followerCount: 21250
                      - urn: ACoAAABmytwBr1HCeIKVlu54vaB1n5fmvyI5dUY
                        firstName: Dan
                        lastName: Schulman
                        fullName: Dan Schulman
                        publicIdentifier: dan-schulman
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQF4ufQG5nd_4w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1562089601720?e=1761782400&v=beta&t=f-T2gxp8mto3g2VCLiRa_Gsn47i20jH8FE-Zj3FtOvQ
                        creator: true
                        followerCount: 239495
                      - urn: ACoAABJAeL0B_vfWDo6buzL2mUK1gfON3nmLoUc
                        firstName: Saanya
                        lastName: Ojha
                        fullName: Saanya Ojha
                        publicIdentifier: saanyaojha
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQEwtpI9VKsOLg/profile-displayphoto-shrink_800_800/B4DZbsapwJG0Ag-/0/1747723132964?e=1761782400&v=beta&t=zQ_k4TCBhZ5kd4EnDLTMY9xijtcMzWEZkQWAsG87OXI
                        creator: true
                        followerCount: 63652
                      - urn: ACoAAADPQl0BtrTpOVQXX6pNEGzt1-gdmR8RISU
                        firstName: Robert M.
                        lastName: Bakish
                        fullName: Robert M. Bakish
                        publicIdentifier: bobbakish
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQHLJqmHD58k5w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1657229929414?e=1761782400&v=beta&t=l3JNL6FATmAcHtLIvtf6Q3jnzcZalMwQIHrVyfrn3E8
                        creator: true
                        followerCount: 113144
                      - urn: ACoAAADVRkkBiztC8DcGVpLexq3jxfVrAf8WSx8
                        firstName: Mike
                        lastName: Roman
                        fullName: Mike Roman
                        publicIdentifier: mike-roman-7758204
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQG3qEAL3B-Akg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1548179263078?e=1761782400&v=beta&t=CvXwoafMtDYNlT2xI6OYUoTaoLSLULaPUf27XFjG8eU
                        creator: true
                        followerCount: 58657
                      - urn: ACoAAABjX2YBz96UyVIrPOydWJBDuuQa6gTu3O0
                        firstName: Sridhar
                        lastName: Ramaswamy
                        fullName: Sridhar Ramaswamy
                        publicIdentifier: sridhar-ramaswamy
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQH-f_8ntBTMzQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1547158038035?e=1761782400&v=beta&t=drLVE7pS4J9Xi6GOubRVwrbDKysNYio4D_DJoKGCn40
                        creator: true
                        followerCount: 220717
                      - urn: ACoAAAAg6_IBg1U6JFyF-a5pajsACu9FQhnuvmU
                        firstName: Eric
                        lastName: Ries
                        fullName: Eric Ries
                        publicIdentifier: eries
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQFc6Csl2Ck6aw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516258553044?e=1761782400&v=beta&t=wFFWjgjWwlSxsCuESJl-33jjEZQ-6BwDVDmOOzdz9bg
                        creator: true
                        followerCount: 569911
                      - urn: ACoAAAAc5NIBh7HOkftDWyqLXQ51kfoScHHDAA8
                        firstName: Michael
                        lastName: Skok
                        fullName: Michael Skok
                        publicIdentifier: mjskok
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQES__VrhzLHsA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1649171970578?e=1761782400&v=beta&t=DxhWG5VuXvizBU07DqtJa9mDEDWG_wrgnPbmZOjt_do
                        creator: true
                        followerCount: 146955
                      - urn: ACoAAADhxLEBDEX-SllIpXPg1Cw0nTpWbhHYqpk
                        firstName: Greg
                        lastName: 'Snapper '
                        fullName: 'Greg Snapper '
                        publicIdentifier: gregsnapper
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEgNc8hqIyHtg/profile-displayphoto-crop_800_800/B56Zjl1QhLG4AM-/0/1756202601591?e=1761782400&v=beta&t=j_8XwTIiJmXDjT4p5Zo3wvxKptJD5tlbLDQlfjHtGQg
                        creator: false
                        followerCount: 0
                      - urn: ACoAAAAABScBAEvCh0F-BvN4jh3s8pdED__Insk
                        firstName: Max
                        lastName: Levchin
                        fullName: Max Levchin
                        publicIdentifier: maxlevchin
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQFlmLGSxfTBlg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1516155448539?e=1761782400&v=beta&t=El5DD1hT-vGtgXwWChe-wgJ59xMrCNZNCTsEj_BRPD0
                        creator: true
                        followerCount: 129065
                      - urn: ACoAAAWyy8QBvBvjycoyoyGgyIuUJVeeLF8_OIU
                        firstName: Caroline
                        lastName: Hyde
                        fullName: Caroline Hyde
                        publicIdentifier: caroline-hyde-floyd
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQEeM13v1rDmTQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1683294254633?e=1761782400&v=beta&t=PqsGouxpCfNjTegPZ133PQhJlF70oZmsckAkZgELDxE
                        creator: true
                        followerCount: 44330
                      - urn: ACoAAAA8MrEBYlNTGX7rVy4Hg3Ab91xvpx8ez3s
                        firstName: Robert
                        lastName: Herjavec
                        fullName: Robert Herjavec
                        publicIdentifier: robertherjavec
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFiRlNTrlxlQg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1725409070713?e=1761782400&v=beta&t=O2PF6BnL-COINPMKmpqVPDNyrM72mOoJiShaq49bFAQ
                        creator: true
                        followerCount: 2315051
                      - urn: ACoAAA07vXUBgJKZH5S8Z3sMFDhHtqHW5h0dNrk
                        firstName: Timm
                        lastName: Chiusano
                        fullName: Timm Chiusano
                        publicIdentifier: complexbusinessproblemsolver
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQHE4vKLGWWenw/profile-displayphoto-shrink_800_800/B4EZQ.eHRbHEAc-/0/1736214869898?e=1761782400&v=beta&t=dcynIU_ni6mdqG25mBkXhqgbGG_haGMb_F5Us3ZJnvc
                        creator: true
                        followerCount: 62280
                      - urn: ACoAAABhexABw5_iaCRSRhrVsMAqlWbBxiVEvGY
                        firstName: John
                        lastName: C Abell
                        fullName: John C Abell
                        publicIdentifier: johncabell
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFzR5iNHqrDKw/profile-displayphoto-shrink_800_800/B4EZWVGyYUH0Ag-/0/1741963339808?e=1761782400&v=beta&t=IW1MZgkBPSZj3p1ovTNuFjiMG32BVIA1U_Kzp6Sc4XI
                        creator: false
                        followerCount: 0
                      - urn: ACoAAAOhLwoB4zRvZq5Z25MNDfz0RK6w5arh3HI
                        firstName: Lucy P.
                        lastName: Marcus
                        fullName: Lucy P. Marcus
                        publicIdentifier: lucypmarcus
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQHh7LoPsm7yKQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516783849890?e=1761782400&v=beta&t=D9PCwY7LDMkcuehkoHaHTl77tiuK0qN4MscsJcZD63s
                        creator: true
                        followerCount: 1035025
                      - urn: ACoAAAAAXkgB5vBNAfvVluTB_sKWPZycEC4rVN0
                        firstName: Jonathan
                        lastName: Becher
                        fullName: Jonathan Becher
                        publicIdentifier: jbecher
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQH684B3Fex7Aw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1516158333258?e=1761782400&v=beta&t=UgjIsnUCdp8mAFslAKG6_PjxjPGzCnOpaxdxQNuy_Pc
                        creator: true
                        followerCount: 791658
                      - urn: ACoAAAuMh6ABe5yrIF2I6gDHnZ3Fpixhetg9Rfg
                        firstName: Alex
                        lastName: Lieberman
                        fullName: Alex Lieberman
                        publicIdentifier: alex-lieberman
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGY8Brd_5DQLw/profile-displayphoto-shrink_800_800/B4EZZog321HMAk-/0/1745510170445?e=1761782400&v=beta&t=3f32XtyJKN-wiomkN4xNN4kYVtGfNOY9qnXAc992938
                        creator: true
                        followerCount: 189508
                      - urn: ACoAAAANvcMB7mNdnp54zMV-ASqkOZoV7A-lQRo
                        firstName: Jon
                        lastName: Steinberg
                        fullName: Jon Steinberg
                        publicIdentifier: jonsteinberg
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFRHkeSC7Q6Cg/profile-displayphoto-crop_800_800/B4EZfrbHDkHYAM-/0/1752001442499?e=1761782400&v=beta&t=fwr6unn0qe3gv8IANC9Y6bYdJZCfkzk5sKXbZHDMg2I
                        creator: true
                        followerCount: 1774599
                      - urn: ACoAADib0tEByzvgsS0kMMiPk4liOa1qZs3Q4pE
                        firstName: Ryan
                        lastName: Reynolds
                        fullName: Ryan Reynolds
                        publicIdentifier: vancityreynolds
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGOBfXsKX8U5Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1636498355197?e=1761782400&v=beta&t=DF5VG5rJdC02JYCAoy3G6AXigX0r2be9K_uyRMBqRIE
                        creator: true
                        followerCount: 3668638
                      - urn: ACoAAB-kxvABo1R6qNdFmbEv2VzlACGCdghNEqw
                        firstName: Indra
                        lastName: Nooyi
                        fullName: Indra Nooyi
                        publicIdentifier: indranooyi
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQFx9CQdGZRXFQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1629838559689?e=1761782400&v=beta&t=N0cPWZCriyn_SExiUcoqCiu8URB_F_AP7VHJe21-Fj0
                        creator: true
                        followerCount: 1562060
                      - urn: ACoAAAClcO0B4vYgVsu9ZRDG8RLV2uYlKfbrHXc
                        firstName: Tim
                        lastName: Brown
                        fullName: Tim Brown
                        publicIdentifier: timbrownatlindkedin
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQF0-HJh-sNAdw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1516319396449?e=1761782400&v=beta&t=Q1nzAf6MgLlxCW3gztWIF88XqD1RRFUZLnLh_yZgp7I
                        creator: true
                        followerCount: 1405071
                      - urn: ACoAAC90ps8BKftkD9J1cW1EOL-OBKmH4uWQmbs
                        firstName: Selena
                        lastName: Gomez
                        fullName: Selena Gomez
                        publicIdentifier: selena-gomez-a3b7781a2
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGWDpuApxoqJQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1599069252088?e=1761782400&v=beta&t=jwcDpN4GLtXMcx4-TbfsYr5kVQEO07fqGkWud7AV4QA
                        creator: false
                        followerCount: 106252
                      - urn: ACoAAAAT1NsBDiqHun0dRClmV4VO3_wj2LlIq1g
                        firstName: Todd
                        lastName: Sears
                        fullName: Todd Sears
                        publicIdentifier: toddgsears
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQG-mRfgn4VkCw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1692645533327?e=1761782400&v=beta&t=donPVeqYz6a7t6knzKIaMfN7TFkoYzeHTiI4_Svb4fg
                        creator: true
                        followerCount: 17555
                      - urn: ACoAAAKkn_gBdU1rnZ3g8Ud9mkkpvy0AEbU-Q6M
                        firstName: Mark
                        lastName: Haner
                        fullName: Mark Haner
                        publicIdentifier: markhaner
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGwDJdCTfOdtQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1665577868123?e=1761782400&v=beta&t=w5KDykAw4BNzcGluA9v0-E88S7j-5pyR_mWXR-H7NgE
                        creator: false
                        followerCount: 0
                      - urn: ACoAAAUW3t4B4VQMkt5iEeajBbmZRu3MiWHoCuM
                        firstName: Judith
                        lastName: Sherven, PhD
                        fullName: Judith Sherven, PhD
                        publicIdentifier: judithsherven
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGUOGC5avlF8A/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1727740014077?e=1761782400&v=beta&t=GgKwDKctmt8e1mjzpHt6Yz8pcp5Y7ivpZ9KexV1NmSI
                        creator: true
                        followerCount: 587297
                      - urn: ACoAAABakEsBFpt_KkhAsm9Uz5Zs39eCgG_4r2c
                        firstName: Diego
                        lastName: Rodriguez
                        fullName: Diego Rodriguez
                        publicIdentifier: diegorodriguez
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQEsyq_OfGmFeg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1602985774801?e=1761782400&v=beta&t=xLU9Oaby0PnsHwP8xfq65OeY3PSufkq9W7QphxG0nYE
                        creator: true
                        followerCount: 391010
                      - urn: ACoAAAwp1RMBxG26M3Qkhm4klqLNr1bIplo6GhY
                        firstName: Richard
                        lastName: Branson
                        fullName: Richard Branson
                        publicIdentifier: rbranson
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQHh6_Wth5f3rQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1625181963183?e=1761782400&v=beta&t=D4lwUaMFXh8-qJ0qKQwi3yf1PAufkNN_3wf3ZYQWRHE
                        creator: true
                        followerCount: 18682196
                      - urn: ACoAAAC0xTcBBXymJYxHQOzRvu0GjgkLzf5UIs0
                        firstName: Joel
                        lastName: Peterson
                        fullName: Joel Peterson
                        publicIdentifier: joelpetersongsb
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQE6aQoFqbDB5Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1565969134822?e=1761782400&v=beta&t=ziJ1FaBI7rnd88GH0z_7v71gWx1aRaFw5TIeuycVNqk
                        creator: true
                        followerCount: 399893
                      - urn: ACoAAAta6dYBBXJOOLLXB_o_ZRXHWf1y8EmZAr4
                        firstName: Abhishek
                        lastName: Patil
                        fullName: Abhishek Patil
                        publicIdentifier: abhishpatil
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHSGO1r2f-35g/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1730944496121?e=1761782400&v=beta&t=T4z9WGVfXaNNyi-GweuVw67oICMfArcNh0svMHCqnAY
                        creator: true
                        followerCount: 115605
                      - urn: ACoAAAMfg-wBY-zTAHZ4XtSmeQsvl3PR6mLjHDM
                        firstName: Claire
                        lastName: Diaz-Ortiz
                        fullName: Claire Diaz-Ortiz
                        publicIdentifier: clairediazortiz
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGZ4ehKsBoZoQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1700513879058?e=1761782400&v=beta&t=2MjxsoSGh4o11WJgzKZYunkhTv8m0A_Us7y5srLZEG8
                        creator: true
                        followerCount: 490929
                      - urn: ACoAAAABTNYBc0IbBTeUIQ2TOoKEQYUPpJfsc80
                        firstName: Dennis R.
                        lastName: Mortensen
                        fullName: Dennis R. Mortensen
                        publicIdentifier: dennismortensen
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQGRIXJuvAbvQg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1516166238928?e=1761782400&v=beta&t=ZMkFThaoMDumVBFIMNNJwRn-302fEdblJzYfg6SlNQI
                        creator: true
                        followerCount: 488514
                      - urn: ACoAABTrYN0B3aZjZg2jYZ93-1jRLsJSlUNyojA
                        firstName: Jonathan
                        lastName: Javier💡
                        fullName: Jonathan Javier💡
                        publicIdentifier: jonathan-wonsulting
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFklBbp6e-3Qg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1705651672265?e=1761782400&v=beta&t=LtLf3cEA9gA0jyhv9ttICvHHwygCsMcmgKfu0bkOKyo
                        creator: true
                        followerCount: 425020
                      - urn: ACoAACBFCnYBR35BQeyD6-SevWDH0riip0DhAKc
                        firstName: Doug
                        lastName: McMillon
                        fullName: Doug McMillon
                        publicIdentifier: dougmcmillon
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGhIOURv9P-lw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1659462364092?e=1761782400&v=beta&t=LZfj9Ji5kphBh044cH9-LJsl20Kdzi8xFXcuqr1oJhU
                        creator: true
                        followerCount: 1152050
                      - urn: ACoAAA2XI4wB3y-4q7mXFoTmmkOXmiPhv_sRlI8
                        firstName: Anita
                        lastName: Elberse
                        fullName: Anita Elberse
                        publicIdentifier: anitaelberse
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGoIsaBXDeLwg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1517592612113?e=1761782400&v=beta&t=EcVTfltuvIBn75KKOMLVxN12yOy6zANdSpUpluh-k6I
                        creator: true
                        followerCount: 385568
                      - urn: ACoAAAgDeQsBOjf1PW9WshszVGXT5gMsD6kYufU
                        firstName: Ross
                        lastName: Pomerantz
                        fullName: Ross Pomerantz
                        publicIdentifier: corporatebro
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQH_dcLGzP-wzQ/profile-displayphoto-shrink_400_400/B4DZQ9lFJwGgAk-/0/1736199918599?e=1761782400&v=beta&t=Isecq93lYYRvqAEmHIIOG0BAr9NvZZCjbtz0DdodqNY
                        creator: true
                        followerCount: 162109
                      - urn: ACoAAFgv46sBp8pysioX1lHcelIuu8ELCA_pzIU
                        firstName: Rafael
                        lastName: 'Nadal '
                        fullName: 'Rafael Nadal '
                        publicIdentifier: rafanadal
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQF0KzdcrT8WkQ/profile-displayphoto-shrink_800_800/B4EZVMR5wsHMAc-/0/1740741516860?e=1761782400&v=beta&t=_VepKQgX_W5oxPcYlJ1243GzdiI6OlvS6BMQfK8z53c
                        creator: false
                        followerCount: 107398
                      - urn: ACoAAAACfu4BK4gtAYUTnUSLcCLlk26dJ5dwids
                        firstName: Michael
                        lastName: Feldstein 🫶 🇨🇦 🇲🇽
                        fullName: Michael Feldstein 🫶 🇨🇦 🇲🇽
                        publicIdentifier: mfeldstein
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGJhe2Byq42aQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1689002529512?e=1761782400&v=beta&t=yKGVz3YQSThsFrhCnw8AkDXk0kItiJbVdLqUjtGzY8U
                        creator: true
                        followerCount: 7514
                      - urn: ACoAAAAEIZIBtsS7_-P3J9vu22wdp8euEKBhntg
                        firstName: Julia
                        lastName: Boorstin
                        fullName: Julia Boorstin
                        publicIdentifier: juliaboorstin
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQF2Nf9e54BlxA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1663258952475?e=1761782400&v=beta&t=rQIVizCikfBUU8E_f3Ks0Robc2zbJ2OjJMTLqRDMRCo
                        creator: true
                        followerCount: 152290
                      - urn: ACoAAAc-_yEBDbEZ0yk-N5U15AyZ8dwveDX9VKo
                        firstName: Steven
                        lastName: Bartlett
                        fullName: Steven Bartlett
                        publicIdentifier: stevenbartlett-123
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFKGYisXugzSw/profile-displayphoto-shrink_800_800/B4EZcNBfDQHYAc-/0/1748270183031?e=1761782400&v=beta&t=EkES8PWQE5UHDXos3E3gIWwVjA4fQvFTlyEsWPo6Gas
                        creator: true
                        followerCount: 2953456
                      - urn: ACoAAAH_9jAB04YubzgUMvK_G_caysII71fXgeY
                        firstName: Neil
                        lastName: Weinberg
                        fullName: Neil Weinberg
                        publicIdentifier: neilweinberg
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQH2v_W93qsd_A/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516357542440?e=1761782400&v=beta&t=oa5UKSAhqZ4Qwouj2psXDzAE4rKLr-Mhd3HX0_cZaEE
                        creator: true
                        followerCount: 131310
                      - urn: ACoAAASA67IBp134-6fngeSbT7_SyurQKnyqtWo
                        firstName: Sol
                        lastName: Trujillo
                        fullName: Sol Trujillo
                        publicIdentifier: soltrujillo
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQG0jnw0ce1JVg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1610054888716?e=1761782400&v=beta&t=EDNsVmDB0XKxLoIRWhnGIZaorFQRassGkYl4pqXfJ6w
                        creator: true
                        followerCount: 8826
                      - urn: ACoAABE9HH8BsvYrxj-dZxQzyqcPqmq7eVN4IP4
                        firstName: Ray
                        lastName: Dalio
                        fullName: Ray Dalio
                        publicIdentifier: raydalio
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQEaAcHgvsm0UA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1623860377413?e=1761782400&v=beta&t=zgq9Nmwba1kM3iDCk_VJ-nzk5ot_1fb-_gXTXgNrmq0
                        creator: true
                        followerCount: 2774132
                      - urn: ACoAAAA76B4BOIO_14Lbhye3Sx-PwZiV_Y-7P58
                        firstName: Roy
                        lastName: Jakobs
                        fullName: Roy Jakobs
                        publicIdentifier: royjakobs
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQE5a1TyFrz67A/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1665781692792?e=1761782400&v=beta&t=I7qVO_Qmw5CaOy5SyyweUf9rZvSZeNkR_CXSMHJE5RU
                        creator: true
                        followerCount: 67952
                      - urn: ACoAAAEkwwAB9KEc2TrQgOLEQ-vzRyZeCDyc6DQ
                        firstName: Satya
                        lastName: Nadella
                        fullName: Satya Nadella
                        publicIdentifier: satyanadella
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQHHUuOSlRVA1w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1579726625483?e=1761782400&v=beta&t=EuNsJWVHJDWr_vNwWSNNC47t4YayWWsimiiLxfXUXmo
                        creator: true
                        followerCount: 11600388
                      - urn: ACoAAACgAVMBb8w4dbaqCMriT5tTYE0H4M_oFKE
                        firstName: Gary
                        lastName: Vaynerchuk
                        fullName: Gary Vaynerchuk
                        publicIdentifier: garyvaynerchuk
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFAvHbFTXirbw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1718257337092?e=1761782400&v=beta&t=Tj6w6MJdM8aCczVkv8fiAzGxi9MhWYq066dcfibCNjE
                        creator: false
                        followerCount: 0
                      - urn: ACoAADnl1jgBdlHVvRibBu9Fm0M77z4oYsyVQ0k
                        firstName: Jimmy
                        lastName: Donaldson
                        fullName: Jimmy Donaldson
                        publicIdentifier: mr-beast
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGQ-C6lKKb3pQ/profile-displayphoto-crop_800_800/B56Zl0Y1.RHUAI-/0/1758594294085?e=1761782400&v=beta&t=mFxnrFynTrmO1x9TwWzaXddw1_vsakK3lR04vc966xc
                        creator: true
                        followerCount: 366715
                      - urn: ACoAAACfefIBFX76kKvF_0uYzIQxuxbD1CQm8_k
                        firstName: Brian
                        lastName: Wong
                        fullName: Brian Wong
                        publicIdentifier: wongbrian
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEr_PP6n1zMEQ/profile-displayphoto-shrink_800_800/B56ZOQIU6cGoAc-/0/1733289922718?e=1761782400&v=beta&t=T3lFh-kQvT7eA_ZkwZWo68Gp9HMl8XvitoWiELzuW8k
                        creator: true
                        followerCount: 670753
                      - urn: ACoAAAAoIS4BO_kCIr4574BuUqiHs-kNa_HbPuE
                        firstName: Andrew Ross
                        lastName: Sorkin
                        fullName: Andrew Ross Sorkin
                        publicIdentifier: andrew-ross-sorkin-b52a69
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQGOH27ejzRKCQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1516268671442?e=1761782400&v=beta&t=htJbllZZWrscoKcbQzDbrrOTVpSbDIl7PzuhJsnhMMc
                        creator: true
                        followerCount: 99527
                      - urn: ACoAAACTSiYB8oyC83rsjGL1gyQNh0kElssFxsM
                        firstName: Sriram
                        lastName: Krishnan
                        fullName: Sriram Krishnan
                        publicIdentifier: sriramkrishnan01
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGOb0XegvzrOA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1552606158502?e=1761782400&v=beta&t=6Mdlh62hUfeim30l-MP6pOnwnkQa4IKNaKO1Y2FOoEg
                        creator: true
                        followerCount: 52860
                      - urn: ACoAAAl7WvwBRoQZ2FAAvQR8_VO_v6T1jNJvW6k
                        firstName: Neil
                        lastName: Barofsky
                        fullName: Neil Barofsky
                        publicIdentifier: neilbarofsky
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQEPifezDpeJsQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1517397674852?e=1761782400&v=beta&t=gKQQrzsIetG5EUdLeVgevkdRlg_AUGYP8gMtCcTmfaM
                        creator: true
                        followerCount: 189043
                      - urn: ACoAAAABFs8BMkIjilIjPzHIIUpVJ3bwzM7_wvY
                        firstName: Baratunde
                        lastName: Thurston
                        fullName: Baratunde Thurston
                        publicIdentifier: baratunde
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHnjAg1Dw2Lrg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1726798216589?e=1761782400&v=beta&t=cxklU2IwjLFQEXZd54XMpHuWw8CUtrtQUrTo4lAw0eg
                        creator: true
                        followerCount: 21164
                      - urn: ACoAAAAAQKkB5uxB9qsbzuCdWvDdtTKQ6qwujxE
                        firstName: Tim
                        lastName: O'Reilly
                        fullName: Tim O'Reilly
                        publicIdentifier: timo3
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQGKQgAwBVe94Q/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516157437359?e=1761782400&v=beta&t=m1x9WzLz7o1HVf4-NjdkHeNNblsapYd8zm4J3SgCXvI
                        creator: true
                        followerCount: 684140
                      - urn: ACoAADyKu74BZkzFQX8PVJLy7KvwBj5afQu5ZVg
                        firstName: Alex
                        lastName: Pall
                        fullName: Alex Pall
                        publicIdentifier: alex-pall-9921b7244
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFX6g7aKCDX7A/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1680699623370?e=1761782400&v=beta&t=esuPYKvixULeLum2utbQsr0Le5IaiqiXU3OqpU1Klkc
                        creator: true
                        followerCount: 57607
                      - urn: ACoAABuMHQEBRgK6mHooSpeM-qXlvbEV4hs5f0c
                        firstName: Andrew
                        lastName: Huberman
                        fullName: Andrew Huberman
                        publicIdentifier: andrew-huberman
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQH5MzxKYhfquw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1611446851771?e=1761782400&v=beta&t=gWC5a8Xze0BxBMKRcnz6kzz6hjYBYjRkr8smWbFwOZI
                        creator: true
                        followerCount: 1896167
                      - urn: ACoAAAAjEJkBSFKMqKxMy9EOjw0DdxohG4Sor7w
                        firstName: Spencer
                        lastName: Rascoff
                        fullName: Spencer Rascoff
                        publicIdentifier: spencerrascoff
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQHCziUau0w0bw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1601528387954?e=1761782400&v=beta&t=Vi3BbRvVMIEfNFXIam9UxYGFYbGGRwP-gCXy-Pms4HU
                        creator: true
                        followerCount: 516570
                      - urn: ACoAAA3DtkUBSlvuywdy_HJto8MM8ZtU-1e3F4Y
                        firstName: Jeff
                        lastName: Immelt
                        fullName: Jeff Immelt
                        publicIdentifier: jeffimmelt
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQHrqRduphMBtg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1610395407026?e=1761782400&v=beta&t=Fc6OWtR3nWAAXdgP2F4emAOiZBLYQudZ0kqtLiF9nbc
                        creator: true
                        followerCount: 564414
                      - urn: ACoAAAf8QMsBp6l-pSq5cJdbkFOIHzNlq4YU8G0
                        firstName: Eric
                        lastName: Sim
                        fullName: Eric Sim
                        publicIdentifier: simeric
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQG6bcSoLgFWbQ/profile-displayphoto-crop_800_800/B56ZlGtMLkI0AI-/0/1757827875995?e=1761782400&v=beta&t=bXhPeirUGo5ijtWQ0bJf9Pe1umNbZtnJYdch1CDnM94
                        creator: true
                        followerCount: 2789071
                      - urn: ACoAAB-0K_oBLxYi2OMyAL_mFlfDX8MdZ70Sboo
                        firstName: Ana
                        lastName: 'Botín  '
                        fullName: 'Ana Botín  '
                        publicIdentifier: anabotin
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQFgUbelMja1vw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1518110950073?e=1761782400&v=beta&t=rGOkB3ySTpIyPYz_QLOWZMsYNWMInNqZLSXmqpuSHKQ
                        creator: true
                        followerCount: 511040
                      - urn: ACoAAAR5O7AB5DueUpwePmSA0jmP92PFv1W1gSI
                        firstName: Deepak
                        lastName: Chopra MD (official)
                        fullName: Deepak Chopra MD (official)
                        publicIdentifier: deepakchopra
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEKKyca2tVC0A/profile-displayphoto-crop_800_800/B56ZgtDGK4HkAI-/0/1753102444836?e=1761782400&v=beta&t=2JH7EbG9FbzIz-EfqYZIC_3U0UFEHnfKRuKUf6qPlZU
                        creator: true
                        followerCount: 5590934
                      - urn: ACoAAAAAHIIB-o5z84EThqNtosibTGbRrGjUURg
                        firstName: Hunter
                        lastName: Walk
                        fullName: Hunter Walk
                        publicIdentifier: hunterwalk
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGA2inUETdvnA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1673672352797?e=1761782400&v=beta&t=g1kJ7QmeKYgkrEx9iAnc0ppTp7k_HnbZNXe4uFHlcT4
                        creator: true
                        followerCount: 876644
                      - urn: ACoAAADYYhQBtIJToV2PD6bQC0OpsgGFMYEt_dg
                        firstName: Ben
                        lastName: Gilbert
                        fullName: Ben Gilbert
                        publicIdentifier: benjamingilbert
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFtODVTQQKSAQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1701719488034?e=1761782400&v=beta&t=IPhpZ2MyPpSOoySzKkTYTaashPr3V9agJ1f4f6aFAe8
                        creator: true
                        followerCount: 52164
                      - urn: ACoAAAAbtCIBbLFn0xrth7PAPRK58ZaSwXuDTtE
                        firstName: Aaron
                        lastName: Allen
                        fullName: Aaron Allen
                        publicIdentifier: aarondallen
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQFZ_AdAGknXGQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1563136900872?e=1761782400&v=beta&t=CEj4HgT_Di2PvkW3NR0okMbz247f0uBOnZIWfsShi5s
                        creator: true
                        followerCount: 275974
                      - urn: ACoAAABNBvcBIjzTC3EUltOum_FFUINfc84eBjw
                        firstName: Jose
                        lastName: Ferreira
                        fullName: Jose Ferreira
                        publicIdentifier: joseferreira
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGxsOwlBjAXtg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1693927063987?e=1761782400&v=beta&t=YGiOE3HMfCvLGru0e3cA5o8sNxgVXngVfRBrhlET5MM
                        creator: true
                        followerCount: 135625
                      - urn: ACoAABhysQkB6TS2qe8LWN2wJJgScTie1vI8roo
                        firstName: Capt. Sully
                        lastName: Sullenberger
                        fullName: Capt. Sully Sullenberger
                        publicIdentifier: sullysullenberger
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEb1vpZkGxQ4Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1667419698226?e=1761782400&v=beta&t=GePHK37NMg9NdQJaG4Ii1RNMLdAXnt2RLbLSsIY4NDA
                        creator: true
                        followerCount: 358932
                      - urn: ACoAABedvXYBxRJyjdl39zwmOHoIzn2phkyS7P0
                        firstName: Mohammad
                        lastName: Al Gergawi
                        fullName: Mohammad Al Gergawi
                        publicIdentifier: mohammedalgergawi
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQG1K7xd1iWWeQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1517537900785?e=1761782400&v=beta&t=D_gRhQqsoF2GC_A4X9oSH_VNYMholTiD7td6hjnpkhM
                        creator: false
                        followerCount: 222831
                      - urn: ACoAAAMg8V8BKDaO-Ymv6oZEdF3rbISEntgB9C4
                        firstName: Shaili
                        lastName: Chopra
                        fullName: Shaili Chopra
                        publicIdentifier: shailichopra
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFVMdvpC8KigA/profile-displayphoto-shrink_800_800/B56ZbnNBCHGsAc-/0/1747635672195?e=1761782400&v=beta&t=Y6wbDqmQqGII3Bp7MYANmZc5NMF3NGJX_CuElvX81pI
                        creator: true
                        followerCount: 16840
                      - urn: ACoAAAITKL4B5dyhNTXLdGTE-0Vq4LnTZjHanpU
                        firstName: Clem
                        lastName: Delangue 🤗
                        fullName: Clem Delangue 🤗
                        publicIdentifier: clementdelangue
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQHB49jGc59tLw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1639655041698?e=1761782400&v=beta&t=mTOHpMfoDFY3R5bITixRz5H5krxYWb9eNZnLd_Bd-IY
                        creator: true
                        followerCount: 278154
                      - urn: ACoAAADjyKsBQuuGgJnPW8fEsLjlTpegxiVcfwk
                        firstName: Chip
                        lastName: Bergh
                        fullName: Chip Bergh
                        publicIdentifier: chipbergh
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQEB-t6hSS0GYg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1517722713154?e=1761782400&v=beta&t=bEgWMA302Rems4RGViSGzdQ8e4rlsRLXNcBDy1bNkkc
                        creator: true
                        followerCount: 254160
                      - urn: ACoAAAUddYgBuR9PGxjdmdCcUPl3n-hFVothh9Q
                        firstName: Jim
                        lastName: Sniechowski, PhD
                        fullName: Jim Sniechowski, PhD
                        publicIdentifier: jimsniechowski
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQHLQtcNQjsiZw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1517234746656?e=1761782400&v=beta&t=rzJUlYbPwEk1ZcSaocBdTOBd7P9g9wH7vKLf8bqHi0I
                        creator: true
                        followerCount: 164840
                      - urn: ACoAADnkvAoB69W0y_4ToD3SzIANnL3LlXg6hTE
                        firstName: Natalie
                        lastName: (Corporate Natalie)
                        fullName: Natalie (Corporate Natalie)
                        publicIdentifier: natalie-corporate-natalie-0b634a231
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGQwiiWPYE3AQ/profile-displayphoto-shrink_800_800/B56ZRbyAjuHoAc-/0/1736706624262?e=1761782400&v=beta&t=1Xa-quVV2tlJL6OGcRTqWLTGYgRmHx-NnM42x7_8yeM
                        creator: true
                        followerCount: 216266
                      - urn: ACoAAEJAUQEBouU2110ZLhX9BGLPGGP61Wuqsv8
                        firstName: 'Snoop '
                        lastName: Dogg
                        fullName: Snoop  Dogg
                        publicIdentifier: snoopdogg
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHN1f-W4ZsjWQ/profile-displayphoto-shrink_800_800/B56ZRfsMmSH0Ag-/0/1736772209353?e=1761782400&v=beta&t=RlHuYeYTWmBOYlEFM3Ig4cB_wpMiQ1IXBq8hUKILAAY
                        creator: true
                        followerCount: 638727
                      - urn: ACoAAAg3tdkBEgzQ-aktuDTNoMtil6oa1qKzNjc
                        firstName: Daniel
                        lastName: Ek
                        fullName: Daniel Ek
                        publicIdentifier: daniel-ek-1b52093a
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQEFQRJmIjn3Dg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1518714142536?e=1761782400&v=beta&t=gJf-nW2eDwLtYDdQ2yG4qkHRAPw2fqq_o5_jj8O0rQs
                        creator: true
                        followerCount: 205002
                      - urn: ACoAAAESNnYBRYZdCGapx1lDFr6rYJQVICbjAKc
                        firstName: John A.
                        lastName: Byrne
                        fullName: John A. Byrne
                        publicIdentifier: johnabyrne
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQFvFnzCeOwDEQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1528566267360?e=1761782400&v=beta&t=pJHNZWQjSgYbjEmqLUfTju3YgCq8aSN-dolduYKIS3k
                        creator: true
                        followerCount: 688490
                      - urn: ACoAAAKXsdABMUNfdYaKncs26A2_S3I4W9dID70
                        firstName: Mary
                        lastName: Barra
                        fullName: Mary Barra
                        publicIdentifier: mary-barra
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFNy7nvRz3AAA/profile-displayphoto-shrink_800_800/B56ZSTmJCnGsAc-/0/1737643037521?e=1761782400&v=beta&t=RG8Kylo5hMWpi7T4un6Znw4qFGe1rOTBixvXlMyopcg
                        creator: true
                        followerCount: 1452385
                      - urn: ACoAAAFAMg4BA7qywHBKci__6L9JouQbov2lqVM
                        firstName: LeVar
                        lastName: Burton
                        fullName: LeVar Burton
                        publicIdentifier: levarburton
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFRmAtqAfzKfw/profile-displayphoto-shrink_800_800/B56ZXK8bkuGcAg-/0/1742866594718?e=1761782400&v=beta&t=_iVS92hmbk9-yQSUFwC0_HX0C2I-72_i8V__migRXAM
                        creator: true
                        followerCount: 925103
                      - urn: ACoAAAAAPwEB4ddZ-a_r4ceBpSuhc5nLtH37gi4
                        firstName: Marc
                        lastName: Benioff
                        fullName: Marc Benioff
                        publicIdentifier: marcbenioff
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHnSx2OOgzsSA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1730225996800?e=1761782400&v=beta&t=cqvAoyDDkEdi3M9sX3lRuByjFRn7IWMnRq6aQis5Sjs
                        creator: false
                        followerCount: 198020
                      - urn: ACoAAAPlFEUBGFgILYuMe3B4ul8L1pns82n76RA
                        firstName: James
                        lastName: Creech
                        fullName: James Creech
                        publicIdentifier: jlcreech
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQHmQPoPXMRPgw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1664429878680?e=1761782400&v=beta&t=SkXgD7alzSQ1S8RLkgBB9LgVc68veVzgDNhACkddwX4
                        creator: true
                        followerCount: 30376
                      - urn: ACoAAACQhmgBP0GR7K7Skg74Y46ONZY5geUbja4
                        firstName: Andy
                        lastName: Dunn
                        fullName: Andy Dunn
                        publicIdentifier: andyrdunn
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGeOoaVK4yMhQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1655566204999?e=1761782400&v=beta&t=iksbzjanjNXEuMc7x3LGrOFSM1sUr7vDIg5M6genq-s
                        creator: true
                        followerCount: 41526
                      - urn: ACoAAABYfZcBymOzU7SafpzGprHXXQZQO3XRa_Y
                        firstName: Ilya
                        lastName: Pozin
                        fullName: Ilya Pozin
                        publicIdentifier: ipozin
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEKsZwX5x__bQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1689591901244?e=1761782400&v=beta&t=e2zfbl-isb2RVX48H74Tv2oZTvvsEJdPSG8DMBP8N-Q
                        creator: true
                        followerCount: 795884
                      - urn: ACoAABayK0kBBoE8WtuBgPp1lIz5nNzjsFK5OwY
                        firstName: Yuanqing
                        lastName: Yang
                        fullName: Yuanqing Yang
                        publicIdentifier: yuanqinglenovo
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGJ6ELYSiWMeA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1526008586744?e=1761782400&v=beta&t=6wUT9CGYraNM7G0K_irCZ7_9nrjgjSGNedLCcDz-dG0
                        creator: true
                        followerCount: 291387
                      - urn: ACoAAAAD8SsBK2q9RZlfcoVlodqTKjPodIL0v_U
                        firstName: Jules
                        lastName: Polonetsky
                        fullName: Jules Polonetsky
                        publicIdentifier: julespolonetsky
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFSxC7sHDn84A/profile-displayphoto-shrink_800_800/B4EZS0RLSHHcAc-/0/1738191191532?e=1761782400&v=beta&t=01hBzLu5WvTACnjUWZcHQKolOrARgLthpWwnV4kleFY
                        creator: true
                        followerCount: 388350
                      - urn: ACoAAAAe090BQuHwR1RQSk2Xf3QODxQtgQ0r1Ww
                        firstName: Kunal
                        lastName: Bahl
                        fullName: Kunal Bahl
                        publicIdentifier: kunalbahl
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGxPlvpTr28QA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1708016890335?e=1761782400&v=beta&t=l_bYpQKr4UnCC_k8Wo-dXHjk4fW4tKx4GCV1n3m-eZ4
                        creator: true
                        followerCount: 881887
                      - urn: ACoAAAFJDSQBt8r9uXY5YTSHghpT0s-3fuvYmfg
                        firstName: Rita J.
                        lastName: King
                        fullName: Rita J. King
                        publicIdentifier: ritajking
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHxW-GpsaQd7Q/profile-displayphoto-shrink_800_800/B56ZZR065nHsAc-/0/1745129551355?e=1761782400&v=beta&t=0LKcz2t4y-HNm2qI-28m63heZkxyUOiTYgxj360sEdE
                        creator: true
                        followerCount: 577727
                      - urn: ACoAAAA1bO8BbcMzKoGaf7jow6b3M86ifsWtiVY
                        firstName: Jeff
                        lastName: Jones
                        fullName: Jeff Jones
                        publicIdentifier: jjonesii
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQF7-NPv-sRUXQ/profile-displayphoto-shrink_800_800/B56ZNe9pOJGgAc-/0/1732465039946?e=1761782400&v=beta&t=yyMRcjJ-s_hv_YKZvGTym0UV2JrTpw8jVt9LdO1czQ0
                        creator: true
                        followerCount: 157801
                      - urn: ACoAAAw4D5sB4ZMefUY22SQECAv5kgQQKM4Cwh4
                        firstName: Stephen
                        lastName: Curry
                        fullName: Stephen Curry
                        publicIdentifier: stephencurry30
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQFB4ebeyLpzgw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1568784020966?e=1761782400&v=beta&t=MhP_r7JaRfWGi_cE5JCeLIgpIn2uNQLdlLJTfNGjtyY
                        creator: true
                        followerCount: 542227
                      - urn: ACoAAAA60_cBLDJX9LzxGGl_y-JHuiI2iWyReIo
                        firstName: Aaron
                        lastName: Levie
                        fullName: Aaron Levie
                        publicIdentifier: boxaaron
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQFIzAABLLfSqQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1521701872691?e=1761782400&v=beta&t=GWjt2Wl0Zqmzn9JKvWMimQkO3LRFmegahLvhf1Guetw
                        creator: false
                        followerCount: 91346
                      - urn: ACoAAA7nVsoB6-nVBU_tRi4jS-pahP_O4mM15XI
                        firstName: Liz
                        lastName: Claman
                        fullName: Liz Claman
                        publicIdentifier: lizclaman
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQFAUZEjhVuKJg/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1517483014616?e=1761782400&v=beta&t=CWEjFHIm_jvAVuhKtZyjKPQ2kPKzC5Boa6XxBSK5_fs
                        creator: false
                        followerCount: 87166
                      - urn: ACoAAAF0QlEB41rmm-NHtE9EhKZD5wEH2Ao_4eI
                        firstName: Jane
                        lastName: Fraser
                        fullName: Jane Fraser
                        publicIdentifier: jane-fraser-3292068
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQEDwsfw5-HWJg/profile-displayphoto-crop_800_800/B4EZhCEDHaHgAI-/0/1753455015185?e=1761782400&v=beta&t=OkWtnO4W0Q9OH4C5z10Q4ApiNXFvchcGeqvfQ70jyB4
                        creator: true
                        followerCount: 397355
                      - urn: ACoAAAA-LWUBWvoYu3LhTCyylEAp3v_ruqfh9ms
                        firstName: Scott
                        lastName: Belsky
                        fullName: Scott Belsky
                        publicIdentifier: scottbelsky
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQERXgLVc38kzg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1673029866417?e=1761782400&v=beta&t=QGgwx4sUGVydfSoYTSwJv0HnP5QiB8LGFvE2LU5cKHI
                        creator: true
                        followerCount: 215112
                      - urn: ACoAAARl4EIB5OomB7aW_76fvnqhmVcyJ8gMjg4
                        firstName: Bob
                        lastName: Moritz
                        fullName: Bob Moritz
                        publicIdentifier: robertemoritz
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQGMjdfvmHi5BA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516903465246?e=1761782400&v=beta&t=uL2tZKV3vQnHv1LPzKg6XOkgvDwS7NRGmRvLM68IyjY
                        creator: true
                        followerCount: 355469
                      - urn: ACoAAEwcXoEBzGK5wSNLhtqUAwT6urxoK0kqpz4
                        firstName: Ashley
                        lastName: Graham
                        fullName: Ashley Graham
                        publicIdentifier: ashley-graham-8a97822b7
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQFzJdEUcAYg2Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1718286612578?e=1761782400&v=beta&t=fd5QToLVtUh38b3TngFQikEwk4KfbZbofgyGut4nF7I
                        creator: false
                        followerCount: 2986
                      - urn: ACoAAAQglKkB6T3kzNMNB3hWpxGVWJbLYXNBM_I
                        firstName: Adam
                        lastName: Grant
                        fullName: Adam Grant
                        publicIdentifier: adammgrant
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQFGdrbBw3FYhA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1629123595757?e=1761782400&v=beta&t=Yg_MtdmnCO8xS3VWOg_V2IaIQ1zcJRfTx_mX7c71K4U
                        creator: true
                        followerCount: 5554221
                      - urn: ACoAAAABQdkBmr14ZzzcORymddjyXabHSIh2gFM
                        firstName: Eric S.
                        lastName: Yuan
                        fullName: Eric S. Yuan
                        publicIdentifier: ericsyuan
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGNJcc-bCEvJA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1692899470721?e=1761782400&v=beta&t=2Q2MV3qfr6CwzbAg1tCuAcSvWQpOLXB9nS1kkwGxHKY
                        creator: true
                        followerCount: 91022
                      - urn: ACoAAAFqmHMBRvI7O6GyhdtaXPyuHZSa4aQUEnw
                        firstName: Brad
                        lastName: Smith
                        fullName: Brad Smith
                        publicIdentifier: bradsmi
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGnYfaUI8S0zQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516342848914?e=1761782400&v=beta&t=sUn27ZOFDv58roaEf537l9F20HHZIUdFXLmKo806pX4
                        creator: true
                        followerCount: 353780
                      - urn: ACoAAARyDZEBIVETZcNjOW84VHribYXra_LDmXE
                        firstName: Kevin
                        lastName: Parry
                        fullName: Kevin Parry
                        publicIdentifier: kevinbparry
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQFZEDO-dbb1Hw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1647004810734?e=1761782400&v=beta&t=UDJC3O_gSISZvJQVogNViYxBDwy0t6Pa6268i62_w3Y
                        creator: true
                        followerCount: 131724
                      - urn: ACoAAAEPVgwBVSHn9Zdw12nL5N453WDm5kWqVZY
                        firstName: Sean
                        lastName: Tresvant
                        fullName: Sean Tresvant
                        publicIdentifier: sean-tresvant-810b565
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEPL5t-H80reQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1726860612005?e=1761782400&v=beta&t=d0ajjrya7K9aUvDaj80q0kTgs4PbZE1_NhGEIS0QqjA
                        creator: false
                        followerCount: 24930
                      - urn: ACoAAAEcd8gB4ZoC-nk1q9F0Y4ZxeiTDxI8bjb0
                        firstName: Christopher M.
                        lastName: Schroeder
                        fullName: Christopher M. Schroeder
                        publicIdentifier: schroederchrism
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGaFFC-vr8M4Q/profile-displayphoto-shrink_800_800/B4EZdROfnbHgAc-/0/1749414456682?e=1761782400&v=beta&t=KjKecLASrwnNOnsnRNg4nPRNAVYb4GRtNaFcbSo1eIY
                        creator: true
                        followerCount: 783987
                      - urn: ACoAAAPpJ44B3E-jsuFQl0f4_yOTiwAvM86bV1k
                        firstName: Anthony
                        lastName: Day✌🏽
                        fullName: Anthony Day✌🏽
                        publicIdentifier: anthonyjjday
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGAlrf7H0_5aQ/profile-displayphoto-crop_800_800/B4EZd.SAWYHcAM-/0/1750170343463?e=1761782400&v=beta&t=Msxu007dfwyWSxHI1RlVEYefzHHq3p9Z2qlz2sbN0II
                        creator: true
                        followerCount: 116272
                      - urn: ACoAAAAAZKABcGLHr1Xi8TnxwJhmiGPgewpxF-c
                        firstName: Michael
                        lastName: Moritz
                        fullName: Michael Moritz
                        publicIdentifier: michaelmoritz
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQEElf8XI_61_Q/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516158533780?e=1761782400&v=beta&t=s3HM2dH8eeQS0yDHogyBtPROPqbwUA32ikL1uAG32pE
                        creator: true
                        followerCount: 574657
                      - urn: ACoAACks6T8BloGipoqIc0bqXVskD8MTGF8gsM8
                        firstName: Tejas
                        lastName: Hullur
                        fullName: Tejas Hullur
                        publicIdentifier: tejashullur
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQH_c8CgBmvzDQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1693415511544?e=1761782400&v=beta&t=Fxzr6WVaxLV_JvqinJwii6N4rSqKRl8oK8b__DNilus
                        creator: true
                        followerCount: 11047
                      - urn: ACoAAApPMQsBNsIVEUUE1ofRsCd1fRJ27cF9hwI
                        firstName: Caroline A.
                        lastName: Wanga
                        fullName: Caroline A. Wanga
                        publicIdentifier: wangawoman
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQHBa8JaxKHExQ/profile-displayphoto-crop_800_800/B4EZjjl.IAGwAU-/0/1756165039301?e=1761782400&v=beta&t=m1CjIHju-kd6AH7S6B9moUugHjPQ3OhnjiWS3jHC9Gk
                        creator: true
                        followerCount: 95887
                      - urn: ACoAAAXndSQBe4GCICiUpwCPxvJGp4faGmE4C10
                        firstName: Kelvin
                        lastName: B.
                        fullName: Kelvin B.
                        publicIdentifier: kb2smu
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQE3IW0r4Abn2A/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1668977641315?e=1761782400&v=beta&t=Kjw_0u-4gUYESN1XqlObEti1LTHlBDQPVBj3f9SDimc
                        creator: true
                        followerCount: 23366
                      - urn: ACoAAAIMgsABOFx7ta79OHsbNbjtxCSk4XG-GN0
                        firstName: John
                        lastName: Maeda
                        fullName: John Maeda
                        publicIdentifier: johnmaeda
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGfQRPxo8VLIw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1694989489092?e=1761782400&v=beta&t=by8v2anZoQZV1lnoApn3iGeX0mI0GoVUKyS9M9ZN0J4
                        creator: true
                        followerCount: 468940
                      - urn: ACoAAAFRSa0BpGeJj0TC-WnyRla63LSGA6Ple3E
                        firstName: Daron K.
                        lastName: Roberts, J.D.
                        fullName: Daron K. Roberts, J.D.
                        publicIdentifier: daronkroberts
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQExgLzikUN7Ng/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1724154763460?e=1761782400&v=beta&t=HCEQbNTosFngEONoOq6JTSValjr5bCT8WL2LhRjUjok
                        creator: true
                        followerCount: 66676
                      - urn: ACoAAAFgF0YBELiNInVhCQaUrtiPIgTA7EsP4SY
                        firstName: John Hope
                        lastName: Bryant
                        fullName: John Hope Bryant
                        publicIdentifier: johnhopebryant
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQF7bZPdIWxixA/profile-displayphoto-shrink_800_800/B4EZdHuPVZHsAc-/0/1749254994229?e=1761782400&v=beta&t=gRyk00QX_5q2ll22hjmJo0CFnOdhQl-QtGDn-8GF6l0
                        creator: true
                        followerCount: 423545
                      - urn: ACoAAAACe5QBtE24H3BNxmLp2wdTQJa5roe3fDo
                        firstName: Jeffrey
                        lastName: Walker
                        fullName: Jeffrey Walker
                        publicIdentifier: jeffreywalkerinfo
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQF878dCLbvoGg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1516176249736?e=1761782400&v=beta&t=tJVDsJCr7Km5MgYoaL-bxmhnz4-k0BfRM46jpdsj0YM
                        creator: true
                        followerCount: 102752
                      - urn: ACoAAADCHL0BFrabMtEhQ1qQD-YuKWx5FljCDmc
                        firstName: Alex
                        lastName: Kantrowitz
                        fullName: Alex Kantrowitz
                        publicIdentifier: alexkantrowitz
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQH_TOzh_tidpg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1583114264572?e=1761782400&v=beta&t=lOvkcsLJDvwTtmsUU-bvpl1yzTZ4KJQKusc_5z_O7C8
                        creator: true
                        followerCount: 41182
                      - urn: ACoAACBTnw4BTcRBvRe8kfPg6ESVir4wtqQW3LQ
                        firstName: Anant
                        lastName: Maheshwari
                        fullName: Anant Maheshwari
                        publicIdentifier: maheshwarianant
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQHYWdEzrml5vA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1702879908627?e=1761782400&v=beta&t=lJRMpdyj-pTSPemSj54khqAIl_zf_ruULaIA2vZhT1s
                        creator: true
                        followerCount: 67554
                      - urn: ACoAAAC0y5YB1d3L356Yaf3g3Tb5PR4O7scFb5o
                        firstName: Adam
                        lastName: Selipsky
                        fullName: Adam Selipsky
                        publicIdentifier: adamselipsky
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGZJ-njdtv_-g/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1719507065641?e=1761782400&v=beta&t=8-AZ8CBHc707yDuaFCcQK4eZ-QqGI2rnx0-fXvBszyg
                        creator: true
                        followerCount: 269500
                      - urn: ACoAAA2CDF8BlyDd8jHcvIujtyUS6YDtx6EOzJ4
                        firstName: Justin
                        lastName: Trudeau
                        fullName: Justin Trudeau
                        publicIdentifier: justintrudeau
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQGD-PJnXZmU8g/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1629053585597?e=1761782400&v=beta&t=v7J4bQXp2IivxbqA5-cKxYaPxmLpun_bIoiYMDPvqbs
                        creator: false
                        followerCount: 5508933
                      - urn: ACoAAAC6QkIBdqrI_r-fP51RcZCf3U51U50ID7c
                        firstName: Sue
                        lastName: Siegel
                        fullName: Sue Siegel
                        publicIdentifier: sue-siegel
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQH6qTWdQ6hf9g/profile-displayphoto-shrink_800_800/B56ZUg.agRGoAc-/0/1740014987614?e=1761782400&v=beta&t=ZvktgEwWgSTPKEazZ5oXdj78XyC9RYkbMHqDR3-YKv8
                        creator: false
                        followerCount: 167794
                      - urn: ACoAABYHRckBHfSiDzhk3NRHTNbncUGybiRN7Js
                        firstName: Holly
                        lastName: Branson
                        fullName: Holly Branson
                        publicIdentifier: holly-branson
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQGawfRGM9RfhA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1580563642081?e=1761782400&v=beta&t=B9N9jJBPrkWj9iIx2l9zUjsFFsAjTxE8noT12eg3wEQ
                        creator: true
                        followerCount: 288588
                      - urn: ACoAAAekNPUBwZH5b0VQE0yjvdc6nB-VYT7Fp5s
                        firstName: Walt
                        lastName: Bettinger
                        fullName: Walt Bettinger
                        publicIdentifier: waltbettinger
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFC9b8kdKswOw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1723996176137?e=1761782400&v=beta&t=XA6C73ejzrrgfVR8jmX_9Nk8iw8d7NSdCZHy4rFYzho
                        creator: true
                        followerCount: 204387
                      - urn: ACoAAA7jgP0BAeORWVQbV3DjuZUiEDrGO_a6wV4
                        firstName: Padmasree
                        lastName: Warrior
                        fullName: Padmasree Warrior
                        publicIdentifier: padmasree-warrior-9917a26b
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQG6X9VVJbDq8A/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1548022109732?e=1761782400&v=beta&t=pxxLKNqCGIsVrSWgtlJGWc6OP5_6292MMXXWh0zpw8A
                        creator: true
                        followerCount: 426075
                      - urn: ACoAAADO7psB5cjUeiYhuS6S2Fi0pGnZpCAPsVE
                        firstName: Phil
                        lastName: Baumann
                        fullName: Phil Baumann
                        publicIdentifier: philbaumann
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQGz9deJexaTSQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1615857943164?e=1761782400&v=beta&t=dnV0SVr86XuwLpmxi8rWwCywwExZCRNXy5CJxBPqAKk
                        creator: true
                        followerCount: 97468
                      - urn: ACoAAA21ZpoBBM9eRio4mOGD0LKKpjRgDqXwg7k
                        firstName: John
                        lastName: Taft
                        fullName: John Taft
                        publicIdentifier: johngtaft
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQEq_xMce93xig/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1517611801032?e=1761782400&v=beta&t=JZo4jPkrCPeL9cHjnzxM4cQyrrhlf6VeikNj6LbiYEU
                        creator: true
                        followerCount: 139843
                      - urn: ACoAAABUB1wBfL6FPFuaJo1TtwjTY_mfS-A7VTI
                        firstName: Nicolas
                        lastName: Bordas
                        fullName: Nicolas Bordas
                        publicIdentifier: nicolasbordas
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEaU8XHThKseg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1696601768271?e=1761782400&v=beta&t=1JRJ_Hl3C7otZmnMN012nzXyF8V44fN_jU_pnBLS-Q4
                        creator: true
                        followerCount: 226107
                      - urn: ACoAABkaWZ0Bwm9zQSFBj2hCHLYVUvx4jeRA9CY
                        firstName: Jessica
                        lastName: Alba
                        fullName: Jessica Alba
                        publicIdentifier: jessica-alba
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQHRZHb3ONfjgg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1629317857965?e=1761782400&v=beta&t=RaMCgD0DeZkTv4_rSWz8wW_UU9ynCP1JDT8gTNwdnN0
                        creator: true
                        followerCount: 1752709
                      - urn: ACoAABomnXwBP1qpgBuYk7gg5NklEC2q0sLcxB4
                        firstName: Katie
                        lastName: Couric
                        fullName: Katie Couric
                        publicIdentifier: katiecouric
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFCNvW4wex3Lw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1707158724401?e=1761782400&v=beta&t=KGgQVIyHFfkZ4mmQxw3XoLcGZt5D0oAfuPOzaiv3A-M
                        creator: true
                        followerCount: 644465
                      - urn: ACoAAABZZSMBqi1xp8AIp57zWxb-dVDhJKGePeQ
                        firstName: James
                        lastName: Altucher
                        fullName: James Altucher
                        publicIdentifier: jamesaltucher
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQHcZjk1rg0PRw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1548269838014?e=1761782400&v=beta&t=lSC1UwYH8ybC-BDQwugYJNrmFcFzIzEmNVsGNJG1uyw
                        creator: true
                        followerCount: 1166047
                      - urn: ACoAAAwcWG4Bky_JZID2EMKKwQDe45swVo7UWWE
                        firstName: James (Jim)
                        lastName: Citrin
                        fullName: James (Jim) Citrin
                        publicIdentifier: james-jim-citrin-57a06758
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQHHn0G3fR8pJQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1581965694480?e=1761782400&v=beta&t=-vEUJe2I_SIoC-a0C3Zlyowwn8kzq4J8iFYrXuzGVpg
                        creator: true
                        followerCount: 937223
                      - urn: ACoAAAAUPCsByjo5pxb3QP-ZETmGWaGl_2Os0JI
                        firstName: Fadi
                        lastName: Ghandour
                        fullName: Fadi Ghandour
                        publicIdentifier: fadi-ghandour-52353b
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQHxCDdhBjdj6Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1721220983165?e=1761782400&v=beta&t=yW-dJOxpfeQ_VEBpLtWaZSnRBt5aaITZMU71h-4fHyM
                        creator: true
                        followerCount: 723678
                      - urn: ACoAAABNVj0BFGHyshoTwNkq9n1HNf36II_Czn0
                        firstName: Dorie
                        lastName: Clark
                        fullName: Dorie Clark
                        publicIdentifier: doriec
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5103AQF4W2lVcVBxTA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516326560107?e=1761782400&v=beta&t=rVJSCaaBBWciWompqAcD4N6_XJ17RTDvRx3MdNZg7A4
                        creator: true
                        followerCount: 369264
                      - urn: ACoAAClRyoIBI02_VhQ3U0vXWl7cc-iEsgA8iBk
                        firstName: Jennifer
                        lastName: Lopez
                        fullName: Jennifer Lopez
                        publicIdentifier: thejlo
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQHAQDTVGt710Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1590075552667?e=1761782400&v=beta&t=ngFa3IXQWOv_ZVtPLoHPCnWoWieNOGCz0W07Bsvw75w
                        creator: true
                        followerCount: 429394
                      - urn: ACoAAAACAAcBVexPqZ1rx-Rai3VQO9iU7FjPRDU
                        firstName: Josh
                        lastName: Bersin
                        fullName: Josh Bersin
                        publicIdentifier: bersin
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFmn_t8yK5veA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1697557754253?e=1761782400&v=beta&t=u0YCbOEEOgg5IyNRfgWixUjhnRWYPNfh5I2XNo154C8
                        creator: true
                        followerCount: 956687
                      - urn: ACoAAAAXPtkB9TGjuEsfcXgmxz-mvVw1XzE2sBc
                        firstName: Mohak
                        lastName: Shroff
                        fullName: Mohak Shroff
                        publicIdentifier: mohakshroff
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEbxUUNCBdEyg/profile-displayphoto-crop_800_800/B56ZhXOG0CH0AU-/0/1753809972767?e=1761782400&v=beta&t=cWOjCHKutO1JkRrM9OX3Qvytt5sP0wv_hrMK_05Pfio
                        creator: false
                        followerCount: 0
                      - urn: ACoAAAGI2QsBpHnmRCzehjNYa2ToYaR0jJx-Gk4
                        firstName: Ron
                        lastName: Shaich
                        fullName: Ron Shaich
                        publicIdentifier: ronshaich
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFREJmz9s9CrA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1688069257146?e=1761782400&v=beta&t=M9BuGXNkSl0mJruiXIsqaSLGHFDZ1nh-pWNItjnT4JE
                        creator: true
                        followerCount: 240975
                      - urn: ACoAAABEkP0Bop3I1UvNwpW6A8p9o7rqSjSYvk8
                        firstName: Dr. Hsien-Hsien
                        lastName: Lei
                        fullName: Dr. Hsien-Hsien Lei
                        publicIdentifier: hsienlei
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFJq9N-q_6eCQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1723128175272?e=1761782400&v=beta&t=4XzfSTukQcXo-oTBHb111NgR5OIx5bNz4IEBi5f_U9Y
                        creator: true
                        followerCount: 17335
                      - urn: ACoAAAACowsB9mPZMzHSJRzM2hFpn9S1Ns6lU6Y
                        firstName: Nancy
                        lastName: Duarte
                        fullName: Nancy Duarte
                        publicIdentifier: nancyduarte
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQHmQY7-wtPmSw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1564458172790?e=1761782400&v=beta&t=kq6MkA3wBegCIU935SqA9MBDi0EPuLEhhY7bffRls5c
                        creator: true
                        followerCount: 214320
                      - urn: ACoAAAAD5_wBRMQ5lHrDzxGomqjRzjZcbBGGwfU
                        firstName: Lynda
                        lastName: Weinman
                        fullName: Lynda Weinman
                        publicIdentifier: lyndaweinman
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQHlx1Hm_pdJTA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1516188017863?e=1761782400&v=beta&t=UxITr9nyhnXmAM7xe3mr1JYc1QbGf7ZutPG9JZpzcxU
                        creator: true
                        followerCount: 99560
                      - urn: ACoAAAUDxAYB6OFIFBpNhV-afIni1v4jBVx2ejg
                        firstName: Nikhil
                        lastName: Kamath
                        fullName: Nikhil Kamath
                        publicIdentifier: nikhilkamathcio
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQH7ELRLBZNGow/profile-displayphoto-shrink_800_800/B56ZVp0aAKGsAc-/0/1741237101042?e=1761782400&v=beta&t=LGeQJ4XvM0lF7iw07kJMgwZktwszlPKoUUKornsXDRM
                        creator: true
                        followerCount: 1368898
                      - urn: ACoAABAkIqcBTdNVYPXdjiIPOUV8rT5j4TTieko
                        firstName: Larry
                        lastName: Fink
                        fullName: Larry Fink
                        publicIdentifier: laurencefink
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQExq_f6lVhuxg/profile-displayphoto-shrink_800_800/B4DZYXCzSyGwAg-/0/1744143334504?e=1761782400&v=beta&t=1yoJ8qdqEJGjXYSwb8C-ksBYdCG_yy5Qi4k3zTa0pls
                        creator: true
                        followerCount: 1202421
                      - urn: ACoAAE6FVtYBAW4bP82g1IhIHxzu_1J010WU3CQ
                        firstName: 'Sundar '
                        lastName: 'Pichai '
                        fullName: 'Sundar  Pichai '
                        publicIdentifier: sundarpichai
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFrmDuWUxQoMg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1715645354620?e=1761782400&v=beta&t=1n80DHz1YAKnnpHXrbzfov0jhY7py_oA6tCR3o5_INo
                        creator: false
                        followerCount: 2094191
                      - urn: ACoAAAExb3oBvEbyXu5LzgcGj6bwqeCFXUtvEA8
                        firstName: Jeff
                        lastName: Haden
                        fullName: Jeff Haden
                        publicIdentifier: hadenjeff
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQE7hLtddj353Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1517701266546?e=1761782400&v=beta&t=oAY7ui-aeZUyVJUiJewcHAzW-Q99BBKuCzfetmP2Qvo
                        creator: true
                        followerCount: 1001422
                      - urn: ACoAACpOUIkBXeJEQv1ROyEsSL4jyN0_iauDDOQ
                        firstName: Robert
                        lastName: Griffin III
                        fullName: Robert Griffin III
                        publicIdentifier: rgthree
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHnft4SWfv4Vw/profile-displayphoto-crop_800_800/B56ZfsEHH9IAAI-/0/1752012192111?e=1761782400&v=beta&t=DmD5ITjVLbPo5TEA6zneG9tUf2eD-14jx1v1j9zw4p8
                        creator: true
                        followerCount: 275099
                      - urn: ACoAAAAGW4gBv7bRB1TmDXnXwehTA41M4M5qDcU
                        firstName: Kai-Fu
                        lastName: Lee
                        fullName: Kai-Fu Lee
                        publicIdentifier: kaifulee
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5103AQGTMzZtRLM8mQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1539756652349?e=1761782400&v=beta&t=jdlnrpRYogKBYI8pjzRofvtqJLEgNInjn9lNWTzxrtY
                        creator: true
                        followerCount: 883498
                      - urn: ACoAAAIyOWgBJsNreh6KLFZOVSCMwzs7KdlzLNQ
                        firstName: Malcolm
                        lastName: Turnbull
                        fullName: Malcolm Turnbull
                        publicIdentifier: malcolmturnbull
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEUWMzlDRjqjg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1697030113616?e=1761782400&v=beta&t=w1favQZEwkDNv5dp6S_GR86GfaUh-JyM6YugKXPgLHU
                        creator: true
                        followerCount: 227298
                      - urn: ACoAAAuu0qcBWYrfMX5VQ9pnN_-Uf6BfneOaszs
                        firstName: Jo Ann
                        lastName: Jenkins
                        fullName: Jo Ann Jenkins
                        publicIdentifier: joannjenkins
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQEeDFZKRAAGhQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1590676520565?e=1761782400&v=beta&t=l5qEtEmmrOsZUSDbyHyOH8uxR_NYkQCDQ-EzmgWRy9U
                        creator: true
                        followerCount: 141935
                      - urn: ACoAABs_W_0Brpe8LeZ8x2HdzU8XJgBTlh8_-gg
                        firstName: Saira
                        lastName: Malik
                        fullName: Saira Malik
                        publicIdentifier: saira-malik-b65116109
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEq_L9qFBlTKw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1680543115289?e=1761782400&v=beta&t=Za27b7eMltBYz7MvFALn69LoxjIt-ml8vCI6t_xnKmU
                        creator: true
                        followerCount: 74609
                      - urn: ACoAAB6aagcBP888CPp-vRvGl2oV2NrOWxkcc3M
                        firstName: Jeffrey
                        lastName: Katzenberg
                        fullName: Jeffrey Katzenberg
                        publicIdentifier: jeffrey-katzenberg-4b3b47123
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQFa-JY93GzySg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1648764131899?e=1761782400&v=beta&t=kUMSGAv3XVtqd1fRzdNFxyAapgfbhNxtorUa1w3rM-I
                        creator: true
                        followerCount: 33348
                      - urn: ACoAAAfwaUEB0ONThv46gMexVDy66mZm1C1azn0
                        firstName: Donna
                        lastName: Orender
                        fullName: Donna Orender
                        publicIdentifier: donnaorender
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQH-2ijgSyxU9w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1527188205765?e=1761782400&v=beta&t=WJjIsiVMlraabtQJA35VYo_miMGDfXQQDo_5_8K2ZzQ
                        creator: true
                        followerCount: 10882
                      - urn: ACoAAAEIqbQBlvOgUS0mIN8jT-SlpNuzX9AaDLE
                        firstName: Michael
                        lastName: Gervais
                        fullName: Michael Gervais
                        publicIdentifier: drmichaelgervais
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQH1OzuTvoKqdw/profile-displayphoto-crop_800_800/B56ZfG5LqdHEAQ-/0/1751388568602?e=1761782400&v=beta&t=0jolwTKib-KKhJRJ7ef05JL2hU0kqvNs0b_2zHJ96Zc
                        creator: true
                        followerCount: 76524
                      - urn: ACoAAD1I64MBhTfVwtFOtPSqFW631dm3aHsME2A
                        firstName: Ash
                        lastName: Barty
                        fullName: Ash Barty
                        publicIdentifier: ash-barty
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQEvRlbsEmkYLA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1729509757173?e=1761782400&v=beta&t=Emcf4Qg1SXrhVV_wf4EGmX2uI6zYtuLYHomx_Q54j_U
                        creator: true
                        followerCount: 110169
                      - urn: ACoAAACfvEkBLQ1odvPdNDbrbBctE1kulGddsSI
                        firstName: Kristina
                        lastName: Hooper
                        fullName: Kristina Hooper
                        publicIdentifier: kristina-hooper-
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEGGqR-nOOZWQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1689966579907?e=1761782400&v=beta&t=q63HAEOu8-Be8WdAyOebnRtvp54A3FiXb8i4wmYLfqQ
                        creator: true
                        followerCount: 157987
                      - urn: ACoAAABFrWYBPWjH8YnQ_WntqnKmxCqlHh6jT6s
                        firstName: Carrie
                        lastName: Schwab-Pomerantz
                        fullName: Carrie Schwab-Pomerantz
                        publicIdentifier: carrieschwabpomerantz
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHrSsdjyI1BVw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1691527434631?e=1761782400&v=beta&t=sEhGj_FZiHnv6qYuFQ5nld-LsQGm5cjF6kLLEvwec0E
                        creator: true
                        followerCount: 474458
                      - urn: ACoAABRP0tMB_XPhseWJi7qHlfQFroVXgnkvImk
                        firstName: Somi
                        lastName: Arian
                        fullName: Somi Arian
                        publicIdentifier: somiarian
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQF5wuYhMSH8EA/profile-displayphoto-crop_800_800/B56Zl2NFrCKMAI-/0/1758624767501?e=1761782400&v=beta&t=iEDxvlGoX17M0HOnhmcBQsHPFHO2-_NbUIUC13Dak_k
                        creator: true
                        followerCount: 86144
                      - urn: ACoAAAAGVOsB1cVPoExB1V4KcRPRc5ZCDAIVAo4
                        firstName: Jocelyn
                        lastName: Mangan
                        fullName: Jocelyn Mangan
                        publicIdentifier: jocelynmangan
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGoy3g_JTXR6A/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1704480444171?e=1761782400&v=beta&t=992xE0CMZJxjE4IZCpAz_JHYroXqgeMt5VE2ElUE9bk
                        creator: false
                        followerCount: 0
                      - urn: ACoAABsD8gcBBL_FDx_mt6odFK54YAtaTNlb0Mk
                        firstName: Oprah
                        lastName: Winfrey
                        fullName: Oprah Winfrey
                        publicIdentifier: owinfrey
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQFIGlMnMVBkMA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1517400053659?e=1761782400&v=beta&t=edKbTI9Bsyv5IFblx1hka-SnBQFqW_nVCEo7hsARk_k
                        creator: false
                        followerCount: 1329976
                      - urn: ACoAAAFOIEABvorcKWuzqc2UEq2NqEIdbrlgMNc
                        firstName: Antonio
                        lastName: Grasso
                        fullName: Antonio Grasso
                        publicIdentifier: antgrasso
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQECWa_Oi6US6A/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1698399399307?e=1761782400&v=beta&t=yrgq-lme9mNqQ8lf8Ns8xgqh-0z6W4n__u0xw1im4O0
                        creator: true
                        followerCount: 38670
                      - urn: ACoAACrtVekBaM0WZR_a-ep1GRLOIBof8ZfS6vs
                        firstName: Sara
                        lastName: Blakely
                        fullName: Sara Blakely
                        publicIdentifier: sarablakely27
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFdkVX2hASUIg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1724156376228?e=1761782400&v=beta&t=X7qZ2FcwzQyf2FajEMXIKyJpsalh7f6CbSDPWn2N8Fw
                        creator: true
                        followerCount: 2313885
                      - urn: ACoAAAFKYrUBRG416O57WxLFVw8Syh6o9Wz8jGQ
                        firstName: Andrew
                        lastName: MacAskill
                        fullName: Andrew MacAskill
                        publicIdentifier: jobsearchcoach
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGRkGL3PbMMaQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1708706084462?e=1761782400&v=beta&t=CGQBK0T3JqqzGM6szgRjM44LZ0atH96ohMNShumUQCg
                        creator: true
                        followerCount: 111729
                      - urn: ACoAAACGC_8BWsHWisrF8Ay7NWxtRCVV2mLBRWU
                        firstName: Anneliese
                        lastName: Olson
                        fullName: Anneliese Olson
                        publicIdentifier: annelieseolson
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGx-GcR5W-pEQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1644172340666?e=1761782400&v=beta&t=ilxvCVspp1xLjfXWArp-DbF2AWU23pNNwg46_O0faaE
                        creator: false
                        followerCount: 0
                      - urn: ACoAAAF1JqABieLGKVZ1LHvuyc5720GBNOdABdc
                        firstName: Laszlo
                        lastName: Bock
                        fullName: Laszlo Bock
                        publicIdentifier: laszlobock
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHokZJlpZ6USg/profile-displayphoto-shrink_800_800/B56ZPwdMnzGQAc-/0/1734906007002?e=1761782400&v=beta&t=cZRzfYeC_J9BNEF34dpfAJVWX_uAHewxS0BGpmZatuY
                        creator: true
                        followerCount: 1002146
                      - urn: ACoAAAAi_ZQB2p7HySGWhzg0MuK3dIaJHTkxUOo
                        firstName: Brian
                        lastName: Solis
                        fullName: Brian Solis
                        publicIdentifier: briansolis
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQG4xEXg0Km6cQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1679341835368?e=1761782400&v=beta&t=9GyAa2qLmiVAi1G-KBxDIpXmyjzcFub9WpG6hYppW2c
                        creator: true
                        followerCount: 364949
                      - urn: ACoAAAAAf9ABwJ6ytqHDwtMeoR2Rhb-1UPd8zvI
                        firstName: Loic
                        lastName: Le Meur
                        fullName: Loic Le Meur
                        publicIdentifier: loiclemeur
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQHqjqjJGeE4xQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1718235256812?e=1761782400&v=beta&t=QHrQN3wvy10-FAPxf0-5abcvGcklwubaljmY6tqhlAo
                        creator: true
                        followerCount: 419338
                      - urn: ACoAAC4YFqMBVZCaz7pZKi_Nd-9mDkmT-ccWpn8
                        firstName: Dr. Arthur
                        lastName: Brooks
                        fullName: Dr. Arthur Brooks
                        publicIdentifier: arthur-c-brooks
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGb72wxHhYiXQ/profile-displayphoto-crop_800_800/B56Zf5lxn_HUAQ-/0/1752239119258?e=1761782400&v=beta&t=My-pkJWRi9agySprsIaCkPQqC8bTkhHB9tm3K7y-v4U
                        creator: true
                        followerCount: 74904
                      - urn: ACoAAACsJR4BWJlhUjOZMmHu54vpp1Dvv0qCHQk
                        firstName: Michael
                        lastName: Fertik
                        fullName: Michael Fertik
                        publicIdentifier: mikefertik
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQFz005a2-qvgw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1631549884407?e=1761782400&v=beta&t=FIqlmu-Tw0bKgpEU8R7ioWy7uWThezCssqibcpIBYGI
                        creator: true
                        followerCount: 129346
                      - urn: ACoAAAFDkOQB-lVJLeyJf0jSemI8lXQh1RE5XYw
                        firstName: Dave
                        lastName: Ricks
                        fullName: Dave Ricks
                        publicIdentifier: davearicks
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQFkhjqcLwascA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1516306721833?e=1761782400&v=beta&t=RekoD5AKzDCYpzak1mxClOKpC0EA9Ukp-UYQ6JFqN-8
                        creator: true
                        followerCount: 102108
                      - urn: ACoAAAEDZrwB24pP0XqwBYbLXNd3Fxng-COV3qI
                        firstName: Jeff
                        lastName: Selingo
                        fullName: Jeff Selingo
                        publicIdentifier: jeffselingo
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQF4dBqn-6en0Q/profile-displayphoto-shrink_800_800/B4EZa9fxM9HMAg-/0/1746935944297?e=1761782400&v=beta&t=Jw4w6TTyWoCJVJYrZ99HxFoSNZ0OSEr5aJD39xeYg9U
                        creator: true
                        followerCount: 597256
                      - urn: ACoAAAAFEZMBSEaOfaRDIdwyXcac-VxvcIez4e0
                        firstName: Christopher
                        lastName: Elliott
                        fullName: Christopher Elliott
                        publicIdentifier: christopherelliott
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQFylbfltWkUQQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1659427961180?e=1761782400&v=beta&t=6md8gHWXRAEmtDJbjqm1QqWSev_6yS3Nd1zKWOKZ4P8
                        creator: true
                        followerCount: 333810
                      - urn: ACoAAAANhhYBVSObc8qDXhBr0e3MDEQcjI8UAfI
                        firstName: Tom
                        lastName: Bedecarré
                        fullName: Tom Bedecarré
                        publicIdentifier: bedecarre
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQF0cZJjmWAJzw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1546382129396?e=1761782400&v=beta&t=DvB3UD6iR1iGL8W-7yUzBR19t1PdaG92OlYLJnsNsG4
                        creator: false
                        followerCount: 79715
                      - urn: ACoAABQPtEABbQEtTZLU6ToK5mNsvzEYa3BtPSU
                        firstName: Rachael
                        lastName: Higgins
                        fullName: Rachael Higgins
                        publicIdentifier: rachael-higgins-becauseofmarketing
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGdeDC5ZozGoQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1718745375573?e=1761782400&v=beta&t=jEYTkU4QItu6HgXEhWsSliiBAOU_Lp1vY8UkKM1YL2g
                        creator: true
                        followerCount: 108900
                      - urn: ACoAAABWhfIBwUr0AOHFGxxJ6iwMIv_j-BqL4zA
                        firstName: Jonah
                        lastName: Berger
                        fullName: Jonah Berger
                        publicIdentifier: j1berger
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5103AQHaLd0edWPThA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516362709442?e=1761782400&v=beta&t=_z2neDp5PV7Fj-FFgnO7R2ze06xi25RP2x2AKVDfjBg
                        creator: true
                        followerCount: 221671
                      - urn: ACoAAAFa9ggBrrsaw5MFpYeJA5EuiV89izxDht0
                        firstName: Dana P
                        lastName: Goldman
                        fullName: Dana P Goldman
                        publicIdentifier: danapgoldman
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQH7TJJBW9R74Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695557107236?e=1761782400&v=beta&t=3amqaSEK6zNpxwNhm8nJb5Zxft91myECotclBH5iuq8
                        creator: true
                        followerCount: 67714
                      - urn: ACoAABkbm-0Be4xxSTDslQoX9c9qcRoExoNAGWk
                        firstName: John
                        lastName: Kraski
                        fullName: John Kraski
                        publicIdentifier: johnkraski
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGYvWuOgSVBBw/profile-displayphoto-shrink_800_800/B4EZRfrbJ0GcAg-/0/1736772006887?e=1761782400&v=beta&t=0UbcDdMvCiWivUtTZyz1qDzT7LeGQHBduAD6TIZdc5k
                        creator: true
                        followerCount: 111467
                      - urn: ACoAAA8BYqEBCGLg_vT_ca6mMEqkpp9nVffJ3hc
                        firstName: Bill
                        lastName: Gates
                        fullName: Bill Gates
                        publicIdentifier: williamhgates
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQF-RYZP55jmXA/profile-displayphoto-shrink_800_800/B56ZRi8g.aGsAc-/0/1736826818808?e=1761782400&v=beta&t=L7SgZIFi1sIUoihJVpoAZ41WC99zQrlPL-UICrhcQFM
                        creator: true
                        followerCount: 38840974
                      - urn: ACoAABKAUYcBIkfl70_BdU6EEAVG-lqRWidSbjk
                        firstName: Chloe
                        lastName: Shih
                        fullName: Chloe Shih
                        publicIdentifier: chloe-shih
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHEzahByyg-jA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1728334413271?e=1761782400&v=beta&t=8PG0u1T85kpjewQqlWeV-lD5rKKbEqvM4T51zvbqDAM
                        creator: true
                        followerCount: 149214
                      - urn: ACoAAA9bEmIB505jy23F60yunQazd05Ge2fR8D0
                        firstName: Jamie
                        lastName: Dimon
                        fullName: Jamie Dimon
                        publicIdentifier: jamiedimon
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQFvg6D5s1Y45Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1589887698145?e=1761782400&v=beta&t=aNpEXwugM2Lsf_HTmbv3jhWyh8P0yG__auyavNxLhE8
                        creator: false
                        followerCount: 1623946
                      - urn: ACoAAABGGoABtGGICKdFwALCrSipphlV7r54Mlo
                        firstName: Dan
                        lastName: Schawbel
                        fullName: Dan Schawbel
                        publicIdentifier: danschawbel
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQEpIjuzWOwFsA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1625185140075?e=1761782400&v=beta&t=cyp5kZnxuU4ZUJoiHMmaoKJr25Ef-78TjYqbNjnX4yY
                        creator: true
                        followerCount: 169642
                      - urn: ACoAAADpMnwB8H7bqOP0EwWEwTYAc_5OgxoeXnQ
                        firstName: Melanie
                        lastName: Nakagawa
                        fullName: Melanie Nakagawa
                        publicIdentifier: melanie-nakagawa-2781505
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQGh5oRzAKwXIg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1517729191092?e=1761782400&v=beta&t=KxL8dPBTSw44DZfrptg1kqk2-WN1eo8bnratTKrm2Rw
                        creator: true
                        followerCount: 91625
                      - urn: ACoAAAKtByABecW_l5mGGL1sn7BFlE14MHEpnAo
                        firstName: Ilham
                        lastName: Kadri
                        fullName: Ilham Kadri
                        publicIdentifier: ilham-kadri
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQHpIG-Kb0rOJQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1708015825751?e=1761782400&v=beta&t=AautPkpXQmOQRz4pmaedK5nXsyPeDpQE58AlmanH8AU
                        creator: true
                        followerCount: 164587
                      - urn: ACoAAAA0GPEBRubIVUIMjLUeDhkskoVUYEx8EV8
                        firstName: Whitney
                        lastName: Johnson
                        fullName: Whitney Johnson
                        publicIdentifier: whitneyjohnson
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQGQ6tSqGMRl_g/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1663341928721?e=1761782400&v=beta&t=oLYbQj5rDyA6GIzSGM7fQ4F9d2TEdPtMSxQ3-sGDNPM
                        creator: true
                        followerCount: 1680729
                      - urn: ACoAAAAAQKUButMb1DQgEIs_H0rucUM5Wn-cFHk
                        firstName: David
                        lastName: Kirkpatrick
                        fullName: David Kirkpatrick
                        publicIdentifier: davidkirkpatrick
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGx3b3L5H-m2Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1674275508494?e=1761782400&v=beta&t=JsAb_LxhefvTpYDH6Nl5T86txmLIAd6dDJ5eaUkhPwo
                        creator: true
                        followerCount: 118020
                      - urn: ACoAAAAAa8YBj2X_mC6ovnZB6DUm5fmETE15UTQ
                        firstName: Kara
                        lastName: Swisher
                        fullName: Kara Swisher
                        publicIdentifier: kara-swisher-b7213
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQEsarhLstDp7g/profile-displayphoto-shrink_800_800/B4EZdmEZHRGcAc-/0/1749764117277?e=1761782400&v=beta&t=vvzY2aYg2TwIxIVSL1lGgmqEkahBJW5ccr3OXBPd8hA
                        creator: false
                        followerCount: 43515
                      - urn: ACoAAAAIgnoBSQKYiNnYlNgVtqfqik5TW2AQkgQ
                        firstName: Santiago
                        lastName: Iniguez
                        fullName: Santiago Iniguez
                        publicIdentifier: siniguez
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQFhmboPVpPChA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1726079006539?e=1761782400&v=beta&t=7tOPku72tnuBlp_qfHyZZ68ZCmnIyM97mga73IocR-c
                        creator: true
                        followerCount: 167839
                      - urn: ACoAAAwawi0BML0iBiyQ4mGsqlvmgtH2drumUk0
                        firstName: Marcus
                        lastName: Samuelsson
                        fullName: Marcus Samuelsson
                        publicIdentifier: marcus-samuelsson
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5103AQEAOQaCMMlNsA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1517008309350?e=1761782400&v=beta&t=5XoAPBsdFutdczVHghXHl2WffIEs_CjDF1hVpaf6N9I
                        creator: true
                        followerCount: 234994
                      - urn: ACoAADT-ngQB8pH3ogrfn0H0xC7J8se7OQ-v32E
                        firstName: 'Odell '
                        lastName: Beckham Jr.
                        fullName: Odell  Beckham Jr.
                        publicIdentifier: odellbeckhamjr
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQEIV5UroBm3ZA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1656536090022?e=1761782400&v=beta&t=gNMp10cLF99_C4lp8Q1nSgoQr2pTXHHRdfDfe0XSsak
                        creator: true
                        followerCount: 77332
                      - urn: ACoAACS_iBMBJxlfR5Sfr08qVK6GXb5YQhoA1PM
                        firstName: Stephan
                        lastName: Winkelmann
                        fullName: Stephan Winkelmann
                        publicIdentifier: stephan-winkelmann
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQHayF2VJhVgpQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1670856094971?e=1761782400&v=beta&t=Z0_458qPz84ETsfxScESeFNG1Hd-SWufh9WT5BD-ob0
                        creator: true
                        followerCount: 462274
                      - urn: ACoAAAACqqQB8mBKcO9obmhEiTrZBZ7SZulrRBc
                        firstName: Noam
                        lastName: Bardin
                        fullName: Noam Bardin
                        publicIdentifier: noambardin
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGoZ6xuAmMlbA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1723473404829?e=1761782400&v=beta&t=xzv7CzoTLymNvU8A9UI2auDR_ur-68ar-fe9onUEQM4
                        creator: true
                        followerCount: 241976
                      - urn: ACoAAAGDUYQBPGc74zfKDMljpzdVjzAz_eBUjcI
                        firstName: Michael
                        lastName: Dell
                        fullName: Michael Dell
                        publicIdentifier: mdell
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQG5TPXqcvwX2g/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1517725438397?e=1761782400&v=beta&t=Gli_pcsIr3RkS_zdZU3sdVODzwleJjxN38kaxnbOoD0
                        creator: true
                        followerCount: 1947821
                      - urn: ACoAAA_En28B4WRRkaAohFSqrk0cFnG1lbdxLxI
                        firstName: Barbara
                        lastName: Corcoran
                        fullName: Barbara Corcoran
                        publicIdentifier: barbaracorcoran
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQEw2sxjHFLW5w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1600788895731?e=1761782400&v=beta&t=FG5I_sYzOeMzaH_WBGtg89Ol7bVyQLYsBEmzzvJeV0U
                        creator: true
                        followerCount: 1631571
                      - urn: ACoAAACtDwIByWt_xXqBeMaOHEystrCubW5LL00
                        firstName: Heather
                        lastName: Elias
                        fullName: Heather Elias
                        publicIdentifier: heatherelias
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQGLBZ4d3tQtbw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1645027116171?e=1761782400&v=beta&t=1_BO9tKWluYoQxldODtojoYPTUImTarRHAAgx3iF9YQ
                        creator: true
                        followerCount: 742105
                      - urn: ACoAAAJHadoBHwpl-PEAa6sa5QZys_FP0rmOBBY
                        firstName: Clark
                        lastName: Wolf
                        fullName: Clark Wolf
                        publicIdentifier: clark-wolf-5b697a10
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQG35l7FafEnnA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1517736620317?e=1761782400&v=beta&t=30T_u8xjfpi1tZdJWhHBLl6AW33piZF_6ky-ElpKp6E
                        creator: true
                        followerCount: 383937
                      - urn: ACoAAAHv9QwB1NxSH3DzVqCerF1D3TiXG6W2P2M
                        firstName: Mike
                        lastName: Bloomberg
                        fullName: Mike Bloomberg
                        publicIdentifier: mikebloomberg
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQGN_p1IGqoAMA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1605619247378?e=1761782400&v=beta&t=079u2Fl4YXKQoDOFkY0G025eS9nLpHzLh_qIUi_fWoY
                        creator: true
                        followerCount: 2728291
                      - urn: ACoAAAi3_EEBnUrgI0jraC2bBIOfgN0QETNY7C4
                        firstName: Liz
                        lastName: Fosslien
                        fullName: Liz Fosslien
                        publicIdentifier: liz-fosslien
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQEc7EVbvsuQrQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1649195396417?e=1761782400&v=beta&t=V84OT0o_wmPjVHx-xb-W2K_Bmz7qOKqrjlHkGI4j8nw
                        creator: true
                        followerCount: 182070
                      - urn: ACoAAA0Xh1YBjpBQvVGASNO9VqaxjhSzoSPE5a0
                        firstName: Patrick
                        lastName: Collison
                        fullName: Patrick Collison
                        publicIdentifier: patrickcollison
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQF87s-bD1PjDw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1639336707466?e=1761782400&v=beta&t=SWsUa_RcA5xb_eNpA1EewFju07oxkJOHjXd8FYIgBLg
                        creator: false
                        followerCount: 36890
                      - urn: ACoAAFjWuM4B3W_0kjPHh3bqdq4oWGG_8EvAYQ4
                        firstName: Harvey
                        lastName: Schwartz
                        fullName: Harvey Schwartz
                        publicIdentifier: harvey-schwartz
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQFdU6OiOfilBQ/profile-displayphoto-shrink_800_800/B4DZWpkimGHkAc-/0/1742306683806?e=1761782400&v=beta&t=fkqBr1---FHN75ne_DwU3CRaQant1ASeLX6zHH0MrV8
                        creator: false
                        followerCount: 16186
                      - urn: ACoAAAAXP8UB4_GzJNUYcEDdAM6IBQNKZYe-WOU
                        firstName: Andy
                        lastName: Jassy
                        fullName: Andy Jassy
                        publicIdentifier: andy-jassy-8b1615
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGSl0b1ZCh2sQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1631724420241?e=1761782400&v=beta&t=6JEMP-GdyNesypxc3CCsIDGb6TWhdej78STpXASrn8Y
                        creator: true
                        followerCount: 974446
                      - urn: ACoAAAARQ5QBNr_sthvLd4THpuV910cPaooFF7Y
                        firstName: Donna
                        lastName: Morris
                        fullName: Donna Morris
                        publicIdentifier: donnamorris2
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGm0n9WszhPaw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1698432872869?e=1761782400&v=beta&t=LLVsfDD9_DrMW1UqHdTfkKK_epOXBTAC-kBGuT_r1Ok
                        creator: true
                        followerCount: 102929
                      - urn: ACoAAAl1PFMBA_2rzdwM_cJNkNlBbhS8wapXVN0
                        firstName: Dirk
                        lastName: Hahn
                        fullName: Dirk Hahn
                        publicIdentifier: dirkhahnhays
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQE6lwnyFdbZgA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1692885110873?e=1761782400&v=beta&t=bFTeF_1XuFofXjHvvMJbzCQjI0Xf5l627OAHwTD6imA
                        creator: true
                        followerCount: 24149
                      - urn: ACoAAAAB8uIBkRPa54_fWhQc2C5o6xZidVirNRQ
                        firstName: Joel
                        lastName: Makower
                        fullName: Joel Makower
                        publicIdentifier: makower
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGz2K_vzr40Rg/profile-displayphoto-shrink_800_800/B56ZQaG6ayGsAc-/0/1735604807560?e=1761782400&v=beta&t=wzcWyR6-gykyxDuaBsCOz0lcEFs3-TGV9MMkYsODwvA
                        creator: true
                        followerCount: 121895
                      - urn: ACoAAAJubY8BqlwKdD7KDhcqWBRE_rVNVHbiG3c
                        firstName: Rajiv
                        lastName: Kumar
                        fullName: Rajiv Kumar
                        publicIdentifier: rajivk-ms
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQE8GP8oG1UECg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1568013879724?e=1761782400&v=beta&t=D9idJFUwS5dy8u-KQPAxcFW3b_Lo72pHD6oidekHq5Y
                        creator: true
                        followerCount: 71283
                      - urn: ACoAAAsrfQkBv0ZQPIqbrJI8Xnuoe7DfzGsoQIc
                        firstName: John
                        lastName: Donahoe
                        fullName: John Donahoe
                        publicIdentifier: john-donahoe-8b591452
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGDFVfh7BnzgQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1579277472331?e=1761782400&v=beta&t=cailNlnCe-YNuzW9Rv5YAixFEJ8OYbugVPsZ4WcVs0U
                        creator: false
                        followerCount: 289109
                      - urn: ACoAAAob47kBe5sgpgkWp2niMiiDT8CCCnp2HyU
                        firstName: Gavin
                        lastName: Newsom
                        fullName: Gavin Newsom
                        publicIdentifier: gavinnewsom
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQFfsDfb7K5ewA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1588964902978?e=1761782400&v=beta&t=TtoEwwb_X0yfZvUUuiEg_QbdrW9We9dgQ8euN3CuYog
                        creator: true
                        followerCount: 93183
                      - urn: ACoAAABSh6cBCDn4y6a_PZ32zhnrEhI5Y5kpD4g
                        firstName: Nicholas
                        lastName: Carlson
                        fullName: Nicholas Carlson
                        publicIdentifier: nicholasmcarlson
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFQLSHP6sI8Xw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1730405089410?e=1761782400&v=beta&t=VS-Fgpe9A2-gDItd4SbME9C-cpHQ8UWBsAV_phxwZWc
                        creator: true
                        followerCount: 43020
                      - urn: ACoAABTEMg8Bn2yqo8poXI0HO9QpS0X6-M3Gxuo
                        firstName: Judy
                        lastName: Smith
                        fullName: Judy Smith
                        publicIdentifier: judyasmith
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFPLx64lwJmUQ/profile-displayphoto-shrink_800_800/B56ZSyQJcqHEAc-/0/1738157365375?e=1761782400&v=beta&t=6212wv_fjfmo6D5ovCF8D_cwwGgdsj1UlXwL0-9Ejuw
                        creator: false
                        followerCount: 80736
                      - urn: ACoAABHDi_ABodsadw80SNE1ACE4Iz8gH3tAbzQ
                        firstName: Tory
                        lastName: Burch
                        fullName: Tory Burch
                        publicIdentifier: toryburch
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQFFOKnwJf0png/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1613684596697?e=1761782400&v=beta&t=1tgSr9UYDsgBOQUwgwHu0nGpFwsvFSfMyCAaBY2emuA
                        creator: true
                        followerCount: 182880
                      - urn: ACoAAAAAB6MBzV2ncd9FdZwASjTdhJp4itw-sqk
                        firstName: Rufus
                        lastName: Griscom
                        fullName: Rufus Griscom
                        publicIdentifier: rufus-griscom-16b1
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQFfsBJNoJqycw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1645617018791?e=1761782400&v=beta&t=FFG696KRod69ZwbEo41MpbNn0urPLC4oQLxWFDnnQJU
                        creator: true
                        followerCount: 15794
                      - urn: ACoAAAHzAOYBsvHOzlpzgjCNIS8kMTek1itMPrk
                        firstName: Jim Yong
                        lastName: Kim
                        fullName: Jim Yong Kim
                        publicIdentifier: jimyongkim
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQFMq2U7AXrXyw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1548953679617?e=1761782400&v=beta&t=0iu87CpYE_uzFaVDVtt7cU75tOUI1yhnEGcDYuFZlbI
                        creator: true
                        followerCount: 1946183
                      - urn: ACoAAAAJUtgBMhLeVBdN67dVWi1p1oY2MUuy2nQ
                        firstName: Dave
                        lastName: Kline
                        fullName: Dave Kline
                        publicIdentifier: davidkline
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQEnXQz4gRZN8Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1671283722082?e=1761782400&v=beta&t=e0WU6p_3j1eVIgtIHBW9RwntWciDrm5fgAJj0o32m78
                        creator: true
                        followerCount: 145977
                      - urn: ACoAAAFsK4wB1Ca6A61TF7ecn4v_csdFEYFx5ts
                        firstName: Jeremy
                        lastName: Zimmer
                        fullName: Jeremy Zimmer
                        publicIdentifier: zimmerjeremy
                        profilePictureURL: ''
                        creator: true
                        followerCount: 13379
                      - urn: ACoAAACdlxABjU5S5BXZoEThBko-HdXidpl42zE
                        firstName: Scott
                        lastName: Galloway
                        fullName: Scott Galloway
                        publicIdentifier: profgalloway
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQFDCAzTECuIiQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1614739906857?e=1761782400&v=beta&t=SHtiCAeY-b5XnZMuKB2Q1UVHTNiS0jMQ8QRuzUVPF-E
                        creator: true
                        followerCount: 829217
                      - urn: ACoAADfVU-kBMnbJZ_X9pujW_IzD9yquChtfHgI
                        firstName: Emma
                        lastName: 'Walmsley '
                        fullName: 'Emma Walmsley '
                        publicIdentifier: emmawalmsleygsk
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQH8EeXL9R_LHQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1654757044193?e=1761782400&v=beta&t=3916tfoh6yVSUbFhYZz6QiBOt2mdW9oST8GOYkq75gQ
                        creator: true
                        followerCount: 193843
                      - urn: ACoAAA57dswBv8iAzHzwQ-n4chcNKQCvrW2y02E
                        firstName: Laxman
                        lastName: Narasimhan
                        fullName: Laxman Narasimhan
                        publicIdentifier: laxman-narasimhan
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHPf6JilPbtxA/profile-displayphoto-shrink_800_800/B56ZZ8nMbfGQAc-/0/1745847372185?e=1761782400&v=beta&t=m_MMethuzDRIvTziLXU-scUu1D60YnZlADM_j76Rz88
                        creator: true
                        followerCount: 157117
                      - urn: ACoAABMznFkB_XPgkYHnUl33kIHTWt1DtMAV6Pg
                        firstName: Jensen
                        lastName: Huang
                        fullName: Jensen Huang
                        publicIdentifier: jenhsunhuang
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHOzNxbdK5hrg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1724130099627?e=1761782400&v=beta&t=iE6aYqNMqGZ2qx6BmEdUk0Kf74LVv-B-zGhuMfkjsu0
                        creator: false
                        followerCount: 463658
                      - urn: ACoAAADfT54BJLzUu93X7dY_MqjEMsysix6TG9E
                        firstName: Jim
                        lastName: Clifton
                        fullName: Jim Clifton
                        publicIdentifier: jimcliftongallup
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQGDllUhNuJczA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1542225957412?e=1761782400&v=beta&t=pxlwSAk8TY17u9FOkrN3RZKRsvh-7o7bJJS2daYXWEw
                        creator: false
                        followerCount: 222010
                      - urn: ACoAABLQJ6kBfQtnWINP7p_pCyH0bJDuAy2BJIg
                        firstName: Justin "Mr. Fascinate"
                        lastName: Shaifer
                        fullName: Justin "Mr. Fascinate" Shaifer
                        publicIdentifier: jshaifer
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEG4gTlC0kuUA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1719016737584?e=1761782400&v=beta&t=g87H2V_nUXMo6U8AjaqKYcV_dyXa5NnGbABwpA7sFdM
                        creator: true
                        followerCount: 55604
                      - urn: ACoAAAxqHaUBEa6zzXN--gv-wd8ih0vevPvr9eU
                        firstName: Sebastian
                        lastName: Raschka, PhD
                        fullName: Sebastian Raschka, PhD
                        publicIdentifier: sebastianraschka
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQHVyH-IfD1KbQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1629877234109?e=1761782400&v=beta&t=NuOfTm2zY19sQwom3k1sDeuCUfR89IuH3k6_Xhseivw
                        creator: true
                        followerCount: 193518
                      - urn: ACoAACXw2xoBe80ME2Nu0z05iS8y25fkqbtIkGU
                        firstName: Dan
                        lastName: Goldin
                        fullName: Dan Goldin
                        publicIdentifier: dansgoldin
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEfObtN7e6XnA/profile-displayphoto-crop_800_800/B56Zj7k851HUAU-/0/1756567432849?e=1761782400&v=beta&t=FGXdfzDkNgb6lzBAPjD8MD_uZpNcMpO9y9q3IPHterc
                        creator: true
                        followerCount: 114100
                      - urn: ACoAAAB_eKABPFlEFflAfi4Wj7htdt3_bYFPWkQ
                        firstName: Greg
                        lastName: McKeown
                        fullName: Greg McKeown
                        publicIdentifier: gregmckeown
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHx_hCVsyya_Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1694454119626?e=1761782400&v=beta&t=ql04Z66zPahxjxLD927GYQDjhcJBg8AX9_0S078KG6I
                        creator: true
                        followerCount: 478667
                      - urn: ACoAADvqvpUBQNmOpFV4gGBY_Hy7rDSfifRDdxw
                        firstName: ''
                        lastName: ''
                        fullName: ' '
                        publicIdentifier: ''
                        profilePictureURL: ''
                        creator: true
                        followerCount: 0
                      - urn: ACoAAAAGUakBGLMO02LmS5BwXexrsKODQQpx2qI
                        firstName: Ethan
                        lastName: Mollick
                        fullName: Ethan Mollick
                        publicIdentifier: emollick
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGvhhCjW5El4Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1701211615166?e=1761782400&v=beta&t=E3tQII5odmYPb3f_55J3Qw8fzkEkpwwprcJZrJNPg6Q
                        creator: true
                        followerCount: 325671
                      - urn: ACoAAAADJvQBr6--Me3C1CVvrLJeBcd2hUNQpyA
                        firstName: Gijsbertus J.J.
                        lastName: van Wulfen
                        fullName: Gijsbertus J.J. van Wulfen
                        publicIdentifier: gijsvanwulfen
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGSshY5MVCxEg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1712396844013?e=1761782400&v=beta&t=LtyVOhfxXpAyliXgp0klR8fOjnQCa8S6EUoW4cOjRJs
                        creator: true
                        followerCount: 310631
                      - urn: ACoAAAbbdW8Bo_YA-1ahwIWqmQZLAHdYYoQ7uvQ
                        firstName: Patrick
                        lastName: Mouratoglou
                        fullName: Patrick Mouratoglou
                        publicIdentifier: patrickmouratoglou
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQEAA5Sh2NC7Yw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1678980513913?e=1761782400&v=beta&t=8R4aQgAO9L7bmNHyyIsBqdVoNgensf65IHXkL89PJk0
                        creator: true
                        followerCount: 54385
                      - urn: ACoAAACS5VIBuHVzBBxlIo7RZ9LwQFU1f60p_UQ
                        firstName: Harley
                        lastName: Finkelstein
                        fullName: Harley Finkelstein
                        publicIdentifier: harleyf
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGW31Ku4QNBDA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1729782814940?e=1761782400&v=beta&t=6YHm_96PYwjuQBW_SPX6VcvKpVaIvfOOAgAoM6sLrjU
                        creator: true
                        followerCount: 123368
                      - urn: ACoAACP3Z8sBD-VB2ez3ArHe2-9lHoPwTaCGV1c
                        firstName: Melinda
                        lastName: French Gates
                        fullName: Melinda French Gates
                        publicIdentifier: melindagates
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEnhirBBhb5kg/profile-displayphoto-shrink_800_800/B56ZSvzPngHQAk-/0/1738116234633?e=1761782400&v=beta&t=2kB-QV5ZHc-oRqYOAyGmifyVrhAnwBZKShwmI9z2UEU
                        creator: true
                        followerCount: 6671043
                      - urn: ACoAAACberMBBrfM60spMCsot8uIreEK1jhC8eU
                        firstName: Dan
                        lastName: Rosensweig
                        fullName: Dan Rosensweig
                        publicIdentifier: danielrosensweig
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQEW4N8wWDMQAQ/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1516306198523?e=1761782400&v=beta&t=7yiTX1pHhVZE2raljK78UP9hRgdT7KwWu4VOSiBKqkg
                        creator: true
                        followerCount: 115500
                      - urn: ACoAACOznKMBqEagyMhWl_x2Ap9LEntBXY9fQGE
                        firstName: Baron
                        lastName: Davis
                        fullName: Baron Davis
                        publicIdentifier: barondavis
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGJ7WWRecaUjg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1714800074627?e=1761782400&v=beta&t=qAZzeZCrvnAIWv5HVGq8b4ZjJ4RSmHaf6_RCi2k7GeI
                        creator: true
                        followerCount: 41121
                      - urn: ACoAABpdKpMBALy5IhlPG7snuwgk0hCJy4K1xcg
                        firstName: Zak
                        lastName: Brown
                        fullName: Zak Brown
                        publicIdentifier: zak-brown-46b168104
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQF8QuW6fv7Upw/profile-displayphoto-shrink_800_800/B4EZYBM5FeGgAc-/0/1743776881132?e=1761782400&v=beta&t=dJuL-xrTsrTT340L3MszdT4qQpYzIiW8kjsU5YpHHxc
                        creator: true
                        followerCount: 452374
                      - urn: ACoAAAWAYHIB3Co1-C9JaYk2HdwxlCUklfHIm5U
                        firstName: Candace
                        lastName: Nelson
                        fullName: Candace Nelson
                        publicIdentifier: candacenelson9
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHFR8_KWeWwnQ/profile-displayphoto-shrink_800_800/B56ZXYtwmpGUAg-/0/1743097630558?e=1761782400&v=beta&t=psFQbJ570LQbFHgLMML8XyMm8NiBUKVKsn8eDtNVd-k
                        creator: true
                        followerCount: 21586
                      - urn: ACoAAAGa9twBjNzZhvZFbwyGM1MPaoFkPXVuY1I
                        firstName: Tom
                        lastName: Popomaronis
                        fullName: Tom Popomaronis
                        publicIdentifier: tpopomaronis
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQF2i-YGJte9Zg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1727996504150?e=1761782400&v=beta&t=nye7SV_6uzNqKKXjGT2wt7PgzA6PX7PGFJ2lb3DmyUw
                        creator: true
                        followerCount: 29241
                      - urn: ACoAAACoYQQBUPPW_-0c_NCIqsRNDeo5xewco7g
                        firstName: Tom
                        lastName: Hood, CPA,CGMA,CITP
                        fullName: Tom Hood, CPA,CGMA,CITP
                        publicIdentifier: tomhood
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQF1D6jWMmGmow/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1625081987045?e=1761782400&v=beta&t=QBHL2VLxeQXK2XSI7aX44dWWSnk-k9QVDwBogAvqW7Q
                        creator: true
                        followerCount: 700464
                      - urn: ACoAAAABVV8B3z32txFuULj_UY1VgRzh14csq9U
                        firstName: Yuval
                        lastName: Atsmon
                        fullName: Yuval Atsmon
                        publicIdentifier: yuvalatsmon
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQFgaYCvi3R5eQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516166522260?e=1761782400&v=beta&t=skaZ-sg-T37WmbUaqwxp0VNbPgqAyveByAyf4gjKyQE
                        creator: true
                        followerCount: 103868
                      - urn: ACoAAA41V-MB6KftbVSIJNFmHVaJ4aMMQ67pp8Y
                        firstName: Vivian
                        lastName: Tu
                        fullName: Vivian Tu
                        publicIdentifier: viviantu-yourrichbff
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGya5K-ghNvVg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1718257627285?e=1761782400&v=beta&t=1MT7xlh29WD-kAdFIR40G1MC-gfCWislLeekRSHr3Co
                        creator: true
                        followerCount: 70317
                      - urn: ACoAAAB3MbsBLEBkdHGHLlzbYSMFSLGkg-CBWDo
                        firstName: Yasi
                        lastName: Baiani
                        fullName: Yasi Baiani
                        publicIdentifier: yasibaiani
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGO8zkLcP9KTQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1710173733771?e=1761782400&v=beta&t=K_h7eq38LHX2jx14jyH3Y-IzAES8Gx239b2MvGyP9cI
                        creator: true
                        followerCount: 486474
                      - urn: ACoAADI9Dg8BPkAIq_PPJpEJp6W3U1ao0Tzfc9o
                        firstName: Elliott
                        lastName: Hill
                        fullName: Elliott Hill
                        publicIdentifier: elliotthillnike
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHBthOxie-osA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1726778380574?e=1761782400&v=beta&t=sgj4JxoG7BnLf2lJNtERb6utr0M_yTJFH05k9fhnZAM
                        creator: false
                        followerCount: 149566
                      - urn: ACoAAABr4nsBKu5ZtKWQTU3Ybg9POUUVN8u74MA
                        firstName: Nicholas
                        lastName: Thompson
                        fullName: Nicholas Thompson
                        publicIdentifier: nicholasxthompson
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQFLgC7rhIDT0g/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1588374790345?e=1761782400&v=beta&t=bYAuUxJW4qH26-bdzSOhpTIuF8BM6cax8FUby-hvcv4
                        creator: true
                        followerCount: 1611696
                      - urn: ACoAAAAOo3EBvCq8XhGFVG-_9KVCJYmaf26M_9g
                        firstName: Morra
                        lastName: Aarons-Mele
                        fullName: Morra Aarons-Mele
                        publicIdentifier: morraaaronsmele
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQH1Gr3f_7UONQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1665940618265?e=1761782400&v=beta&t=B6SBnGACC0NZKiaFNdX7GXMWGIJTixbqwHZSZLcw8w4
                        creator: true
                        followerCount: 38922
                      - urn: ACoAABGuupoBoNGEFD0Bhy00ZTaPCNJwetsCKZw
                        firstName: Frank Michael
                        lastName: Smith
                        fullName: Frank Michael Smith
                        publicIdentifier: frank27
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQHVVe9LgYD9zA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1671209221269?e=1761782400&v=beta&t=-G1IlUZ8eqIJmFQu7K1eURW1iiTCpJkEdTUB2eUWUP4
                        creator: true
                        followerCount: 8059
                      - urn: ACoAAEFjOtYBUGJZTsmoCgLUzP4rX6o8mQVmJkE
                        firstName: António
                        lastName: Guterres
                        fullName: António Guterres
                        publicIdentifier: antonio-guterres
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFlOM0cj6QpcQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1678820023589?e=1761782400&v=beta&t=sujgoM62opDbablW_S2Rl7EPXjQ2xl_LpcU2clRofN8
                        creator: true
                        followerCount: 994996
                      - urn: ACoAAAs1zzMBG5b9dRWE1AdHWmSD5U3oMOVtPSg
                        firstName: Rebecca
                        lastName: Jarvis
                        fullName: Rebecca Jarvis
                        publicIdentifier: rebecca-jarvis-217ba052
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5103AQFNp3pWDA2lAA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1516642218091?e=1761782400&v=beta&t=tR63cHSHDmh2kwTYofoDwtv__7OZSlqGCk9Azm0Bd7E
                        creator: true
                        followerCount: 26148
                      - urn: ACoAAEP9QIkB_SM4xoMxRT9N9qLCOJMgTDXRubA
                        firstName: 'HH Sheikh Mohamed '
                        lastName: bin Zayed Al Nahyan
                        fullName: HH Sheikh Mohamed  bin Zayed Al Nahyan
                        publicIdentifier: hh-sheikh-mohamed-bin-zayed-al-nahyan
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGIIjgoUMA3Eg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1685948502053?e=1761782400&v=beta&t=eOGMWGukIAoPU04ODXHY3qv1M3CwuFq_BBWGe8TLwVk
                        creator: false
                        followerCount: 890926
                      - urn: ACoAAEcbPiAB_AFFnKH4yX_vDIGsAv2OrF0oPg8
                        firstName: Lewis
                        lastName: Hamilton
                        fullName: Lewis Hamilton
                        publicIdentifier: sirlewishamilton
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQH4Pi-e_nakJQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695859013283?e=1761782400&v=beta&t=N69JNqQvFVX61DrKFaK25Z9s4bfibvysT3E6qLy4aLA
                        creator: true
                        followerCount: 466641
                      - urn: ACoAAB-xjv8BVzjsMrBtCyUsVGW1m5DzbPYor34
                        firstName: Hannah
                        lastName: Williams
                        fullName: Hannah Williams
                        publicIdentifier: hannahawilliams
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHC7H1STvCQTQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1689878380226?e=1761782400&v=beta&t=8simSq0CclddtUWpQiQAthlzGs0lAhHFSkwX9AzpY9E
                        creator: true
                        followerCount: 29265
                      - urn: ACoAABwKLGsBbKSl38JNm_UeJo8PIjNKGi7OPW0
                        firstName: Mellody
                        lastName: Hobson
                        fullName: Mellody Hobson
                        publicIdentifier: mellodyhobson
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQEgXoq9usHbQg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1517823314363?e=1761782400&v=beta&t=p0ADb8z-dqfRMRvj8ulTII3n40F4G2aYslTpVaRcDVg
                        creator: false
                        followerCount: 237121
                      - urn: ACoAAAAwbW0BiTIYk_mvyL_odHuznPW70qwCYS8
                        firstName: Becky
                        lastName: Quick
                        fullName: Becky Quick
                        publicIdentifier: beckyquick
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQEu0y4vwaVESg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516280950039?e=1761782400&v=beta&t=DUka5fEQiglMvPmCFS0mnFTdBR2G3fJQg807BpQkCK4
                        creator: true
                        followerCount: 232812
                      - urn: ACoAADuJfoUBDntD0nJsVcduThhlJr8fDtv61Is
                        firstName: Jon
                        lastName: Gray
                        fullName: Jon Gray
                        publicIdentifier: jon-d-gray
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQG_F4IiiTgAfg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1687268015148?e=1761782400&v=beta&t=9_Lk5pZQ4fJ40My-J1o0qe5mNGkBRuChzNT4XMZGrkY
                        creator: true
                        followerCount: 256218
                      - urn: ACoAABYuMjABdokupXx0oxsqcPA4noEpcDnDKCo
                        firstName: Dr. Shadé
                        lastName: Zahrai
                        fullName: Dr. Shadé Zahrai
                        publicIdentifier: shadezahrai
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQEayueoaXQFJA/profile-displayphoto-shrink_800_800/B56ZN1.rVgHYAc-/0/1732851185891?e=1761782400&v=beta&t=-nZUnbLkf6_3rRHyl-1Midq1PtLQsK5GvoxlcipjO2A
                        creator: true
                        followerCount: 558818
                      - urn: ACoAABoibCgB1cz8KxGynFPuNBG-QFKI5ehzFyk
                        firstName: Grace
                        lastName: Beverley
                        fullName: Grace Beverley
                        publicIdentifier: grace-beverley-574a10102
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQExvyUE7Akxhg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1643801654367?e=1761782400&v=beta&t=DUj1T32xf7X1lLenOkhF37oAVBJtxlvw0r9biYHz9qQ
                        creator: true
                        followerCount: 209841
                      - urn: ACoAAAYOxJIBT6RDark8OM-qQ3UdcOsu4amD7wE
                        firstName: Brad
                        lastName: Keywell
                        fullName: Brad Keywell
                        publicIdentifier: bradkeywell
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQHzXN_KY8le4w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1649733508590?e=1761782400&v=beta&t=SYc9RPFrYc9UevqgeXtDRjEepcBxMn-YusIr_U2PcRQ
                        creator: true
                        followerCount: 89423
                      - urn: ACoAAAxAEHMBewqCvrqdIMTa5THqtVkSm-z9kz4
                        firstName: Natalie
                        lastName: Allport
                        fullName: Natalie Allport
                        publicIdentifier: natalieallport
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFwWxy8ZCZ2ZA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1718300195541?e=1761782400&v=beta&t=EnhZHReLyuSMiixczOPHs92E9YLX9HmQH3VZazlf_Uo
                        creator: true
                        followerCount: 6389
                      - urn: ACoAAAqLF0YBRBkPdT39IWdnDITxMMn3zbs6IDg
                        firstName: Jill
                        lastName: Schlesinger
                        fullName: Jill Schlesinger
                        publicIdentifier: jillonmoney
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQEVxX6YnaDB5g/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1639180982919?e=1761782400&v=beta&t=yIVeasO09i12zVwr1wzobSj01WdzZbyM_8oUTqyt1Eo
                        creator: true
                        followerCount: 716718
                      - urn: ACoAABYeNH4Bc4Aahzq_pYB_KtPAQD-CejM_4vg
                        firstName: Lando
                        lastName: Norris
                        fullName: Lando Norris
                        publicIdentifier: landonorris
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQG5ZNqGSqlAdA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1706693328200?e=1761782400&v=beta&t=LqVdXfhlxZTG0xKrxX5-lsImE9hF-3__UG8-zaPs7-o
                        creator: true
                        followerCount: 178975
                      - urn: ACoAADHU3GkBl-V4xKr09MRiC0zmUBq08yd_Wqs
                        firstName: 'Arnold '
                        lastName: Schwarzenegger
                        fullName: Arnold  Schwarzenegger
                        publicIdentifier: arnold-schwarzenegger
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQHZJ62C6foidA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1635787725134?e=1761782400&v=beta&t=me8DvPHY6sAHLQDGPOzHWDa4jX9dh-9VouzlNffVez0
                        creator: true
                        followerCount: 440234
                      - urn: ACoAAAvBWfQBHtCtUhyKBpPiKxbo_O_qpqc3-5I
                        firstName: Jack
                        lastName: McKissen
                        fullName: Jack McKissen
                        publicIdentifier: jackmckissen
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQHK_dXqG9vnrQ/profile-displayphoto-shrink_800_800/B4EZS9JVoTG0Ac-/0/1738340133121?e=1761782400&v=beta&t=qYDreDOOclFgzPLutU_Speldpte_iZTolDOYVLwV4cA
                        creator: true
                        followerCount: 104015
                      - urn: ACoAACKFDEEBkA-4S3JaQswACrwz7rx0pdDfj-U
                        firstName: HH Sheikh Hamdan
                        lastName: Bin Mohammed Bin Rashid Al Maktoum
                        fullName: HH Sheikh Hamdan Bin Mohammed Bin Rashid Al Maktoum
                        publicIdentifier: hamdanbinmohammed
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQFzvrk-nuIX1Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1708686567346?e=1761782400&v=beta&t=9UwRGQdOzHmpb5oX9QVy_CJcuGgSFXD5nL7yVxtKv0A
                        creator: false
                        followerCount: 3740128
                      - urn: ACoAADR1HGkBl8PVPBcO_zhhKOerSi3K8aGkt7Y
                        firstName: Daniel
                        lastName: Ricciardo
                        fullName: Daniel Ricciardo
                        publicIdentifier: daniel-ricciardo
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQFHPbw5sS3XhA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1730908153952?e=1761782400&v=beta&t=RL0UXNWQznAt0baSAaFqObTkScqKzMKkdsCIenPIfFg
                        creator: true
                        followerCount: 451872
                      - urn: ACoAAAMlZakBzL56V-400HqosrL9y7GEpkw2dvw
                        firstName: Mickey
                        lastName: Mikitani
                        fullName: Mickey Mikitani
                        publicIdentifier: mikitani
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQEkKSrg8og_Lg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1516569301754?e=1761782400&v=beta&t=89N-V5cvy7lz_7fuOQDG3B7-DmMnS7Vv86fOB6ZvR18
                        creator: true
                        followerCount: 1258638
                      - urn: ACoAAAIVweUBHROA8OzDPE2ccHUs5pLKjGcE-Yk
                        firstName: Kathryn
                        lastName: Minshew
                        fullName: Kathryn Minshew
                        publicIdentifier: kathryn-minshew
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGaFIFgjNVygw/profile-displayphoto-shrink_800_800/B4EZdDpvzHHgAc-/0/1749186707004?e=1761782400&v=beta&t=JnN89YYhPPckzQGbkdv0cnHlXmTMyhTEfeJezoMr30M
                        creator: true
                        followerCount: 284290
                      - urn: ACoAAAB2gUUB82vPOB28NQg6qklIkiHG5nsBaJo
                        firstName: Nilay
                        lastName: Patel
                        fullName: Nilay Patel
                        publicIdentifier: nilaypatel
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQH_9BvKiGz3gQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516281163642?e=1761782400&v=beta&t=rI-8al8R18U2pZHCsKy7bOtUdQzPoguepajGXAN0XjI
                        creator: false
                        followerCount: 6615
                      - urn: ACoAAAAB5wgBnU6gULQF2GPOE1_1wB5JBu1TC6M
                        firstName: Fabricio
                        lastName: Bloisi
                        fullName: Fabricio Bloisi
                        publicIdentifier: fabriciobloisi
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQH5gCAuEKhxiw/profile-displayphoto-shrink_800_800/B4DZWjzsIuHkAc-/0/1742209991725?e=1761782400&v=beta&t=NhYHXF-RJTuRQX7reLt7sn85PSmEG0dUPX0RWG1Em54
                        creator: true
                        followerCount: 269438
                      - urn: ACoAAAADFk0BbiOeu2Wrer11SaPH_5m1GM8pG6Q
                        firstName: Yann
                        lastName: LeCun
                        fullName: Yann LeCun
                        publicIdentifier: yann-lecun
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQHBLoV7GRUP2w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1642552032280?e=1761782400&v=beta&t=M-S0hHriAGyt7-ZilaKoLCRVlhFpMVCZfxpAe8HFEoI
                        creator: true
                        followerCount: 1062865
                      - urn: ACoAAA8yGw8BFukJG4rcPfyjIiW_A3H_qAUbcY4
                        firstName: Alec
                        lastName: Ross
                        fullName: Alec Ross
                        publicIdentifier: rossalec
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQG5N_auq_yO2w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1658334667970?e=1761782400&v=beta&t=kmc1UBifcCUP_FO9CqfrucBvuEjgKGMx-z8veJqdebE
                        creator: true
                        followerCount: 254175
                      - urn: ACoAAAABcUIBj_DZ6-HVFVSo7vpA7LeFY7MaEDI
                        firstName: Dan
                        lastName: Sanker
                        fullName: Dan Sanker
                        publicIdentifier: dansanker
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFzWDi7jQS3rQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1727275281085?e=1761782400&v=beta&t=fB4jTWJduyv33GX1iUfvAQx3VgILl2xhnBd8wLqfxwI
                        creator: true
                        followerCount: 394411
                      - urn: ACoAAAFqCmkBVQU0y6mHCPrey__8CSrTmyBwU4c
                        firstName: tristan
                        lastName: walker
                        fullName: tristan walker
                        publicIdentifier: tristanwalker
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQFbP4olfNN0xg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1516342361653?e=1761782400&v=beta&t=kfdZyKyCT_HE5xl1YzHK6WR-ajPP1jMp-n1ZAhuIG4I
                        creator: true
                        followerCount: 80946
                      - urn: ACoAABi-9OEBIXkCs9orvKeMB9hkpOWCqyYLbSE
                        firstName: Maggie
                        lastName: Sellers
                        fullName: Maggie Sellers
                        publicIdentifier: sellersmaggie
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFU1Wbn6qeBxw/profile-displayphoto-crop_800_800/B4EZgd.ccEGcAI-/0/1752849567145?e=1761782400&v=beta&t=Rmapi-QbmuMejiXqwSivT50TQZZzLaP8YW83hIyK_ys
                        creator: false
                        followerCount: 13861
                      - urn: ACoAABVEAZwBu0EgqQGsZBB51P6zKXBgv7rNlNI
                        firstName: HH Sheikh Mohammed
                        lastName: Bin Rashid Al Maktoum
                        fullName: HH Sheikh Mohammed Bin Rashid Al Maktoum
                        publicIdentifier: mohammedbinrashid
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQGK5PBQvEYGgQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516975098959?e=1761782400&v=beta&t=V_ecITURqivA8lxl7-Xtd6T8S87ZPhj0KEOu_maqVd8
                        creator: false
                        followerCount: 3393734
                      - urn: ACoAAA0q508BLhDTKpQz1xHuVOMZu8qZtIQrRP8
                        firstName: Samir
                        lastName: 'Chaudry '
                        fullName: 'Samir Chaudry '
                        publicIdentifier: samirchaudry
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQHNd_YcDDjmKg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1652382658514?e=1761782400&v=beta&t=fvA9ala_nnNf5AkiO9WkWX29kU1IE0QcaL6LMF2OBGk
                        creator: true
                        followerCount: 35807
                      - urn: ACoAABQJdgUBDdZ-NyMRs1f2IJGYtCSlC-MZWDU
                        firstName: Marc
                        lastName: Lore
                        fullName: Marc Lore
                        publicIdentifier: marclore
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGDeCNMDXebpA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1615303489556?e=1761782400&v=beta&t=9rt-xACrn20kNJ_DaZFSvtZkXhglIBJ08MvntX3ojHo
                        creator: true
                        followerCount: 217986
                      - urn: ACoAAAAAYEkBYAFZdKpFhi0Pf6CaNoVrLc8SkII
                        firstName: Shishir
                        lastName: Mehrotra
                        fullName: Shishir Mehrotra
                        publicIdentifier: shishirmehrotra
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQHDTK1PQzTRrA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1516158398727?e=1761782400&v=beta&t=i7ViZrHTsaWFbAadQsiW53lU9_UE5JVpa0TydUXYoOA
                        creator: false
                        followerCount: 26217
                      - urn: ACoAACGBjJoBBl9NqMd1eV4PggmHAZ9a_XfWg58
                        firstName: Marie
                        lastName: Kondo
                        fullName: Marie Kondo
                        publicIdentifier: marie-kondo
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGcDRTwJRsg2g/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1586222244838?e=1761782400&v=beta&t=A4vBWLs0xO3vORNa3XkaXWQRlJuJsMh2Is-Tqx9xBbI
                        creator: false
                        followerCount: 20586
                      - urn: ACoAABt6Ew4Bq_m-hahX5ocf321ZyqZy7FpQlig
                        firstName: Emmanuel
                        lastName: Macron
                        fullName: Emmanuel Macron
                        publicIdentifier: emmanuelmacron
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQHdzozXOGcFgw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1712059080262?e=1761782400&v=beta&t=Tu27-51dKbG7B3qXIwZvmH8laJEX-Y0fI49SIdlWlxc
                        creator: true
                        followerCount: 3008409
                      - urn: ACoAAAAicEoBnYXULNB7ThTcyqgS2uLN8t089MQ
                        firstName: Wopke
                        lastName: Hoekstra
                        fullName: Wopke Hoekstra
                        publicIdentifier: wopke-hoekstra
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGCCi1gjI07bg/profile-displayphoto-shrink_800_800/B4EZOWmD3_HAAc-/0/1733398380500?e=1761782400&v=beta&t=P00WBUIz4oxa9Yz_wVPCdPtXYR32KfZMeD5KCYN6g3A
                        creator: false
                        followerCount: 125591
                      - urn: ACoAAC2-MfsBDrYt2zuSFJK8hxJ5oZDCOj_Blr0
                        firstName: Christopher
                        lastName: Luxon
                        fullName: Christopher Luxon
                        publicIdentifier: christopher-luxon-bb701b195
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQHCRzmmPulolA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1701066641706?e=1761782400&v=beta&t=a_26hEh07kW2_2Hs_muxE7HExDVI5TInCzL9ITlo1pY
                        creator: false
                        followerCount: 115720
                      - urn: ACoAABATQloBfyWuESHWD211_EatYCVbdIpB9yA
                        firstName: Angela
                        lastName: Ahrendts
                        fullName: Angela Ahrendts
                        publicIdentifier: angelaahrendts
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQFxD57JEvoVUA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516575907765?e=1761782400&v=beta&t=n_QHyZ7hyn3_aAdS2XoqSL-TS2XEguxYzpSbH77nT-M
                        creator: true
                        followerCount: 799719
                      - urn: ACoAAAZ1GBwB_YLlrm8831LiFqbYyPB8nHi9B6E
                        firstName: Drew
                        lastName: Scott
                        fullName: Drew Scott
                        publicIdentifier: drew-scott-16434730
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFTEWwQRsdb5w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1710524878025?e=1761782400&v=beta&t=0CizV8y8ae4_9IWAaWldetrx7vwGAcE-iWGnjv1ojSg
                        creator: true
                        followerCount: 4246
                      - urn: ACoAAADeFaUBrmVCZf1j4QHkgmQz2bLLsHyL8Ao
                        firstName: Clarice Lin,
                        lastName: Marketing Strategist💪
                        fullName: Clarice Lin, Marketing Strategist💪
                        publicIdentifier: claricelin
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGpVyujneY4Ug/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1541698574705?e=1761782400&v=beta&t=tBrHijGwrw7j2GT8-IGIo8fH4J1S3qDEnuCzq-_UGh0
                        creator: true
                        followerCount: 7591
                      - urn: ACoAAABMb7ABtHb6JCzTqQBzknbw1O0cQrAmjLc
                        firstName: Deborah
                        lastName: Liu
                        fullName: Deborah Liu
                        publicIdentifier: deborahliu
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQFctKp8BRWU3Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1574360662782?e=1761782400&v=beta&t=zpvRJmTDBZBfKZgJobeCTAQQEjQX3SCgwNasAeABsao
                        creator: true
                        followerCount: 104989
                      - urn: ACoAAA6SSIsBCU74lDKTmPILaEOPsS95f_eqNyI
                        firstName: John
                        lastName: Henry
                        fullName: John Henry
                        publicIdentifier: johnhenrystyle
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQFtLozkUz1CDg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1633302809762?e=1761782400&v=beta&t=OdI20XvEBWp6e2boRY7N5aypKkAS2DmnL_jpEUMdBpM
                        creator: true
                        followerCount: 54040
                      - urn: ACoAAACfJUMB9zef7DrWoAYfFAbN32jlgdjKO80
                        firstName: Tomas
                        lastName: Kucera
                        fullName: Tomas Kucera
                        publicIdentifier: tomaskucera
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQFGHc57iBZnLw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1516311966095?e=1761782400&v=beta&t=aFggBaU-Z5GqDNn0bL3dXiscRWyc9EvwJUssJYJE_H4
                        creator: true
                        followerCount: 14037
                      - urn: ACoAAAEhb04BeDQeyERF94gC5e_gqZR39Hp9Czg
                        firstName: Sunny
                        lastName: Bonnell
                        fullName: Sunny Bonnell
                        publicIdentifier: sunnybonnell
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHfLVUNAGF4WQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1698334142895?e=1761782400&v=beta&t=UL78PjV5PThT1j_6pMjTu0wiaDp3Xw9mnZQugo75F6I
                        creator: true
                        followerCount: 19446
                      - urn: ACoAAAAAg-cBm5i6KWa5l926DEsAD3KIO6cenp8
                        firstName: Charlene
                        lastName: Li
                        fullName: Charlene Li
                        publicIdentifier: charleneli
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGyzStV9K3vcQ/profile-displayphoto-shrink_800_800/B4EZViqduFGwAc-/0/1741117054264?e=1761782400&v=beta&t=JQHq-AeygRbDEJrmp1KRZT2M68fuMAPryImUoL2uxYY
                        creator: true
                        followerCount: 278943
                      - urn: ACoAAAAEcZkBIFPkmuI7RX3WBl_0W17G98fbtyY
                        firstName: Jon
                        lastName: Fortt
                        fullName: Jon Fortt
                        publicIdentifier: jonfortt
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFSUum5TjHkhQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1693777801017?e=1761782400&v=beta&t=vBw0s_QI5z_jx3LSwBmgFfEstEEJRjRh3EO60pHQ74s
                        creator: true
                        followerCount: 221118
                      - urn: ACoAAAPddYgBzyPFRzHg5hZY_E3Rlyz_jdSO4ec
                        firstName: Albert
                        lastName: Bourla
                        fullName: Albert Bourla
                        publicIdentifier: albert-bourla
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQHH4cjVbeFdLw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1632326525506?e=1761782400&v=beta&t=ES4vBkBE0-jRe0wy5xNZd51RujIebL1jSuNygAZyiBk
                        creator: true
                        followerCount: 301835
                      - urn: ACoAAACCl_YBa_oykqa3cmAo7JBPTkCJbC2H31k
                        firstName: Laura
                        lastName: Teclemariam
                        fullName: Laura Teclemariam
                        publicIdentifier: laurateclemariam
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGiyXMBVWGLTA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1691562796754?e=1761782400&v=beta&t=mAE_TdLQz3OiI1D0z-eUu8Fz3FgOn3Glk37TEuhB-LM
                        creator: false
                        followerCount: 0
                      - urn: ACoAAAO3AMUBwGqijaNpw6BRLAi3drS_mGtE5gk
                        firstName: Ruben
                        lastName: Harris
                        fullName: Ruben Harris
                        publicIdentifier: rubenharris
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQH-f0UZfdz2GA/profile-displayphoto-crop_800_800/B56Zlb7Kn6KMAQ-/0/1758183862304?e=1761782400&v=beta&t=ZFvu7Naa6NcWlquvzmIOEBnfQAjut8bW4QyFeDv-BG0
                        creator: true
                        followerCount: 69459
                      - urn: ACoAAAADlT4BXzW1jgPSHdoQYm3SnAXpgtHmbEk
                        firstName: David
                        lastName: Sable
                        fullName: David Sable
                        publicIdentifier: dsable
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQEnHEQJDrT4tw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1726052766241?e=1761782400&v=beta&t=oLBxTgh4OvL-ThVKir-HquUKzxJ0WK1ZsqaZZZwG-JQ
                        creator: true
                        followerCount: 903077
                      - urn: ACoAAABwhvABzo9CzKajiOypJoHIaVXX6r1tXLs
                        firstName: Shane
                        lastName: Snow
                        fullName: Shane Snow
                        publicIdentifier: shanedsnow
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQEXYJt5EdLC5g/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1654189759727?e=1761782400&v=beta&t=ns9foNKkFDzmYYXdNs_QRXYDwpjilurqlR7oZwQF0tg
                        creator: true
                        followerCount: 372002
                      - urn: ACoAAABiUF0BatzJugPK4Psitky2YnQPWR4y-98
                        firstName: Dan
                        lastName: Frommer
                        fullName: Dan Frommer
                        publicIdentifier: fromedome
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQGaGZlVqytz7Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1553644851153?e=1761782400&v=beta&t=ESmxGFiWZ3vQXZejO8i0QmTTPauhjkmxgKlUxcC3Jjo
                        creator: true
                        followerCount: 314000
                      - urn: ACoAAABemvkBhw4NyDiIbBpEu0_cdUL4RwyaoQc
                        firstName: Katya
                        lastName: Andresen
                        fullName: Katya Andresen
                        publicIdentifier: katyaandresen
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQHfYYPgpJF3vQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1642800000381?e=1761782400&v=beta&t=uTegdSGOkD2vGKgNAvyvnXCFtxug5h9-b-Q58U9gLcs
                        creator: true
                        followerCount: 1205110
                      - urn: ACoAAAApQY0BBambLpKZ7cetcpabJ2BV5bJEPoU
                        firstName: Christian
                        lastName: Klein
                        fullName: Christian Klein
                        publicIdentifier: christian-klein
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFwQRhEU7phIQ/profile-displayphoto-shrink_800_800/B4EZSOExLDGYAg-/0/1737550403545?e=1761782400&v=beta&t=KdcynbNLklChoKxiNCVXmCqdiumCkCEJMU7Bt2mESoY
                        creator: true
                        followerCount: 282750
                      - urn: ACoAAABazrQBjEXD2eHYsHPADLkSaNh1oXCba3E
                        firstName: Ivan
                        lastName: Tornos
                        fullName: Ivan Tornos
                        publicIdentifier: ivantornos
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFh-IX85yEH4g/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1672928432927?e=1761782400&v=beta&t=NCL0lSIqLg-nECgoLLMsyt80oZjeNnNeJcwGIBcK9S4
                        creator: true
                        followerCount: 54014
                      - urn: ACoAAAB8gmgBEvs0cNZ2ezbjgswUZjUbs_QPDzo
                        firstName: Mike
                        lastName: Sievert
                        fullName: Mike Sievert
                        publicIdentifier: sievert
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQFsD_-vfnt19Q/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1603855639386?e=1761782400&v=beta&t=JZrwXrP1ormI2GEP3OugUIW_v1flig7ru9q7YRHvnsY
                        creator: true
                        followerCount: 154613
                    companies:
                      - urn: '1035'
                        name: Microsoft
                        url: https://www.linkedin.com/company/1035/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_400_400/B56ZYQ0mrGGoAc-/0/1744038948046/microsoft_logo?e=1761782400&v=beta&t=L8ON9gLWkI74oSmhibx6fLjSYJ-v8CGGwxCBHM_uJq8
                        followerCount: 26453001
                      - urn: '1337'
                        name: LinkedIn
                        url: https://www.linkedin.com/company/1337/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1761782400&v=beta&t=x_9t8LMKN1X_iOpOKN33-CV7fzDbS5ZZY-S9gp6KmrU
                        followerCount: 31995927
                      - urn: '1371'
                        name: McKinsey & Company
                        url: https://www.linkedin.com/company/1371/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQF08d-lL0S8Yw/company-logo_400_400/B4EZfGo_vEHwAc-/0/1751384325462/mckinsey_logo?e=1761782400&v=beta&t=iTmXejNyzxDtkZwfhp2Mxq2kaV0P8fJ0uLzUqdjaRdk
                        followerCount: 6661777
                      - urn: '1649'
                        name: Harvard Business Review
                        url: https://www.linkedin.com/company/1649/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D560BAQFQxeS5AxkTQA/company-logo_400_400/company-logo_400_400/0/1732205737405/harvard_business_review_logo?e=1761782400&v=beta&t=_7o0vAmbA0hWIRhWnDaAhm73r-rxTlFnygkO-h1svC8
                        followerCount: 14543706
                      - urn: '1666'
                        name: Intuit
                        url: https://www.linkedin.com/company/1666/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQFTpF8uneqScw/company-logo_400_400/company-logo_400_400/0/1661446146222/intuit_logo?e=1761782400&v=beta&t=R_6NH1bC-HQG-rPaA3CyQA9bjEpO2lTHnKaCNjFCvLE
                        followerCount: 915604
                      - urn: '1694'
                        name: The Coca-Cola Company
                        url: https://www.linkedin.com/company/1694/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQFdDysNTJsI5Q/company-logo_400_400/company-logo_400_400/0/1673983420634/the_coca_cola_company_logo?e=1761782400&v=beta&t=mea2X6IuQ5olZFCpdcWkqVFzRDfd72K-hAL7mE1D2_Y
                        followerCount: 8320763
                      - urn: '1748'
                        name: TIME
                        url: https://www.linkedin.com/company/1748/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C4E0BAQGOq0SlHwj8kg/company-logo_400_400/company-logo_400_400/0/1677855722639/time_logo?e=1761782400&v=beta&t=n-E4QR0jByCX1lzVu3IY0lG0ebXGJExd7QoRvGn4yJs
                        followerCount: 2465184
                      - urn: '1791'
                        name: Stanford University Graduate School of Business
                        url: https://www.linkedin.com/company/1791/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQGyTHJCehyEuA/company-logo_400_400/company-logo_400_400/0/1630537027992/stanford_graduate_school_of_business_logo?e=1761782400&v=beta&t=x21mmINu4XvCUJbgaocWq12dzqtDFNwLsOVUTTTaVJA
                        followerCount: 545107
                      - urn: '1833'
                        name: CNBC
                        url: https://www.linkedin.com/company/1833/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQGhTt03d9EW0w/company-logo_400_400/company-logo_400_400/0/1729250832732/cnbc_logo?e=1761782400&v=beta&t=GJ43al2WUy13xo45Wl7AJNl5yb_NVxnEFvP8nFN4bgA
                        followerCount: 2985932
                      - urn: '1935'
                        name: PTC
                        url: https://www.linkedin.com/company/1935/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQEpBSyxBzIEhw/company-logo_400_400/company-logo_400_400/0/1719854960782/ptcinc_logo?e=1761782400&v=beta&t=dhb8WZQAPwlU5cjelvyqxrn4yHUUliNSyTqb6jIJhsY
                        followerCount: 378634
                      - urn: '2003'
                        name: NASA - National Aeronautics and Space Administration
                        url: https://www.linkedin.com/company/2003/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQGRBHWCcaAqGg/company-logo_400_400/company-logo_400_400/0/1630507197379/nasa_logo?e=1761782400&v=beta&t=kRErtdPKi7Camwnh4Asv7u2IlC-a5x4rWFuxxzSiZHk
                        followerCount: 6820070
                      - urn: '2029'
                        name: Nike
                        url: https://www.linkedin.com/company/2029/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D560BAQHJk7IdfuV1Dw/company-logo_400_400/company-logo_400_400/0/1732131503851/nike_logo?e=1761782400&v=beta&t=CrFOe5Ut3MHWze5U1n_EUf6chRi90vX7GxXHBj-DQJc
                        followerCount: 5995735
                      - urn: '2517'
                        name: University of California, Berkeley
                        url: https://www.linkedin.com/company/2517/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D560BAQGwjF_5CYj_JQ/company-logo_400_400/company-logo_400_400/0/1732135669731/uc_berkeley_logo?e=1761782400&v=beta&t=HThFOELyrLR_4QLD7BVIkRD3PafMuJnrlJIzRG8ECPg
                        followerCount: 984694
                      - urn: '2519'
                        name: >-
                          University of California, Berkeley, Haas School of
                          Business
                        url: https://www.linkedin.com/company/2519/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C4E0BAQEc1EFtLIThEw/company-logo_400_400/company-logo_400_400/0/1631312193135?e=1761782400&v=beta&t=2dJtrK2KqDuoYd_3CQ8dDRYoxKEexUDQiS0qzAAhWJc
                        followerCount: 169934
                      - urn: '2842'
                        name: University of California, Davis
                        url: https://www.linkedin.com/company/2842/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C4E0BAQEBG25KNBwuCQ/company-logo_400_400/company-logo_400_400/0/1630629297217/uc_davis_logo?e=1761782400&v=beta&t=qZemvv4lSJ_CTXfJiSzLHduUH8r8l-zAAgp0RDarkXc
                        followerCount: 401408
                      - urn: '4236'
                        name: The New York Times
                        url: https://www.linkedin.com/company/4236/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQEp-f9Ptu2yVQ/company-logo_400_400/company-logo_400_400/0/1631319717018?e=1761782400&v=beta&t=kWHZt7vFRKY9YytdwkmpD8NXH0AOhxBcx3ZHeqtbZ3c
                        followerCount: 6851662
                      - urn: '4471'
                        name: IMG
                        url: https://www.linkedin.com/company/4471/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQG-i2j7Q2WFIA/company-logo_400_400/company-logo_400_400/0/1694593112031/img_logo?e=1761782400&v=beta&t=UvWY6bQ8Px7n48z5LPxZsov2kVaugRDavmpPd1g7Oyk
                        followerCount: 298001
                      - urn: '4697'
                        name: Financial Times
                        url: https://www.linkedin.com/company/4697/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHkYotU-D9kCg/company-logo_400_400/company-logo_400_400/0/1631348726233?e=1761782400&v=beta&t=ObTIo2IbNFRU9a0imcsE1_geRuDEgklVJZuPOQvVFZs
                        followerCount: 7622455
                      - urn: '4749'
                        name: HBO
                        url: https://www.linkedin.com/company/4749/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHQ303-nahsMQ/company-logo_400_400/company-logo_400_400/0/1630654386710/hbo_logo?e=1761782400&v=beta&t=DAJPHvb6tJU1ltGOexogfEJgg29dd6ca1UzxuZe31So
                        followerCount: 1183434
                      - urn: '5502'
                        name: USA TODAY
                        url: https://www.linkedin.com/company/5502/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQFVChLRUaoRmw/company-logo_400_400/company-logo_400_400/0/1674768908373/usa_today_logo?e=1761782400&v=beta&t=MPXy4VrjYylsVTVKYLTnUf3_ZxGZni_IzI_Vw1cqBRg
                        followerCount: 329426
                    groups:
                      - urn: '13855160'
                        name: Finding Your New Job
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D5607AQHHzvmkeUS7KQ/group-logo_image-shrink_400x400/group-logo_image-shrink_400x400/0/1655487952783?e=1759356000&v=beta&t=adcaFYVZp16o6QO0jGJqnMTgHrsc-eZ2OZSW6m_zLOI
                      - urn: '3245711'
                        name: GoDaddy Users
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C4D07AQGhBahu1qahBQ/group-logo_image-shrink_200x200/group-logo_image-shrink_200x200/0/1631354248547?e=1759356000&v=beta&t=vXpWOAf8hvGiTtszapPiXDg3qp5TP2jj7Te1oiYfJDo
                      - urn: '1822758'
                        name: Grammar Geeks
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E07AQG1Wk1ksSprnw/group-logo_image-shrink_400x400/B4EZbOjcI_HIAU-/0/1747222122433?e=1759356000&v=beta&t=ShbWfzsar1jgdWNy6-EeK7ZPT0W6cKu6LiB84NYULlc
                      - urn: '14445195'
                        name: The Cinco Reunions, '25
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D5607AQEbFqNul9v7IQ/group-logo_image-shrink_400x400/group-logo_image-shrink_400x400/0/1715120007737?e=1759356000&v=beta&t=n9orMiBMWi3mEZu0doqs7Xl6CkCb6LKCMa2OY0jrdjE
                      - urn: '14081027'
                        name: Microsoft Viva Community
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C5607AQEZblO9Asv9Dg/group-logo_image-shrink_400x400/group-logo_image-shrink_400x400/0/1650392118923?e=1759356000&v=beta&t=VdHh_Tcdhte6rCdyvxKw29FjNNZlqU1SKt_sB1G6_rM
                      - urn: '6791653'
                        name: Drones, Entrepreneurship and Business Opportunities
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C4E07AQHrRuSOlOs1Tw/group-logo_image-shrink_200x200/group-logo_image-shrink_200x200/0/1631379339592?e=1759356000&v=beta&t=Wptu6po-FwKdggVfhSeWjjaTsOaacB4Ln1tYcNqheXc
                      - urn: '12314659'
                        name: Featured Items Ramp Group
                        logoURL: ''
                    newsletter:
                      - urn: '6640647216497209344'
                        title: 'Dorie Clark Newsletter '
                        description: 'Get your best ideas heard in a noisy world '
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C4D12AQFBjxhKLpuuBA/series-logo_image-shrink_300_300/series-logo_image-shrink_300_300/0/1587707158230?e=1761782400&v=beta&t=19qO6WU939k_U-BIqudFHRe3eEcqS28PWhlmVARbS1A
                        authorName: Dorie Clark
                        authorProfile: https://www.linkedin.com/in/doriec
                        authorUrn: ACoAAABNVj0BFGHyshoTwNkq9n1HNf36II_Czn0
                        frequency: Published weekly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/6640647216497209344
                      - urn: '7267250675338637312'
                        title: Implications
                        description: >-
                          Implications of the latest advances in tech, shifts in
                          culture, and the art and science of building products.
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E12AQGowHDaEsZrIQ/series-logo_image-shrink_300_300/series-logo_image-shrink_300_300/0/1732647518585?e=1761782400&v=beta&t=fSaMTi60AZ7AhNW1ZZVNn_jyLEPH6u1bBEl-B_Petpk
                        authorName: Scott Belsky
                        authorProfile: https://www.linkedin.com/in/scottbelsky
                        authorUrn: ACoAAAA-LWUBWvoYu3LhTCyylEAp3v_ruqfh9ms
                        frequency: Published biweekly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/7267250675338637312
                      - urn: '7356000404112920576'
                        title: Built Different
                        description: >-
                          A video podcast that goes behind the scenes of
                          technologies that are doing good and doing well.
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D5612AQEVBcblLctxKw/series-logo_image-shrink_300_300/B56ZhXDVMbHcAY-/0/1753807149557?e=1761782400&v=beta&t=hIpOrv9DEHRd0G4VKok635u55R7WfI_QIyJZUiBgEQo
                        authorName: Mohak Shroff
                        authorProfile: https://www.linkedin.com/in/mohakshroff
                        authorUrn: ACoAAAAXPtkB9TGjuEsfcXgmxz-mvVw1XzE2sBc
                        frequency: Published weekly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/7356000404112920576
                      - urn: '6641420720876343296'
                        title: LinkedIn 360 l By GaryVee
                        description: >-
                          Gary Vaynerchuk's monthly recap of the most valuable
                          content on business, social media, marketing and more.
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E12AQGMnncpfIDhLQ/series-logo_image-shrink_300_300/series-logo_image-shrink_300_300/0/1662050735223?e=1761782400&v=beta&t=bnJMZksh2ZmVdz5Q9nPCI2pCjjU3suXXJtF7CqpGdBc
                        authorName: Gary Vaynerchuk
                        authorProfile: https://www.linkedin.com/in/garyvaynerchuk
                        authorUrn: ACoAAACgAVMBb8w4dbaqCMriT5tTYE0H4M_oFKE
                        frequency: Published monthly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/6641420720876343296
                      - urn: '6633853504601550848'
                        title: Notes from Melinda
                        description: Notes from Melinda French Gates.
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E12AQFS0I6iNouVYQ/series-logo_image-shrink_300_300/B4EZjnP6gDIQAY-/0/1756226370919?e=1761782400&v=beta&t=JLq7a8RU7zQo064vl5At-QK-AE3IQlYpWbjHwVLiIM4
                        authorName: Melinda French Gates
                        authorProfile: https://www.linkedin.com/in/melindagates
                        authorUrn: ACoAACP3Z8sBD-VB2ez3ArHe2-9lHoPwTaCGV1c
                        frequency: Published monthly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/6633853504601550848
                      - urn: '7249182762300014593'
                        title: a16z Enterprise Newsletter
                        description: >-
                          News and analysis of the latest trends in B2B and
                          enterprise tech.
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D5612AQHn_-1mzRzr7A/series-logo_image-shrink_300_300/series-logo_image-shrink_300_300/0/1732151063779?e=1761782400&v=beta&t=YvBVjBtpcSDveT6HwPNl5Rq7652MSffG-31LrSCta8M
                        authorName: Andreessen Horowitz
                        authorProfile: https://www.linkedin.com/company/439909/
                        frequency: Published biweekly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/7249182762300014593
                      - urn: '7236593061605113856'
                        title: 'Product Pulse '
                        description: >-
                          Provide valuable insights into product management,
                          share Laura’s industry experiences, and highlight key
                          trends in tech
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E12AQHxEkdrzVGRuQ/series-logo_image-shrink_300_300/series-logo_image-shrink_300_300/0/1725338222706?e=1761782400&v=beta&t=4uNl6DfKDIgEJEmDBgdmoNZeDcS-78Fi3na9DvDVaBg
                        authorName: Laura Teclemariam
                        authorProfile: https://www.linkedin.com/in/laurateclemariam
                        authorUrn: ACoAAACCl_YBa_oykqa3cmAo7JBPTkCJbC2H31k
                        frequency: Published biweekly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/7236593061605113856
                      - urn: '7041765438745182208'
                        title: Making the Difference
                        description: >-
                          The future of work, workforce trends, what we're
                          seeing at Walmart as the nation's largest private
                          employer, and more
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D5612AQHcVsk2Yeb-cw/series-logo_image-shrink_300_300/series-logo_image-shrink_300_300/0/1678887409959?e=1761782400&v=beta&t=wy8XgDItZKyquA2fuMSXL1Ja66F2oGeTLuZvsFRhCWk
                        authorName: Donna Morris
                        authorProfile: https://www.linkedin.com/in/donnamorris2
                        authorUrn: ACoAAAARQ5QBNr_sthvLd4THpuV910cPaooFF7Y
                        frequency: Published monthly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/7041765438745182208
                      - urn: '7183890373289648128'
                        title: Spark
                        description: >-
                          Tips and insights from TED events — plus inspiring
                          extras from our global community
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E12AQGSyfbO_8woUQ/series-logo_image-shrink_300_300/series-logo_image-shrink_300_300/0/1712852746366?e=1761782400&v=beta&t=btKirv6sWpykdGIlHKbOXMsajBNSgsBF84Pq0Cj2jJQ
                        authorName: TED Conferences
                        authorProfile: https://www.linkedin.com/company/610087/
                        frequency: Published monthly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/7183890373289648128
                      - urn: '7181040435673321473'
                        title: Transformative Trailblazers
                        description: >-
                          A Q&A series featuring trailblazers at the forefront
                          of business, technological and cultural
                          transformation.
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E12AQEHW9di5I_g1Q/series-logo_image-shrink_300_300/series-logo_image-shrink_300_300/0/1712093410962?e=1761782400&v=beta&t=1dxWFiL53W7YCefzk-UslPQbYK4I9_bAqr2PMImg2qU
                        authorName: Anneliese Olson
                        authorProfile: https://www.linkedin.com/in/annelieseolson
                        authorUrn: ACoAAACGC_8BWsHWisrF8Ay7NWxtRCVV2mLBRWU
                        frequency: Published monthly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/7181040435673321473
                      - urn: '7074778308969721856'
                        title: The Boardroom View
                        description: >-
                          Authentic insights de-mystifying the boardroom for
                          current and aspiring board members. 
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D5612AQGguFQlWCwKIA/series-logo_image-shrink_300_300/series-logo_image-shrink_300_300/0/1686758580842?e=1761782400&v=beta&t=6AxSoZ1KDdldn-uMYlye6nNixH05YMgn29PhfqMbEDo
                        authorName: Jocelyn Mangan
                        authorProfile: https://www.linkedin.com/in/jocelynmangan
                        authorUrn: ACoAAAAGVOsB1cVPoExB1V4KcRPRc5ZCDAIVAo4
                        frequency: Published biweekly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/7074778308969721856
                      - urn: '7247024170163666944'
                        title: Create Design @ Linkedin
                        description: A look into the Create Design team at LinkedIn
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E12AQHrlxyBB7xMSA/series-logo_image-shrink_300_300/B4EZbQoyJuHkAQ-/0/1747257074601?e=1761782400&v=beta&t=yXvk1KGV_wEdt9r_9FmVSaaOUf5DlRydOG9gbeJIt4Y
                        authorName: Create Design Team
                        authorProfile: https://www.linkedin.com/company/105227916/
                        frequency: Published monthly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/7247024170163666944
                      - urn: '7359641376499687424'
                        title: Trustbuilder
                        description: How to build trust and reputation in the age of AI
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4D12AQE1zqPkk6GRRw/series-logo_image-shrink_300_300/B4DZiKy0JkGkAQ-/0/1754675233870?e=1761782400&v=beta&t=ubMEHkI7_ox-bU_Z-72hNgsby5dHT_VrmWpp6qI1jwY
                        authorName: Greg Snapper
                        authorProfile: https://www.linkedin.com/in/gregsnapper
                        authorUrn: ACoAAADhxLEBDEX-SllIpXPg1Cw0nTpWbhHYqpk
                        frequency: Published weekly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/7359641376499687424
                      - urn: '6982807919197126656'
                        title: Monday Morning Thoughts
                        description: >-
                          Inspirational messages about leadership, business,
                          family, and more. 
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D5612AQGBe0211FMfQw/series-logo_image-shrink_300_300/series-logo_image-shrink_300_300/0/1664831138879?e=1761782400&v=beta&t=0zpojPA-tBnJIfSBbMfzPtkXLBZ7e__vZJf2r0gemZs
                        authorName: Mark Haner
                        authorProfile: https://www.linkedin.com/in/markhaner
                        authorUrn: ACoAAAKkn_gBdU1rnZ3g8Ud9mkkpvy0AEbU-Q6M
                        frequency: Published weekly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/6982807919197126656
                      - urn: '7205209437454680064'
                        title: That Was The Week That Was
                        description: >-
                          A look at the handful of stories that mattered last
                          week. Title taken from the breakthrough 60’s news
                          satire TV show.
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E12AQGvcozRcvyQ9A/series-logo_image-shrink_300_300/series-logo_image-shrink_300_300/0/1721189502204?e=1761782400&v=beta&t=K4Avw20p5CLjFJ5UO2Trl-QglLVEoHKX5b8MqydhJZY
                        authorName: John C Abell
                        authorProfile: https://www.linkedin.com/in/johncabell
                        authorUrn: ACoAAABhexABw5_iaCRSRhrVsMAqlWbBxiVEvGY
                        frequency: Published weekly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/7205209437454680064
                      - urn: '6973323419845111808'
                        title: The Money
                        description: >-
                          The Money delivers the best consumer news from USA
                          TODAY. We break down financial news and get you to the
                          point.
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D5612AQH9Eq7eR9uQkg/series-logo_image-shrink_300_300/series-logo_image-shrink_300_300/0/1662563808443?e=1761782400&v=beta&t=NCqMbfaBaQLDOO66L5PCHdzgE5FZ3bV_lFAdoWJiKQA
                        authorName: USA TODAY
                        authorProfile: https://www.linkedin.com/company/5502/
                        frequency: Published weekly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/6973323419845111808
                      - urn: '7264677059531014146'
                        title: 'The Marketing Collective '
                        description: >-
                          We're continuing to foster a vibrant community of B2B
                          marketing leaders engaging in thoughtful discussions.
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D5612AQGF35krDkSS_w/series-logo_image-shrink_300_300/series-logo_image-shrink_300_300/0/1732033909575?e=1761782400&v=beta&t=BQX-B0RTCOHprhlCz4FhsP4SOxvegIjBsXppvQAysPY
                        authorName: LinkedIn for Marketing
                        authorProfile: https://www.linkedin.com/company/4973896/
                        frequency: Published monthly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/7264677059531014146
                      - urn: '7196623567940153344'
                        title: From the Wealthfront Blog
                        description: Investing insights, financial education, and more
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E12AQFMI-9nnFdnlA/series-logo_image-shrink_300_300/B4EZVNktPzHgAY-/0/1740763223436?e=1761782400&v=beta&t=rOzwnJRg__FTvAjrdi_fjodBwGlxX3g1-PWPN_6Gh6s
                        authorName: Wealthfront
                        authorProfile: https://www.linkedin.com/company/219483/
                        frequency: Published monthly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/7196623567940153344
                      - urn: '7188618756821008384'
                        title: Gametime
                        description: >-
                          Your weekly dive into LinkedIn Games, community tips
                          and the latest puzzle happenings.
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4D12AQHlVnz9GYeiWA/series-logo_image-shrink_300_300/series-logo_image-shrink_300_300/0/1713900261937?e=1761782400&v=beta&t=EU5PbAfY6sSZx8qs6mxG3bBtd9g6X5Y_Jef2FT8mpC8
                        authorName: LinkedIn News
                        authorProfile: https://www.linkedin.com/company/11280505/
                        frequency: Published weekly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/7188618756821008384
                      - urn: '7326389380695109632'
                        title: Sidekicks Conversations
                        description: >-
                          The takeaways, mindset shifts and backstories from
                          real conversations with leaders who are pushing
                          boundaries.
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4D12AQGESt17kEJjTA/series-logo_image-shrink_300_300/B4DZbK4KU0G8Ac-/0/1747160442889?e=1761782400&v=beta&t=y64v4PKyiehN4KbRnmcCaPDJpygy49C-RhqkIrhtQ48
                        authorName: Mike Sievert
                        authorProfile: https://www.linkedin.com/in/sievert
                        authorUrn: ACoAAAB8gmgBEvs0cNZ2ezbjgswUZjUbs_QPDzo
                        frequency: Published monthly
                        newsletterURL: >-
                          https://www.linkedin.com/newsletters/7326389380695109632
                    school:
                      - urn: '2928156'
                        name: IMG Academy
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQGL1FbhcNq_QA/company-logo_400_400/company-logo_400_400/0/1631306829870?e=1761782400&v=beta&t=0y2J1zxD_LvckIbxEUItjM_tpcmtrtRZYAF3oZV4Y2A
                        followerCount: 35592
                        schoolURL: https://www.linkedin.com/school/2928156/
                        companyURL: https://www.linkedin.com/company/2928156/
                      - urn: '15248569'
                        name: Yale University
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQGGJUjGgSYcWQ/company-logo_400_400/company-logo_400_400/0/1631385636084?e=1761782400&v=beta&t=js-199etV-1jlYSCiWTSTymtM4GA3dcC9plrgFOaKB4
                        followerCount: 565778
                        schoolURL: https://www.linkedin.com/school/15248569/
                        companyURL: https://www.linkedin.com/company/15248569/
                      - urn: '167872'
                        name: Y Combinator
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQGPzdBPNxrmEg/company-logo_400_400/company-logo_400_400/0/1673555093250/y_combinator_logo?e=1761782400&v=beta&t=x36Lp8GchxxVLVs94OnbJtFV9s8_AiNQfENdA4SZ8jY
                        followerCount: 1452785
                        schoolURL: https://www.linkedin.com/school/167872/
                        companyURL: https://www.linkedin.com/company/167872/
                      - urn: '2517'
                        name: University of California, Berkeley
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D560BAQGwjF_5CYj_JQ/company-logo_400_400/company-logo_400_400/0/1732135669731/uc_berkeley_logo?e=1761782400&v=beta&t=HThFOELyrLR_4QLD7BVIkRD3PafMuJnrlJIzRG8ECPg
                        followerCount: 984694
                        schoolURL: https://www.linkedin.com/school/2517/
                        companyURL: https://www.linkedin.com/company/2517/
                      - urn: '2519'
                        name: >-
                          University of California, Berkeley, Haas School of
                          Business
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C4E0BAQEc1EFtLIThEw/company-logo_400_400/company-logo_400_400/0/1631312193135?e=1761782400&v=beta&t=2dJtrK2KqDuoYd_3CQ8dDRYoxKEexUDQiS0qzAAhWJc
                        followerCount: 169934
                        schoolURL: https://www.linkedin.com/school/2519/
                        companyURL: https://www.linkedin.com/company/2519/
                      - urn: '18689652'
                        name: San Mateo High School
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQEvr6rNMWfe-Q/company-logo_400_400/company-logo_400_400/0/1631407611968/san_mateo_high_school_logo?e=1761782400&v=beta&t=G6Mhu54-4n002x_IrcIrYg7rb2ewkBvu4z8llkP_Anc
                        followerCount: 2138
                        schoolURL: https://www.linkedin.com/school/18689652/
                        companyURL: https://www.linkedin.com/company/18689652/
                      - urn: '2842'
                        name: University of California, Davis
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C4E0BAQEBG25KNBwuCQ/company-logo_400_400/company-logo_400_400/0/1630629297217/uc_davis_logo?e=1761782400&v=beta&t=qZemvv4lSJ_CTXfJiSzLHduUH8r8l-zAAgp0RDarkXc
                        followerCount: 401408
                        schoolURL: https://www.linkedin.com/school/2842/
                        companyURL: https://www.linkedin.com/company/2842/
                      - urn: '9006914'
                        name: UC Berkeley College of Environmental Design
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4D0BAQFMRIBFo_OZUA/company-logo_400_400/company-logo_400_400/0/1729717492991/cedberkeley_logo?e=1761782400&v=beta&t=Ffp-PDsQnBlqV6rdmQJiPbe8hpzFys08l3m-O7IyGkA
                        followerCount: 11518
                        schoolURL: https://www.linkedin.com/school/9006914/
                        companyURL: https://www.linkedin.com/company/9006914/
                      - urn: '1791'
                        name: Stanford University Graduate School of Business
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQGyTHJCehyEuA/company-logo_400_400/company-logo_400_400/0/1630537027992/stanford_graduate_school_of_business_logo?e=1761782400&v=beta&t=x21mmINu4XvCUJbgaocWq12dzqtDFNwLsOVUTTTaVJA
                        followerCount: 545107
                        schoolURL: https://www.linkedin.com/school/1791/
                        companyURL: https://www.linkedin.com/company/1791/
      tags:
        - Profile
      description: Get a user’s interests by their URN.
  /api/v1/companies/name-lookup:
    get:
      summary: Companies Lookup
      parameters:
        - name: query
          in: query
          required: true
          description: the search query it can be 1 char or multiple
          deprecated: false
          schema:
            type: string
          example: google
      responses:
        '200':
          description: Lookup
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      companies:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: utc-millisec
                            type:
                              type: string
                            displayName:
                              type: string
                      query:
                        type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  companies:
                    - id: '1441'
                      type: COMPANY
                      displayName: Google
                    - id: '1594050'
                      type: COMPANY
                      displayName: Google DeepMind
                    - id: '14547137'
                      type: COMPANY
                      displayName: Google Operations Center
                    - id: '2171947'
                      type: COMPANY
                      displayName: Google Fiber
                    - id: '18336369'
                      type: COMPANY
                      displayName: Google for Startups
                    - id: '19184331'
                      type: COMPANY
                      displayName: Google Summer of Code
                    - id: '11162656'
                      type: COMPANY
                      displayName: Google Developers Group
                    - id: '28103'
                      type: COMPANY
                      displayName: Mandiant (part of Google Cloud)
                    - id: '98808973'
                      type: COMPANY
                      displayName: Google Cloud Skills Boost
                    - id: '67280347'
                      type: COMPANY
                      displayName: Google Digital Academy (Skillshop)
                  query: google
      tags:
        - Companies
      description: >-
        Search companies by name. This is an autocomplete-style lookup, ideal
        when you have a brand or partial name and want suggestions for your
        query.
  /api/v1/companies/company/universal-name-to-id:
    get:
      summary: Get Company ID
      parameters:
        - name: universalName
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: google
      responses:
        '200':
          description: Get Company ID
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                        format: utc-millisec
                      universalName:
                        type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  id: '1441'
                  universalName: google
      tags:
        - Companies
      description: Get a company’s ID using its universal name (username).
  /api/v1/companies/jobs:
    get:
      summary: Get Company Jobs
      parameters:
        - name: companyIDs
          in: query
          required: true
          description: Companies ID
          deprecated: false
          schema:
            type: string
          example: 1337,1441
        - name: start
          in: query
          required: false
          deprecated: false
          schema:
            type: integer
          example: '0'
      responses:
        '200':
          description: Jobs
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      jobs:
                        type: array
                        items:
                          type: object
                          properties:
                            jobID:
                              type: string
                              format: utc-millisec
                            title:
                              type: string
                            company:
                              type: object
                              properties:
                                name:
                                  type: string
                                companyID:
                                  type: string
                                  format: utc-millisec
                                imageUrl:
                                  type: string
                                  format: uri
                            location:
                              type: string
                            jobURL:
                              type: string
                              format: uri
                            listedAt:
                              type: integer
                            verified:
                              type: boolean
                      total:
                        type: integer
                      start:
                        type: integer
                      count:
                        type: integer
                      hasMore:
                        type: boolean
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  jobs:
                    - jobID: '4312896443'
                      title: >-
                        Software Engineer, Engineering Productivity, Google
                        Cloud Platforms
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Sunnyvale, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4312896443
                      listedAt: 1761988056000
                      verified: true
                    - jobID: '4314044709'
                      title: >-
                        Software Engineer, Astro Infrastructure, Information
                        Retrieval
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: San Francisco, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4314044709
                      listedAt: 1760379178000
                      verified: true
                    - jobID: '4316927757'
                      title: Web Solutions Engineer III, YouTube
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: New York, NY (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4316927757
                      listedAt: 1761048826000
                      verified: true
                    - jobID: '4319362143'
                      title: >-
                        Cloud Data Developer, Professional Services, Google
                        Cloud
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Toronto, ON (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4319362143
                      listedAt: 1761675130000
                      verified: true
                    - jobID: '4288814309'
                      title: Software Engineer III, YouTube
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Mountain View, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4288814309
                      listedAt: 1761643600000
                      verified: true
                    - jobID: '4314065167'
                      title: Software Engineer, University Graduate
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Sydney, New South Wales, Australia (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4314065167
                      listedAt: 1760379178000
                      verified: true
                    - jobID: '4302776044'
                      title: Software Engineer III, Core
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: San Francisco, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4302776044
                      listedAt: 1762080312000
                      verified: true
                    - jobID: '4312183299'
                      title: Software Engineer, High Performance Computing
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Kirkland, WA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4312183299
                      listedAt: 1761904963000
                      verified: true
                    - jobID: '4315024090'
                      title: Software Engineer II, Google Cloud
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Tel Aviv-Yafo, Tel Aviv District, Israel (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4315024090
                      listedAt: 1760551996000
                      verified: true
                    - jobID: '4305710748'
                      title: >-
                        Software Engineer, AI Innovation and Research, Task
                        Automation
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: San Francisco, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4305710748
                      listedAt: 1760781411000
                      verified: true
                    - jobID: '4315013838'
                      title: AI Developer Engineer, Cloud AI
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Sunnyvale, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4315013838
                      listedAt: 1760551996000
                      verified: true
                    - jobID: '4319251786'
                      title: >-
                        Software Engineer, GDC-AG Virtual Environments
                        Infrastructure
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Sunnyvale, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4319251786
                      listedAt: 1761567069000
                      verified: true
                    - jobID: '4284144587'
                      title: Software Engineer, Sales CRM, Full Stack, Google Ads
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Mountain View, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4284144587
                      listedAt: 1760692874000
                      verified: true
                    - jobID: '4323997122'
                      title: Staff Software Engineer, Full-stack (Observability)
                      company:
                        name: LinkedIn
                        companyID: '1337'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1763596800&v=beta&t=9ueMEDHaN7Z1tVmF80WGUmFuyx597W7mC_djGrf_VVQ
                      location: Bengaluru, Karnataka, India (Hybrid)
                      jobURL: https://www.linkedin.com/jobs/view/4323997122
                      listedAt: 1761286949000
                      verified: true
                    - jobID: '4304001803'
                      title: Senior Software Engineer - Full Stack
                      company:
                        name: LinkedIn
                        companyID: '1337'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1763596800&v=beta&t=9ueMEDHaN7Z1tVmF80WGUmFuyx597W7mC_djGrf_VVQ
                      location: Bengaluru, Karnataka, India (Hybrid)
                      jobURL: https://www.linkedin.com/jobs/view/4304001803
                      listedAt: 1760434048000
                      verified: true
                    - jobID: '4319317080'
                      title: >-
                        Software Engineer III, Full Stack, Guided Support
                        Experience
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Sunnyvale, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4319317080
                      listedAt: 1761631949000
                      verified: true
                    - jobID: '4314020159'
                      title: Software Engineer II, Full Stack, Google Cloud
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Bengaluru, Karnataka, India (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4314020159
                      listedAt: 1760357618000
                      verified: true
                    - jobID: '4319447312'
                      title: Software Engineer III, AI/ML
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: San Francisco, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4319447312
                      listedAt: 1761761577000
                      verified: true
                    - jobID: '4315709514'
                      title: Software Engineer III, AI/ML, YouTube
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Mountain View, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4315709514
                      listedAt: 1760703145000
                      verified: true
                    - jobID: '4308272258'
                      title: Software Engineer III, Full Stack, Core
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Sunnyvale, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4308272258
                      listedAt: 1761301131000
                      verified: true
                    - jobID: '4315517582'
                      title: Software Engineer III, Full Stack, Payments
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Mountain View, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4315517582
                      listedAt: 1760659894000
                      verified: true
                    - jobID: '4320069627'
                      title: Application Engineer
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Bengaluru, Karnataka, India (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4320069627
                      listedAt: 1761912704000
                      verified: true
                    - jobID: '4315525166'
                      title: Software Engineer III, Front End, Labs
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Mountain View, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4315525166
                      listedAt: 1760659894000
                      verified: true
                    - jobID: '4317795945'
                      title: Fullstack Software Engineer, Dataform
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Warsaw, Mazowieckie, Poland (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4317795945
                      listedAt: 1761221491000
                      verified: true
                    - jobID: '4320363441'
                      title: >-
                        Software Engineer III, Infrastructure, Google Cloud
                        Networking
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Sunnyvale, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4320363441
                      listedAt: 1762171858000
                      verified: true
                    - jobID: '4318337944'
                      title: Software Engineer, Full Stack, Retail Ads
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Mountain View, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4318337944
                      listedAt: 1761307914000
                      verified: true
                    - jobID: '4317108920'
                      title: Software Engineer III, Chrome
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Los Angeles, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4317108920
                      listedAt: 1761091893000
                      verified: true
                    - jobID: '4303108599'
                      title: >-
                        Software Engineer II, Filestore Control Plane, Google
                        Cloud
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Tel Aviv-Yafo, Tel Aviv District, Israel (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4303108599
                      listedAt: 1762078476000
                      verified: true
                    - jobID: '4319271733'
                      title: Software Engineer III, Core
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Seattle, WA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4319271733
                      listedAt: 1761567069000
                      verified: true
                    - jobID: '4319869800'
                      title: Software Engineer II, Google Cloud
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Bengaluru, Karnataka, India (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4319869800
                      listedAt: 1761912704000
                      verified: true
                    - jobID: '4317961056'
                      title: Software Engineer, Google Distributed Cloud Air-Gapped
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Sunnyvale, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4317961056
                      listedAt: 1761243117000
                      verified: true
                    - jobID: '4305746583'
                      title: Customer Engineer, Data and AI, Google Cloud
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Sydney, New South Wales, Australia (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4305746583
                      listedAt: 1760779824000
                      verified: true
                    - jobID: '4319261797'
                      title: Software Engineer, Cloud Databases
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Kirkland, WA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4319261797
                      listedAt: 1761567069000
                      verified: true
                    - jobID: '4320363442'
                      title: 软件工程实习生，2026 年
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Shanghai, Shanghai, China (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4320363442
                      listedAt: 1762170936000
                      verified: true
                    - jobID: '4318640112'
                      title: Software Engineer III, AI/ML GenAI, YouTube
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: San Bruno, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4318640112
                      listedAt: 1761351064000
                      verified: true
                    - jobID: '4319416193'
                      title: Software Engineer, Chrome, macOS
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: New York, NY (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4319416193
                      listedAt: 1761739904000
                      verified: true
                    - jobID: '4304305771'
                      title: Software Engineer III, Core
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: San Francisco, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4304305771
                      listedAt: 1760524072000
                      verified: true
                    - jobID: '4320443142'
                      title: >-
                        Software Engineer III, Site Reliability Engineering,
                        Traffic Edge SRE
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: London, England, United Kingdom (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4320443142
                      listedAt: 1762171858000
                      verified: true
                    - jobID: '4312190710'
                      title: >-
                        Software Engineer, Machine Learning, App Safety
                        Engineering
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Mountain View, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4312190710
                      listedAt: 1761903026000
                      verified: true
                    - jobID: '4312188192'
                      title: Software Engineer, ML Infrastructure, Chrome
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Seattle, WA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4312188192
                      listedAt: 1761903236000
                      verified: true
                    - jobID: '4309765287'
                      title: Software Engineer III, Generative AI, Google Cloud AI
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Seattle, WA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4309765287
                      listedAt: 1761642821000
                      verified: true
                    - jobID: '4317358470'
                      title: Software Engineer, AI Platform
                      company:
                        name: LinkedIn
                        companyID: '1337'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1763596800&v=beta&t=9ueMEDHaN7Z1tVmF80WGUmFuyx597W7mC_djGrf_VVQ
                      location: Mountain View, CA (Hybrid)
                      jobURL: https://www.linkedin.com/jobs/view/4317358470
                      listedAt: 1760984538000
                      verified: true
                    - jobID: '4315701716'
                      title: Software Engineer II, Google Search Console
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Tel Aviv-Yafo, Tel Aviv District, Israel (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4315701716
                      listedAt: 1760703144000
                      verified: true
                    - jobID: '4319853908'
                      title: Software Engineer III, Fitness, AI Coaching
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: London, England, United Kingdom (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4319853908
                      listedAt: 1761847900000
                      verified: true
                    - jobID: '4317760387'
                      title: Software Engineer III, Geo Map the World
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: New York, NY (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4317760387
                      listedAt: 1761199860000
                      verified: true
                    - jobID: '4319366664'
                      title: Software Engineer III, Site Reliability Engineering
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: San Francisco, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4319366664
                      listedAt: 1761739904000
                      verified: true
                    - jobID: '4318356140'
                      title: Software Engineer, Cloud Pub/Sub, BigQuery Integration
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: New York, NY (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4318356140
                      listedAt: 1761307914000
                      verified: true
                    - jobID: '4316675101'
                      title: Software Engineer II, Full Stack, Core
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Mexico City, Mexico (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4316675101
                      listedAt: 1761005506000
                      verified: true
                    - jobID: '4308825824'
                      title: Software Engineer III, Wear OS, Google Maps
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: San Francisco, CA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4308825824
                      listedAt: 1761383517000
                      verified: true
                    - jobID: '4308589432'
                      title: Software Engineer, BigQuery Platform, Infrastructure
                      company:
                        name: Google
                        companyID: '1441'
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1763596800&v=beta&t=UK_gBBgDh8DHnAppNKgvtzlziCK0y3p_EdB_AlbMEo8
                      location: Kirkland, WA (On-site)
                      jobURL: https://www.linkedin.com/jobs/view/4308589432
                      listedAt: 1761385443000
                      verified: true
                  total: 4575
                  start: 0
                  count: 50
                  hasMore: true
      tags:
        - Companies
      description: Get available jobs for specified companies by their IDs.
  /api/v1/companies/company/affiliated-pages:
    get:
      summary: Get Company Affiliated Pages
      parameters:
        - name: id
          in: query
          required: true
          description: Company ID
          deprecated: false
          schema:
            type: integer
          example: '1337'
      responses:
        '200':
          description: Affiliated Pages
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      affiliatedPages:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: utc-millisec
                            name:
                              type: string
                            industry:
                              type: string
                            type:
                              type: string
                            followerCount:
                              type: integer
                            following:
                              type: boolean
                            linkedinUrl:
                              type: string
                              format: uri
                            logos:
                              type: array
                              items:
                                type: object
                                properties:
                                  url:
                                    type: string
                                    format: uri
                                  width:
                                    type: integer
                                  height:
                                    type: integer
                      count:
                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  affiliatedPages:
                    - id: '4973897'
                      name: LinkedIn for Sales
                      industry: Software Development
                      type: Showcase page
                      followerCount: 560699
                      following: false
                      linkedinUrl: >-
                        https://www.linkedin.com/showcase/linkedin-social-selling/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFkiMXPKAXo0Q/company-logo_200_200/company-logo_200_200/0/1719404287274/linkedin_social_selling_logo?e=1763596800&v=beta&t=5VtXe6A-mbK1P-ygfj7MCiJWuZdMQbxbl1heQYSR2tk
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFkiMXPKAXo0Q/company-logo_100_100/company-logo_100_100/0/1719404287274/linkedin_social_selling_logo?e=1763596800&v=beta&t=8irsNlG3ssmdo_RwOGy8VxczLZZUkdbW2EwHWZumHr4
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFkiMXPKAXo0Q/company-logo_400_400/company-logo_400_400/0/1719404287274/linkedin_social_selling_logo?e=1763596800&v=beta&t=qBXCeutjVU8szONAbpjOZnhNzwCeBE0hAA6z47RW61E
                          width: 400
                          height: 400
                    - id: '4973896'
                      name: LinkedIn for Marketing
                      industry: Advertising Services
                      type: Showcase page
                      followerCount: 4912105
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/linkedin-for-mktg/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQEJizgp-XVuMg/company-logo_200_200/company-logo_200_200/0/1719419346821/linkedin_ads_logo?e=1763596800&v=beta&t=rZ-LdCAs1OPWIN3_pHTtjNKlNTAlS_o3Y95hhSChH_g
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQEJizgp-XVuMg/company-logo_100_100/company-logo_100_100/0/1719419346821/linkedin_ads_logo?e=1763596800&v=beta&t=eRnBC9du1zMgj2htqWRREUlyy7i2tl2yMhtM7o78FR0
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQEJizgp-XVuMg/company-logo_400_400/company-logo_400_400/0/1719419346821/linkedin_ads_logo?e=1763596800&v=beta&t=YA3EdD-v5WjHhVktaoTxJrNHtsZJ0FhOPUBbuS4e_so
                          width: 400
                          height: 400
                    - id: '39939'
                      name: Lynda.com
                      industry: E-Learning Providers
                      type: Subsidiary
                      followerCount: 214167
                      following: false
                      linkedinUrl: https://www.linkedin.com/company/lynda-com/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQFfDMello2Gtg/company-logo_200_200/company-logo_200_200/0/1631320875045?e=1763596800&v=beta&t=O9bY7wVuw58WRXocy88ypO_jG7nVG_Cb2c_f_Faml6M
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQFfDMello2Gtg/company-logo_100_100/company-logo_100_100/0/1631320875045?e=1763596800&v=beta&t=fqG3NYxza4n-1hhzqpYjO0q3B-8SIVSiHdiALXRaS60
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQFfDMello2Gtg/company-logo_400_400/company-logo_400_400/0/1631320875045?e=1763596800&v=beta&t=pH2Or-fMhNIHoz7rvhmYEEH73fEBweqggXYoeBXySNw
                          width: 400
                          height: 400
                    - id: '108303737'
                      name: Small Business Builders
                      industry: Marketing Services
                      type: Showcase page
                      followerCount: 363
                      following: false
                      linkedinUrl: >-
                        https://www.linkedin.com/showcase/small-business-builders/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQEWTi85SfrN0A/company-logo_100_100/B4EZifFBXhGcAg-/0/1755015550762?e=1763596800&v=beta&t=M9ole9AADIeChXRPinufHLvL2UyhCQnwZ7jrrb2Qdfs
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQEWTi85SfrN0A/company-logo_200_200/B4EZifFBXhGcAY-/0/1755015550762?e=1763596800&v=beta&t=FyAPxh5vCQOchkOWWA7mfWJo7RrloacKRaVqEKxoHvM
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQEWTi85SfrN0A/company-logo_400_400/B4EZifFBXhGcAo-/0/1755015550762?e=1763596800&v=beta&t=0snywEZvSRh2lOal_fk5xMXD0GKXhv47_eQpxWlpxIM
                          width: 400
                          height: 400
                    - id: '1664520'
                      name: Bright.com
                      industry: Technology, Information and Internet
                      type: Acquisition
                      followerCount: 4999
                      following: false
                      linkedinUrl: https://www.linkedin.com/company/bright.com/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFrzS5kBbRlBw/company-logo_200_200/company-logo_200_200/0/1631375586562?e=1763596800&v=beta&t=IwZFQWzCX1Or8t_dj4KK29qjfQCFP_wzbXFX8H50Pr8
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFrzS5kBbRlBw/company-logo_100_100/company-logo_100_100/0/1631375586562?e=1763596800&v=beta&t=aqvVp7SVQOyazk7yFNeqSnq6XYiEzIHwqr2ssiw9uqc
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFrzS5kBbRlBw/company-logo_400_400/company-logo_400_400/0/1631375586562?e=1763596800&v=beta&t=GG_ikJtYO4DNSCSkFTJ4Gdc0CrTXEm0ZLYxgtqi0LU8
                          width: 400
                          height: 400
                    - id: '108908897'
                      name: LinkedIn Interview Prep AI
                      industry: Technology, Information and Internet
                      type: Showcase page
                      followerCount: 2716
                      following: false
                      linkedinUrl: >-
                        https://www.linkedin.com/showcase/linkedin-interview-prep-ai/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHd0SSBRAYL7w/company-logo_100_100/B4EZlesImmIoAc-/0/1758230252268?e=1763596800&v=beta&t=r0bpnMMpxAnidrCvqq9apCk64YlbNMoHU-aZ9iSzo8I
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHd0SSBRAYL7w/company-logo_200_200/B4EZlesImmIoAU-/0/1758230252268?e=1763596800&v=beta&t=4XBXrgnqWVsyKmnY7pxPuHxg8cQN-jYfIgb3-LKQjAk
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHd0SSBRAYL7w/company-logo_400_400/B4EZlesImmIoAk-/0/1758230252268?e=1763596800&v=beta&t=mRjshhd4Q8kI3oAU7K8rCBwunJtTYutH8PAM269iknI
                          width: 400
                          height: 400
                    - id: '108908898'
                      name: LinkedIn Learning AI-powered Coaching
                      industry: Technology, Information and Internet
                      type: Showcase page
                      followerCount: 387
                      following: false
                      linkedinUrl: >-
                        https://www.linkedin.com/showcase/linkedin-learning-ai-powered-coaching/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHvmBCSQ1Sdhw/company-logo_100_100/B4EZlevTjwGYAU-/0/1758231083606?e=1763596800&v=beta&t=ynnNV3vbpY6VaLPLOaePTogZA4QKTgL2heFH_cbAfIk
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHvmBCSQ1Sdhw/company-logo_400_400/B4EZlevTjwGYAc-/0/1758231083606?e=1763596800&v=beta&t=fIIn7gJuDIjqPvyUVjpblORaslCXKd72TrxONxLRSN4
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHvmBCSQ1Sdhw/company-logo_200_200/B4EZlevTjwGYAM-/0/1758231083606?e=1763596800&v=beta&t=qizdY-xseBE6Lk_tCqRpSq99ac_L94Styzt7d23mIjE
                          width: 200
                          height: 200
                    - id: '102453306'
                      name: Crossclimb, a puzzle by LinkedIn
                      industry: Computer Games
                      type: Showcase page
                      followerCount: 85630
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/crossclimb/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQH6KfROaigYOw/company-logo_100_100/B4EZWpfv8rGYAQ-/0/1742305427575/crossclimb_logo?e=1763596800&v=beta&t=vGbGqWKwcq5hjobtPSqgW2_Z_VB9SZLim_KhMcaCYw4
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQH6KfROaigYOw/company-logo_400_400/B4EZWpfv8rGYAY-/0/1742305427575/crossclimb_logo?e=1763596800&v=beta&t=4U5JPVhPwYvuU4sDobehlq5mxsFqLioZwzSiDhJU-sE
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQH6KfROaigYOw/company-logo_200_200/B4EZWpfv8rGYAI-/0/1742305427575/crossclimb_logo?e=1763596800&v=beta&t=99S56YesCrwXEz9dzR9hdxEA5GfKDwDU6dnqrpDK5lM
                          width: 200
                          height: 200
                    - id: '108344401'
                      name: The CEO Playbook
                      industry: Marketing Services
                      type: Showcase page
                      followerCount: 432
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/theceoplaybook/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQG_eh1UQ002YA/company-logo_100_100/B4EZjNUCS3GwAY-/0/1755791238790?e=1763596800&v=beta&t=L57iXcJAz2lVMzVWlXnCEpemhRRvRRBhR1cuLIyScEo
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQG_eh1UQ002YA/company-logo_400_400/B4EZjNUCS3GwAg-/0/1755791238790?e=1763596800&v=beta&t=Fi5HjIjoLRS81lgjWmWmptVUmIW0jAvnp_vkEML85WQ
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQG_eh1UQ002YA/company-logo_200_200/B4EZjNUCS3GwAQ-/0/1755791238790?e=1763596800&v=beta&t=jaLKpf55HaiE2jIQ5t3hYgJDcn1IuYNLcPe9ORPGD14
                          width: 200
                          height: 200
                    - id: '108072276'
                      name: Shows by LinkedIn
                      industry: Marketing Services
                      type: Showcase page
                      followerCount: 217
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/shows-by-linkedin/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGztSb8htqJ-g/company-logo_400_400/B4EZhcGQdvHgAY-/0/1753891801268?e=1763596800&v=beta&t=7r_QsjdP7HRK0LhKd4hzKzd1-SOrRBBjGX6E1pvT_1s
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGztSb8htqJ-g/company-logo_200_200/B4EZhcGQdvHgAI-/0/1753891801268?e=1763596800&v=beta&t=m8xK_0nImaIr3aUiaykd2gi9sE-Xb42DLrevJYq-EOk
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGztSb8htqJ-g/company-logo_100_100/B4EZhcGQdvHgAQ-/0/1753891801268?e=1763596800&v=beta&t=pqVVIAtkAzP9w1mJeBvGxBBiVIwM45cSFt-UFpm_Hv4
                          width: 100
                          height: 100
                    - id: '64980090'
                      name: The B2B Institute
                      industry: Advertising Services
                      type: Showcase page
                      followerCount: 31928
                      following: false
                      linkedinUrl: >-
                        https://www.linkedin.com/showcase/the-b2b-institute-linkedin/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHvX1kDng-Rdw/company-logo_200_200/company-logo_200_200/0/1719608724254/the_b2b_institute_linkedin_logo?e=1763596800&v=beta&t=Cms8-wtywc_dGfvbRJ4R_otp2CbXie6U1oNNCpcNkIM
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHvX1kDng-Rdw/company-logo_100_100/company-logo_100_100/0/1719608724254/the_b2b_institute_linkedin_logo?e=1763596800&v=beta&t=i_qLOgqScMQdxgpF2IHY8skd-OCPsEhTbT-AFhVOKt4
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHvX1kDng-Rdw/company-logo_400_400/company-logo_400_400/0/1719608724254/the_b2b_institute_linkedin_logo?e=1763596800&v=beta&t=Ua5Ge7K_Mns8xYWRN4S8cjvsZk0ziWPV6TfsTvjAm74
                          width: 400
                          height: 400
                    - id: '80010593'
                      name: LinkedIn Engineering
                      industry: Internet Publishing
                      type: Showcase page
                      followerCount: 11272
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/linkedineng/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQEKVbGs_lfKiQ/company-logo_200_200/company-logo_200_200/0/1646957677778?e=1763596800&v=beta&t=4VwRjYTG7_vR4oFS2WjMVViiAPK0I4l2OkWsEygtnx4
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQEKVbGs_lfKiQ/company-logo_100_100/company-logo_100_100/0/1646957677779?e=1763596800&v=beta&t=xX69e0cLsosRS3E9LrTbNfSq4pixwGV4J1xT30YPyCM
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQEKVbGs_lfKiQ/company-logo_400_400/company-logo_400_400/0/1646957677779?e=1763596800&v=beta&t=DfgZQonNzzsgf1cwTw_vkvy872cDt3cFQ08fF0aIc0M
                          width: 400
                          height: 400
                    - id: '105128426'
                      name: Tango, a puzzle by LinkedIn
                      industry: Computer Games
                      type: Showcase page
                      followerCount: 4737467
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/tango-game/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQEG8t1inEvGQw/company-logo_100_100/B4EZWqYfoGHcAQ-/0/1742320302885/tango_game_logo?e=1763596800&v=beta&t=u5I5AcOMbUyGmx9PzQFUnOVbl8aCfU8snFw8xMu5phc
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQEG8t1inEvGQw/company-logo_400_400/B4EZWqYfoGHcAY-/0/1742320302885/tango_game_logo?e=1763596800&v=beta&t=k76QLzf1XM2hEjISe2weNdB5IPr1itHS2SoZvVZtKh4
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQEG8t1inEvGQw/company-logo_200_200/B4EZWqYfoGHcAI-/0/1742320302885/tango_game_logo?e=1763596800&v=beta&t=0aMq0PoTPdhQX7tscMcVhSUw0f72Rtfw2AsHW7KS76Y
                          width: 200
                          height: 200
                    - id: '1725994'
                      name: Newsle
                      industry: Technology, Information and Internet
                      type: Acquisition
                      followerCount: 4366
                      following: false
                      linkedinUrl: https://www.linkedin.com/company/newsle/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFD0fR_pjxTew/company-logo_200_200/company-logo_200_200/0/1631390414361?e=1763596800&v=beta&t=3bT8Ad6enLHkVX34Ka2WMTA-d9Sg6L-N8ZeFzFpznJA
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFD0fR_pjxTew/company-logo_100_100/company-logo_100_100/0/1631390414361?e=1763596800&v=beta&t=upBxqvgu7p7hPzFcYLiCb4DAu8vnSzjtBj_PWtIh16Y
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFD0fR_pjxTew/company-logo_400_400/company-logo_400_400/0/1631390414361?e=1763596800&v=beta&t=ERf3e4g8pDRAxl0xTy6-taSaXZk7_X1wQ8f1L0_Z61g
                          width: 400
                          height: 400
                    - id: '72771296'
                      name: LinkedIn WIT
                      industry: Internet Publishing
                      type: Showcase page
                      followerCount: 11442
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/linkedin-wit/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQG3bFm1CKJSIQ/company-logo_200_200/company-logo_200_200/0/1719610622756/linkedin_wit_logo?e=1763596800&v=beta&t=1dZjjVRR5Ns07tFGsJnFax_cAj7lj7N4pNSDQc0zRH0
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQG3bFm1CKJSIQ/company-logo_100_100/company-logo_100_100/0/1719610622756/linkedin_wit_logo?e=1763596800&v=beta&t=6lUEpHymbFIfU1O8C6R_6WJjdSRYJ3SSIhwGzO5mxis
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQG3bFm1CKJSIQ/company-logo_400_400/company-logo_400_400/0/1719610622756/linkedin_wit_logo?e=1763596800&v=beta&t=ITYu3RCbdou31mWn7gXj1ZzKE2GcELmfvJna5IslCTQ
                          width: 400
                          height: 400
                    - id: '80744552'
                      name: LinkedIn Life
                      industry: Internet Publishing
                      type: Showcase page
                      followerCount: 119156
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/linkedinlife/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQE6WIfF5obBDQ/company-logo_200_200/company-logo_200_200/0/1719333570580/linkedinlife_logo?e=1763596800&v=beta&t=ayNjp2FWjVXt_90qBWizYSK-fw_MbRLAZNAMEpf_6II
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQE6WIfF5obBDQ/company-logo_100_100/company-logo_100_100/0/1719333570580/linkedinlife_logo?e=1763596800&v=beta&t=oHzdCbvGlceIovyUOQ62yXSKfm-y7L7AEnmamrOl34Q
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQE6WIfF5obBDQ/company-logo_400_400/company-logo_400_400/0/1719333570580/linkedinlife_logo?e=1763596800&v=beta&t=8n2wXXOsArhKNAvJM6JULzr2gHsnvByx0CxM3iSTfhk
                          width: 400
                          height: 400
                    - id: '12662648'
                      name: LinkedIn for Small Business
                      industry: Internet Publishing
                      type: Showcase page
                      followerCount: 415839
                      following: false
                      linkedinUrl: >-
                        https://www.linkedin.com/showcase/linkedin-for-small-business/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQES-wGerW1ANA/company-logo_200_200/company-logo_200_200/0/1630569337393/linkedin_for_small_business_logo?e=1763596800&v=beta&t=BmTpwARdVr5-S0aNZoT9HPzfZ81cf1xxmrOrsC6kKLs
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQES-wGerW1ANA/company-logo_100_100/company-logo_100_100/0/1630569337393/linkedin_for_small_business_logo?e=1763596800&v=beta&t=XqM1HYFU3bmlFIvzgpPONZ4_4oRIfL4O5l4AvMlAMEU
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQES-wGerW1ANA/company-logo_400_400/company-logo_400_400/0/1630569337393/linkedin_for_small_business_logo?e=1763596800&v=beta&t=A2HRXvNgEK0kL9eAX0wDrzx3sxMaTh5n_NUhsih_SwU
                          width: 400
                          height: 400
                    - id: '103342867'
                      name: LinkedIn Help
                      industry: Software Development
                      type: Showcase page
                      followerCount: 6118
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/linkedin-help/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQFCPJx-iS3_hg/company-logo_200_200/company-logo_200_200/0/1719421281617?e=1763596800&v=beta&t=Wb8f4ckieVO7x3DdjirjP56zzjphK30vAv0MXpkeirg
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQFCPJx-iS3_hg/company-logo_100_100/company-logo_100_100/0/1719421281617?e=1763596800&v=beta&t=FK41Af_fuWXfrshDg9NYEMiNKsx74pxVxZqN7vbhU4Y
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQFCPJx-iS3_hg/company-logo_400_400/company-logo_400_400/0/1719421281617?e=1763596800&v=beta&t=Y02c4-hLuIIxJ0fjW78uNI_fQpg5OP30brl0vifM2kI
                          width: 400
                          height: 400
                    - id: '10091994'
                      name: LinkedIn Social Impact
                      industry: Internet Publishing
                      type: Showcase page
                      followerCount: 94360
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/linkedinsocialimpact/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFSDXB83kaC7g/company-logo_200_200/company-logo_200_200/0/1719339135873/linkedinsocialimpact_logo?e=1763596800&v=beta&t=2G6mU96OW_NyCBKrnGN4aX6fBT9zJTsbE7bSl9UMTRM
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFSDXB83kaC7g/company-logo_100_100/company-logo_100_100/0/1719339135873/linkedinsocialimpact_logo?e=1763596800&v=beta&t=IxZFSiFOqznqFWxsHWOkk6xTZceFLh0Gn6FAhFyWbao
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFSDXB83kaC7g/company-logo_400_400/company-logo_400_400/0/1719339135873/linkedinsocialimpact_logo?e=1763596800&v=beta&t=Jxz9uDHEbTY80vM_GTXBpBBVGZJvgROL-bfC0AYL_K0
                          width: 400
                          height: 400
                    - id: '108070324'
                      name: AI in Action
                      industry: Technology, Information and Internet
                      type: Showcase page
                      followerCount: 563
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/ainaction/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQE_DjXfbdMFBQ/company-logo_200_200/B4EZiKsOb9HEAI-/0/1754673506563/ainaction_logo?e=1763596800&v=beta&t=G9tN0eyEMMjO6WkPVRQ0PY7YNza-tUd29fmEcOHLcd8
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQE_DjXfbdMFBQ/company-logo_100_100/B4EZiKsOb9HEAU-/0/1754673506563/ainaction_logo?e=1763596800&v=beta&t=TOmDBZdSBX5l5c-32-kQYeNBvB0k5q0TLwMLGDTHpDs
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQE_DjXfbdMFBQ/company-logo_400_400/B4EZiKsOb9HEAc-/0/1754673506563/ainaction_logo?e=1763596800&v=beta&t=n63Lte6rzTPYfit_HZbC1ylpRa9450fBcLvkdNJZPRk
                          width: 400
                          height: 400
                    - id: '3632240'
                      name: LinkedIn's Economic Graph
                      industry: Technology, Information and Internet
                      type: Showcase page
                      followerCount: 270079
                      following: false
                      linkedinUrl: >-
                        https://www.linkedin.com/showcase/linkedin-economic-graph/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGcXDqcZUXvTw/company-logo_200_200/company-logo_200_200/0/1719339106463/linkedin_economic_graph_logo?e=1763596800&v=beta&t=P9IjJZl-2fk6IT7zRiHaJa0KM5gdNIcRFBwoKOQTMLY
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGcXDqcZUXvTw/company-logo_100_100/company-logo_100_100/0/1719339106463/linkedin_economic_graph_logo?e=1763596800&v=beta&t=w0AMdilHuXAsEqXmtGcsDIckZ-MnLq64ezuoIktxhl8
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGcXDqcZUXvTw/company-logo_400_400/company-logo_400_400/0/1719339106463/linkedin_economic_graph_logo?e=1763596800&v=beta&t=Bo_z0w9lEnwjkXwpLgNTr9zrSXRbbV3QBmzARXz1mBE
                          width: 400
                          height: 400
                    - id: '2587638'
                      name: Drawbridge (acquired by LinkedIn)
                      industry: Technology, Information and Internet
                      type: Acquisition
                      followerCount: 8960
                      following: false
                      linkedinUrl: https://www.linkedin.com/company/drawbridge-inc-/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQGyS5YY0AvLkg/company-logo_200_200/company-logo_200_200/0/1631414524346/drawbridge_inc__logo?e=1763596800&v=beta&t=Ri-hHLpOPortnzEzfpdD-WTGT8zZX-EJoBwFWrICj-s
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQGyS5YY0AvLkg/company-logo_100_100/company-logo_100_100/0/1631414524346/drawbridge_inc__logo?e=1763596800&v=beta&t=m7bM6QoHpc3hWQeDhsKksRSxO74RafRmDMU8e1CUFeQ
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQGyS5YY0AvLkg/company-logo_400_400/company-logo_400_400/0/1631414524346/drawbridge_inc__logo?e=1763596800&v=beta&t=7T_o8QHoZTrADTR7KcvKPSHtNDI613QeV7hpRCLBZa4
                          width: 400
                          height: 400
                    - id: '70260066'
                      name: LinkedIn for Nonprofits
                      industry: Technology, Information and Internet
                      type: Showcase page
                      followerCount: 320373
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/linkedinfornonprofits/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHXvStS109OmA/company-logo_200_200/company-logo_200_200/0/1719343623277/linkedinfornonprofits_logo?e=1763596800&v=beta&t=snYkhcZXXswKef-MR-fFudSpI6jEDhaCQN8lvzhwhyw
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHXvStS109OmA/company-logo_100_100/company-logo_100_100/0/1719343623277/linkedinfornonprofits_logo?e=1763596800&v=beta&t=Lv4T7KJQCA_GZFKneKYedWW89d7Hw41rS5-zKVtjIk0
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHXvStS109OmA/company-logo_400_400/company-logo_400_400/0/1719343623277/linkedinfornonprofits_logo?e=1763596800&v=beta&t=aMLS8VyNTjxiKXX0aCjPAIDO1ZfSQX93xMQpCUcHmE4
                          width: 400
                          height: 400
                    - id: '102459342'
                      name: Queens, a puzzle by LinkedIn
                      industry: Computer Games
                      type: Showcase page
                      followerCount: 4211821
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/queens-game/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQEiuSLsr8iXDg/company-logo_200_200/company-logo_200_200/0/1714082095308/queens_game_logo?e=1763596800&v=beta&t=XzaZnZXA1isaJNQzZFMsNRmnobgbpThPCA7m18ZQy0c
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQEiuSLsr8iXDg/company-logo_100_100/company-logo_100_100/0/1714082095308/queens_game_logo?e=1763596800&v=beta&t=sMCQmrMded8-T_D27lRxoIyX8gAcSYayPTihiy4sKS0
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQEiuSLsr8iXDg/company-logo_400_400/company-logo_400_400/0/1714082095308/queens_game_logo?e=1763596800&v=beta&t=J1u22u04rb_krByZOz-EGRwc31TLxa-k8Dcv6MCUpIs
                          width: 400
                          height: 400
                    - id: '11280505'
                      name: LinkedIn News
                      industry: Online Audio and Video Media
                      type: Showcase page
                      followerCount: 19270631
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/linkedin-news/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQFrZUpHW0-kqg/company-logo_400_400/B4DZhch1nFGgAk-/0/1753899031312/linkedin_news_logo?e=1763596800&v=beta&t=dEyTDFjGyqdpLJqJk4siHHMOWEZC06AB_vjVe9O-Z3w
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQFrZUpHW0-kqg/company-logo_100_100/B4DZhch1nFGgAc-/0/1753899031312/linkedin_news_logo?e=1763596800&v=beta&t=SI_T48wMlBYBKjgKsUD791qjbBzM7lZ-6qiVqN4okcc
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQFrZUpHW0-kqg/company-logo_200_200/B4DZhch1nFGgAU-/0/1753899031312/linkedin_news_logo?e=1763596800&v=beta&t=VYugBXYX5reYFcmzcYVzMFhwHkeQfBQ9hM8vtmdpoUM
                          width: 200
                          height: 200
                    - id: '15083827'
                      name: LinkedIn Learning
                      industry: E-Learning Providers
                      type: Showcase page
                      followerCount: 3208502
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/linkedinlearning/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGFNchde_FyWw/company-logo_200_200/company-logo_200_200/0/1719363355417/linkedinlearning_logo?e=1763596800&v=beta&t=J-HtlmnNKGQ_-090qUBvtl44urpaj9Hm6nH91EL8eaU
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGFNchde_FyWw/company-logo_100_100/company-logo_100_100/0/1719363355417/linkedinlearning_logo?e=1763596800&v=beta&t=f-DwJmMqDPHO0XW0i5XFDweOLghTwoOvWiLxJo2vXOs
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGFNchde_FyWw/company-logo_400_400/company-logo_400_400/0/1719363355417/linkedinlearning_logo?e=1763596800&v=beta&t=33w0OSiFppzn-zZxEqoqbRTb6feKNJ7nJNwZXmD5dkE
                          width: 400
                          height: 400
                    - id: '108481569'
                      name: The Founder’s Blueprint
                      industry: IT Services and IT Consulting
                      type: Showcase page
                      followerCount: 106
                      following: false
                      linkedinUrl: >-
                        https://www.linkedin.com/showcase/the-founder%E2%80%99s-blueprint/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFCAb_kNbxh0Q/company-logo_400_400/B4EZj2SAj.IQAc-/0/1756478575822/the_founders_blueprint_logo?e=1763596800&v=beta&t=61cPSGL7A74KnbgGGrLqO1O7fAXy6cKKSqhnqp4cBck
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFCAb_kNbxh0Q/company-logo_100_100/B4EZj2SAj.IQAU-/0/1756478575822/the_founders_blueprint_logo?e=1763596800&v=beta&t=BtWE2Dw1EMdvOBPaC1l45828X4uJw2kgIkkIWGB7Vvk
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFCAb_kNbxh0Q/company-logo_200_200/B4EZj2SAj.IQAM-/0/1756478575822/the_founders_blueprint_logo?e=1763596800&v=beta&t=HHzcbPXMzc3Ocq11ubFW7WTDa5c-NCVtCEXdX03DpsA
                          width: 200
                          height: 200
                    - id: '108066982'
                      name: Mini Sudoku, a puzzle by LinkedIn
                      industry: Computer Games
                      type: Showcase page
                      followerCount: 2984276
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/minisudoku-game/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQHbbsgqjB4Fiw/company-logo_400_400/B4DZieTFR8HwAY-/0/1755002459656/linkedin_gamess_logo?e=1763596800&v=beta&t=xSwzy_1OjQc4gHh6Sth-gfOLwvXLXmpkrv8jL8Y5ujI
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQHbbsgqjB4Fiw/company-logo_200_200/B4DZieTFR8HwAI-/0/1755002459656/linkedin_gamess_logo?e=1763596800&v=beta&t=ocaKb1sH3pWR5uVYiDBfKhpEmetzc8f_8_ZdipGWP9Q
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQHbbsgqjB4Fiw/company-logo_100_100/B4DZieTFR8HwAQ-/0/1755002459656/linkedin_gamess_logo?e=1763596800&v=beta&t=sbv1q4rmwN8Wl8P4Ln_-35X5iNvg63oLtePWjT6-hHE
                          width: 100
                          height: 100
                    - id: '81848759'
                      name: LinkedIn Design
                      industry: Technology, Information and Internet
                      type: Showcase page
                      followerCount: 5918
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/linkedin-design/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQFHkHDVFMWRAw/company-logo_200_200/company-logo_200_200/0/1719615502627/linkedin_design_logo?e=1763596800&v=beta&t=6vTVGu8z1_Vqfe8KBaqVV26ILLGamQajmQ6sMo6YVk4
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQFHkHDVFMWRAw/company-logo_100_100/company-logo_100_100/0/1719615502627/linkedin_design_logo?e=1763596800&v=beta&t=rVrbt6osCcnmnootX9JwI25oRqpVcJrYDuWTonxenLg
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQFHkHDVFMWRAw/company-logo_400_400/company-logo_400_400/0/1719615502627/linkedin_design_logo?e=1763596800&v=beta&t=6HG1OW5RKy7H8eXwtATVP3pCa7lb3Ijtn6JGj3wX_rE
                          width: 400
                          height: 400
                    - id: '106668294'
                      name: Zip, a puzzle by LinkedIn
                      industry: Computer Games
                      type: Showcase page
                      followerCount: 20827665
                      following: true
                      linkedinUrl: https://www.linkedin.com/showcase/zip-game/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQFS-ttYajSgxA/company-logo_100_100/B4DZbqaOMQHEAQ-/0/1747689466108/zip_game_logo?e=1763596800&v=beta&t=0HJ51CX0W6xBW6QiwkdTdm_shFjidW8s4OD7LRacMJE
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQFS-ttYajSgxA/company-logo_400_400/B4DZbqaOMQHEAY-/0/1747689466108/zip_game_logo?e=1763596800&v=beta&t=xQC3O3u3sg6FZRg3nIvmKuLgnBj-Xvd6SlKBQHaNDrA
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQFS-ttYajSgxA/company-logo_200_200/B4DZbqaOMQHEAI-/0/1747689466108/zip_game_logo?e=1763596800&v=beta&t=EZ8rmQN_IsWvuoBbtC0cEquUxzHlh-i8ZarW4WXQNmE
                          width: 200
                          height: 200
                    - id: '3232366'
                      name: We Created It (acq. LinkedIn)
                      industry: Technology, Information and Internet
                      type: Acquisition
                      followerCount: 3142
                      following: false
                      linkedinUrl: https://www.linkedin.com/company/we-created-it/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFriQhCHfIWng/company-logo_200_200/company-logo_200_200/0/1631358239427?e=1763596800&v=beta&t=59ZiN9thdc940SaUDh1s66azIf2OB-JcKDIsNQjir7U
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFriQhCHfIWng/company-logo_100_100/company-logo_100_100/0/1631358239427?e=1763596800&v=beta&t=T8OKBfwbPCDLF3beE_gJ6SVxtHkvS8TcKMlR8nNgTRQ
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFriQhCHfIWng/company-logo_400_400/company-logo_400_400/0/1631358239427?e=1763596800&v=beta&t=ORuNooZiKF6e8adGcbDmJGZwczJGzkI7OWrqkfINwHQ
                          width: 400
                          height: 400
                    - id: '102454212'
                      name: Pinpoint, a puzzle by LinkedIn
                      industry: Computer Games
                      type: Showcase page
                      followerCount: 103833
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/pinpoint-game/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQH11Wt2f4smHg/company-logo_100_100/B4EZWqeqyxHgAU-/0/1742321921502/pinpoint_game_logo?e=1763596800&v=beta&t=6sS6kK4--mx-GwqTs36vBxCJ8KZH8N0OZGVYv1rSQgs
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQH11Wt2f4smHg/company-logo_400_400/B4EZWqeqyxHgAc-/0/1742321921502/pinpoint_game_logo?e=1763596800&v=beta&t=EYjgze8Zsrmk-gN4b4roV5jmM5Do6_9CzPusVQ7k7Dg
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQH11Wt2f4smHg/company-logo_200_200/B4EZWqeqyxHgAM-/0/1742321921502/pinpoint_game_logo?e=1763596800&v=beta&t=iJubI75goWF-o5S6LzeTpZivgY9Sm7OsepTV66LMvQA
                          width: 200
                          height: 200
                    - id: '1336309'
                      name: LinkedIn Pulse
                      industry: Software Development
                      type: Acquisition
                      followerCount: 46022
                      following: false
                      linkedinUrl: https://www.linkedin.com/company/pulse-news/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHWJH2FD-7LLg/company-logo_200_200/company-logo_200_200/0/1631348695352?e=1763596800&v=beta&t=Oj2y90r9ekM_9-i39p488hzFRIA3wJ8ci5Yko8ZVsxg
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHWJH2FD-7LLg/company-logo_100_100/company-logo_100_100/0/1631348695352?e=1763596800&v=beta&t=uNaclBdGD6mLbnPvRJsb-4QPLabsiwSkBmtFrQl65hY
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHWJH2FD-7LLg/company-logo_400_400/company-logo_400_400/0/1631348695352?e=1763596800&v=beta&t=QVqNVjAwmy5eCiOB83g4TADuyVoffLCj0KzdPsy113w
                          width: 400
                          height: 400
                    - id: '3519575'
                      name: LinkedIn Talent Solutions
                      industry: Staffing and Recruiting
                      type: Showcase page
                      followerCount: 1537353
                      following: false
                      linkedinUrl: >-
                        https://www.linkedin.com/showcase/linkedin-talent-solutions/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFUop5hiHtk0g/company-logo_200_200/company-logo_200_200/0/1719363313093/linkedin_talent_solutions_logo?e=1763596800&v=beta&t=npbAZZ0w-40zZK2pNTzc9J-fWajM1bvk80NSRd1FwRs
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFUop5hiHtk0g/company-logo_100_100/company-logo_100_100/0/1719363313093/linkedin_talent_solutions_logo?e=1763596800&v=beta&t=ffPihGSNDK36nkImDa1SYuxep3_sBj35x5Sp5QFoaeI
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFUop5hiHtk0g/company-logo_400_400/company-logo_400_400/0/1719363313093/linkedin_talent_solutions_logo?e=1763596800&v=beta&t=i5Jvv_ew-pD_9nS-6XUTalG9nNb_tuB2eEQWuiFrpj8
                          width: 400
                          height: 400
                    - id: '440829'
                      name: Bizo
                      industry: Advertising Services
                      type: Acquisition
                      followerCount: 7871
                      following: false
                      linkedinUrl: https://www.linkedin.com/company/bizo/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQGWiOb8Z8Tr5Q/company-logo_200_200/company-logo_200_200/0/1631329565025?e=1763596800&v=beta&t=MAfXzDxQwxUXcCHbklnc3Dx5cScbw-RcrgA16Sw_lHM
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQGWiOb8Z8Tr5Q/company-logo_100_100/company-logo_100_100/0/1631329565025?e=1763596800&v=beta&t=YBvSi_eI4KCEHwhYfflgzugrfpJvVTVtspjqFKXWYHk
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQGWiOb8Z8Tr5Q/company-logo_400_400/company-logo_400_400/0/1631329565025?e=1763596800&v=beta&t=mMopx1QHNnkepmmcA-MecmLgj-Z8hKxsq8Kw0AzIUak
                          width: 400
                          height: 400
                    - id: '92696314'
                      name: LinkedIn Skill Pages
                      industry: Technology, Information and Internet
                      type: Showcase page
                      followerCount: 39883
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/linkedin-skill-pages/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQH6HEeqHg1daA/company-logo_200_200/company-logo_200_200/0/1675381582142/linkedin_skill_pages_logo?e=1763596800&v=beta&t=StEQ6JygA3_Q6_njjWcPx-PAkTvo7za1BAwtkImJ1pQ
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQH6HEeqHg1daA/company-logo_100_100/company-logo_100_100/0/1675381582142/linkedin_skill_pages_logo?e=1763596800&v=beta&t=S0t4uyluogEmCf1SFwyTAzahziie_QvUwamqkoQ1V9k
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQH6HEeqHg1daA/company-logo_400_400/company-logo_400_400/0/1675381582142/linkedin_skill_pages_logo?e=1763596800&v=beta&t=cpnVPY9fP-7F9-Q73qVS5XyyW-6vaatqs37a092LOfk
                          width: 400
                          height: 400
                    - id: '74310544'
                      name: LinkedIn Guide to Creating
                      industry: Software Development
                      type: Showcase page
                      followerCount: 1916653
                      following: false
                      linkedinUrl: >-
                        https://www.linkedin.com/showcase/linkedin-guide-to-creating/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHxwcJuB2s5Ew/company-logo_200_200/company-logo_200_200/0/1704331328152/linkedin_guide_to_creating_logo?e=1763596800&v=beta&t=ipNtywZVpFw32JCdvorvLRu-3AyYJEf419ionipqPxY
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHxwcJuB2s5Ew/company-logo_100_100/company-logo_100_100/0/1704331328152/linkedin_guide_to_creating_logo?e=1763596800&v=beta&t=ZDO9UFkBK_gO1QHhBe8pC88S2fVQV193YYunFYDtC-8
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHxwcJuB2s5Ew/company-logo_400_400/company-logo_400_400/0/1704331328152/linkedin_guide_to_creating_logo?e=1763596800&v=beta&t=roBAN1-vo_JoKwUJYTsR4_p5tXADCrD1o2_AOaQIqIg
                          width: 400
                          height: 400
                    - id: '854768'
                      name: Rapportive
                      industry: Technology, Information and Internet
                      type: Acquisition
                      followerCount: 5081
                      following: false
                      linkedinUrl: https://www.linkedin.com/company/rapportive/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQEhCSf3KLT9Yg/company-logo_200_200/company-logo_200_200/0/1631389211925?e=1763596800&v=beta&t=sU8lR5BwJfLONRwn6lCqN4zG6qgbwrKU4EIX4n9b8LU
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQEhCSf3KLT9Yg/company-logo_100_100/company-logo_100_100/0/1631389211925?e=1763596800&v=beta&t=O32XDik4hJM22vQ2L03LTWpawxJmpZVP-wqdmgbkNtw
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQEhCSf3KLT9Yg/company-logo_400_400/company-logo_400_400/0/1631389211925?e=1763596800&v=beta&t=N1eSqcNiOLmub-x2Ebs771k9eCPPXPgblA9uPwk_vJY
                          width: 400
                          height: 400
                    - id: '14041259'
                      name: LinkedIn Guide to Networking
                      industry: Software Development
                      type: Showcase page
                      followerCount: 13842688
                      following: false
                      linkedinUrl: https://www.linkedin.com/showcase/linkedin-member-guide/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQGoCnyxrg-bww/company-logo_200_200/company-logo_200_200/0/1630563741668/linkedin_member_guide_logo?e=1763596800&v=beta&t=3I1DHsYyozaZcfOK0NsJVHxmizk_vBvVArqhV0IFsPo
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQGoCnyxrg-bww/company-logo_100_100/company-logo_100_100/0/1630563741668/linkedin_member_guide_logo?e=1763596800&v=beta&t=V2PQeDalponxOrvYxYxSBKWlj1qJWpOOl1_X6AXjYcs
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQGoCnyxrg-bww/company-logo_400_400/company-logo_400_400/0/1630563741668/linkedin_member_guide_logo?e=1763596800&v=beta&t=Dr6iX54UQNEyMxcygLgkPqrlMd5LkOTd6twUPVCLCRw
                          width: 400
                          height: 400
                  count: 39
      tags:
        - Companies
      description: Get affiliated pages for a company by its ID.
  /api/v1/companies/company/info:
    get:
      summary: Get Company Details
      parameters:
        - name: id
          in: query
          description: 'company ID '
          schema:
            type: integer
          example: '1441'
        - name: name
          in: query
          description: 'company name '
          schema:
            type: string
          example: google
      responses:
        '200':
          description: Get campany Details
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                        format: utc-millisec
                      name:
                        type: string
                      universalName:
                        type: string
                      linkedinUrl:
                        type: string
                        format: uri
                      description:
                        type: string
                      type:
                        type: string
                      images:
                        type: object
                        properties:
                          logo:
                            type: string
                            format: uri
                          cover:
                            type: string
                            format: uri
                      isClaimable:
                        type: boolean
                      backgroundCoverImages:
                        type: array
                        items:
                          type: object
                          properties:
                            url:
                              type: string
                              format: uri
                            width:
                              type: integer
                            height:
                              type: integer
                      logos:
                        type: array
                        items:
                          type: object
                          properties:
                            url:
                              type: string
                              format: uri
                            width:
                              type: integer
                            height:
                              type: integer
                      staffCount:
                        type: integer
                      headquarter:
                        type: object
                        properties:
                          countryCode:
                            type: string
                          geographicArea:
                            type: string
                          country:
                            type: string
                          city:
                            type: string
                          postalCode:
                            type: string
                            format: utc-millisec
                          headquarter:
                            type: boolean
                          line1:
                            type: string
                      locations:
                        type: array
                        items:
                          type: object
                          properties:
                            countryCode:
                              type: string
                            geographicArea:
                              type: string
                            country:
                              type: string
                            city:
                              type: string
                            postalCode:
                              type: string
                            headquarter:
                              type: boolean
                            line1:
                              type: string
                      industriesV2:
                        type: array
                        items:
                          type: string
                      industriesLegacy:
                        type: array
                        items:
                          type: string
                      specialities:
                        type: array
                        items:
                          type: string
                      website:
                        type: string
                        format: uri
                      founded:
                        type: object
                        properties:
                          year:
                            type: integer
                          month:
                            type: integer
                          day:
                            type: integer
                      callToAction:
                        type: object
                        properties:
                          type:
                            type: string
                          displayText:
                            type: string
                          visible:
                            type: boolean
                          url:
                            type: string
                            format: uri
                      followerCount:
                        type: integer
                      staffCountRange:
                        type: string
                      crunchbaseUrl:
                        type: string
                        format: uri
                      topOrganizationListing:
                        type: object
                        properties:
                          rank:
                            type: integer
                          listName:
                            type: string
                          articleUrl:
                            type: string
                            format: uri
                          text:
                            type: string
                      fundingData:
                        type: object
                        properties:
                          updatedAt:
                            type: string
                            format: utc-millisec
                          numFundingRounds:
                            type: integer
                          lastFundingRound:
                            type: object
                            properties:
                              fundingType:
                                type: string
                              moneyRaised:
                                type: object
                                properties:
                                  amount:
                                    type: string
                                    format: utc-millisec
                                  currencyCode:
                                    type: string
                              numOtherInvestors:
                                type: integer
                              announcedOn:
                                type: object
                                properties:
                                  year:
                                    type: integer
                                  month:
                                    type: integer
                                  day:
                                    type: integer
                              fundingRoundCrunchbaseUrl:
                                type: string
                                format: uri
                              investorsCrunchbaseUrl:
                                type: string
                                format: uri
                              leadInvestors:
                                nullable: true
                          crunchbaseUrl:
                            type: string
                            format: uri
                      pageVerification:
                        type: object
                        properties:
                          verified:
                            type: boolean
                          lastModifiedAt:
                            type: integer
                      availabeTabs:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              type: string
                            tabType:
                              type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  id: '1441'
                  name: Google
                  universalName: google
                  linkedinUrl: https://www.linkedin.com/company/google/
                  description: >-
                    A problem isn't truly solved until it's solved for all.
                    Googlers build products that help create opportunities for
                    everyone, whether down the street or across the globe. Bring
                    your insight, imagination and a healthy disregard for the
                    impossible. Bring everything that makes you unique.
                    Together, we can build for everyone.


                    Check out our career opportunities at goo.gle/3DLEokh
                  type: COMPANY
                  images:
                    logo: >-
                      https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1759363200&v=beta&t=iFttuk_hULNmNrq3KH_faZVvrfR4A40NWhVD4T_QuvQ
                    cover: >-
                      https://media.licdn.com/dms/image/v2/D4E1BAQGppW6ZLvm9Jg/company-background_400/B4EZge3rcQGUAc-/0/1752864569610/google_cover?e=1757246400&v=beta&t=yB41H8Sku9IeXxq-iPenPoNt8CUTXl9me9JkDc2W-GU
                  isClaimable: false
                  backgroundCoverImages:
                    - url: >-
                        https://media.licdn.com/dms/image/v2/D4E1BAQGppW6ZLvm9Jg/company-background_400/B4EZge3rcQGUAc-/0/1752864569610/google_cover?e=1757246400&v=beta&t=yB41H8Sku9IeXxq-iPenPoNt8CUTXl9me9JkDc2W-GU
                      width: 400
                      height: 67
                    - url: >-
                        https://media.licdn.com/dms/image/v2/D4E1BAQGppW6ZLvm9Jg/company-background_200/B4EZge3rcQGUAg-/0/1752864569610/google_cover?e=1757246400&v=beta&t=sPbW3LytT6PB01LvLlNWhzGHRlS1iYrQjYdH4wWfKTM
                      width: 200
                      height: 33
                    - url: >-
                        https://media.licdn.com/dms/image/v2/D4E1BAQGppW6ZLvm9Jg/company-background_10000/B4EZge3rcQGUAY-/0/1752864569610/google_cover?e=1757246400&v=beta&t=qFQr1GHDcf_JBSi6KUlpT6KEoTp24vGRtyis0Pp3vEM
                      width: 1692
                      height: 287
                  logos:
                    - url: >-
                        https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_200_200/company-logo_200_200/0/1631311446380?e=1759363200&v=beta&t=lGbuFb5qWVZLEGGoIoOIeOxqIN1jmUR8YjidVVveYnU
                      width: 200
                      height: 200
                    - url: >-
                        https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_100_100/company-logo_100_100/0/1631311446380?e=1759363200&v=beta&t=kNH4pfEB_eDxB3hYl8SPuSaNx_vRacYgYXL3cS3M4PU
                      width: 100
                      height: 100
                    - url: >-
                        https://media.licdn.com/dms/image/v2/C4D0BAQHiNSL4Or29cg/company-logo_400_400/company-logo_400_400/0/1631311446380?e=1759363200&v=beta&t=iFttuk_hULNmNrq3KH_faZVvrfR4A40NWhVD4T_QuvQ
                      width: 400
                      height: 400
                  staffCount: 315498
                  headquarter:
                    countryCode: US
                    geographicArea: CA
                    country: US
                    city: Mountain View
                    postalCode: '94043'
                    headquarter: true
                    line1: 1600 Amphitheatre Parkway
                  locations:
                    - countryCode: GB
                      geographicArea: England
                      country: GB
                      city: London
                      postalCode: WC2H 8AG
                      headquarter: false
                      line1: St Giles High Street
                    - countryCode: IE
                      geographicArea: County Dublin
                      country: IE
                      city: Dublin
                      headquarter: false
                      line1: Barrow Street
                    - countryCode: CO
                      geographicArea: Bogota, D.C.
                      country: CO
                      city: Bogota
                      postalCode: '110221'
                      headquarter: false
                      line1: Carrera 11A 94-45
                    - countryCode: SG
                      geographicArea: Singapore
                      country: SG
                      city: Singapore
                      postalCode: '118484'
                      headquarter: false
                      line1: 3 Pasir Panjang Rd
                    - countryCode: MX
                      geographicArea: CDMX
                      country: MX
                      city: Miguel Hidalgo
                      postalCode: '11000'
                      headquarter: false
                      line1: Montes Urales
                    - countryCode: IL
                      geographicArea: Tel Aviv
                      country: IL
                      city: Tel Aviv-Yafo
                      postalCode: '67891'
                      headquarter: false
                      line1: Yigal Allon 98
                    - countryCode: CA
                      geographicArea: 'ON'
                      country: CA
                      city: Toronto
                      postalCode: M5H 2G4
                      headquarter: false
                      line1: 111 Richmond St W
                    - countryCode: CA
                      geographicArea: 'ON'
                      country: CA
                      city: Kitchener
                      postalCode: N2H 5G5
                      headquarter: false
                      line1: 51 Breithaupt St
                    - countryCode: CL
                      geographicArea: Santiago Metropolitan
                      country: CL
                      city: Las Condes
                      postalCode: '7550000'
                      headquarter: false
                      line1: Avenida Costanera Sur
                    - countryCode: IT
                      geographicArea: Lomb.
                      country: IT
                      city: Milan
                      postalCode: '20124'
                      headquarter: false
                      line1: Via Federico Confalonieri, 4
                    - countryCode: PH
                      geographicArea: National Capital Region
                      country: PH
                      city: Taguig City
                      headquarter: false
                      line1: 5th Ave
                    - countryCode: AU
                      geographicArea: NSW
                      country: AU
                      city: Sydney
                      postalCode: '2009'
                      headquarter: false
                      line1: 48 Pirrama Rd
                    - countryCode: AU
                      geographicArea: VIC
                      country: AU
                      city: Melbourne
                      postalCode: '3000'
                      headquarter: false
                      line1: 90 Collins St
                    - countryCode: CH
                      geographicArea: ZH
                      country: CH
                      city: Zurich
                      postalCode: '8002'
                      headquarter: false
                      line1: Brandschenkestrasse 110
                    - countryCode: FR
                      geographicArea: IdF
                      country: FR
                      city: Paris
                      postalCode: '75009'
                      headquarter: false
                      line1: 8 Rue de Londres
                    - countryCode: AR
                      geographicArea: Buenos Aires Autonomous City
                      country: AR
                      city: Buenos Aires City
                      postalCode: '1107'
                      headquarter: false
                      line1: Avenida Alicia Moreau de Justo 350
                    - countryCode: DE
                      geographicArea: HH
                      country: DE
                      city: Hamburg
                      postalCode: '20354'
                      headquarter: false
                      line1: ABC-Strasse 19
                    - countryCode: DE
                      geographicArea: BE
                      country: DE
                      city: Berlin
                      postalCode: '10117'
                      headquarter: false
                      line1: Unter den Linden 14
                    - countryCode: DE
                      geographicArea: BY
                      country: DE
                      city: Munich
                      postalCode: '80636'
                      headquarter: false
                      line1: Erika-Mann-Strasse 33
                    - countryCode: PL
                      geographicArea: MA
                      country: PL
                      city: Warsaw
                      postalCode: 00-125
                      headquarter: false
                      line1: ulica Emilii Plater 53
                    - countryCode: NL
                      geographicArea: North Holland
                      country: NL
                      city: Amsterdam
                      postalCode: 1082 MD
                      headquarter: false
                      line1: Claude Debussylaan 34
                    - countryCode: ES
                      geographicArea: Community of Madrid
                      country: ES
                      city: Madrid
                      postalCode: '28046'
                      headquarter: false
                      line1: Plaza Pablo Ruiz Picasso
                    - countryCode: ES
                      geographicArea: Community of Madrid
                      country: ES
                      city: Madrid
                      postalCode: '28020'
                      headquarter: false
                      line1: Plaza Pablo Ruiz Picasso
                    - countryCode: US
                      geographicArea: GA
                      country: US
                      city: Atlanta
                      postalCode: '30309'
                      headquarter: false
                      line1: 10 10th St NE
                    - countryCode: US
                      geographicArea: MA
                      country: US
                      city: Cambridge
                      postalCode: '02142'
                      headquarter: false
                      line1: 355 Main St
                    - countryCode: US
                      geographicArea: CA
                      country: US
                      city: Mountain View
                      postalCode: '94043'
                      headquarter: true
                      line1: 1600 Amphitheatre Parkway
                    - countryCode: US
                      geographicArea: CA
                      country: US
                      city: San Bruno
                      postalCode: '94066'
                      headquarter: false
                      line1: 901 Cherry Ave
                    - countryCode: US
                      geographicArea: CA
                      country: US
                      city: San Francisco
                      postalCode: '94105'
                      headquarter: false
                      line1: 345 Spear St
                    - countryCode: US
                      geographicArea: TX
                      country: US
                      city: Austin
                      postalCode: '78759'
                      headquarter: false
                      line1: 9606 N Mopac Expy
                    - countryCode: US
                      geographicArea: CA
                      country: US
                      city: Irvine
                      postalCode: '92612'
                      headquarter: false
                      line1: 19510 Jamboree Rd
                    - countryCode: US
                      geographicArea: CA
                      country: US
                      city: Los Angeles
                      postalCode: '90291'
                      headquarter: false
                      line1: 340 Main St
                    - countryCode: US
                      geographicArea: IL
                      country: US
                      city: Chicago
                      postalCode: '60607'
                      headquarter: false
                      line1: 320 N Morgan St
                    - countryCode: US
                      geographicArea: CO
                      country: US
                      city: Boulder
                      postalCode: '80302'
                      headquarter: false
                      line1: 2590 Pearl St
                    - countryCode: US
                      geographicArea: TX
                      country: US
                      city: Frisco
                      postalCode: '75034'
                      headquarter: false
                      line1: 6175 Main St
                    - countryCode: US
                      geographicArea: MI
                      country: US
                      city: Ann Arbor
                      postalCode: '48105'
                      headquarter: false
                      line1: 2300 Traverwood Dr
                    - countryCode: US
                      geographicArea: DC
                      country: US
                      city: Washington
                      postalCode: '20001'
                      headquarter: false
                      line1: 25 Massachusetts Ave NW
                    - countryCode: US
                      geographicArea: VA
                      country: US
                      city: Reston
                      postalCode: '20190'
                      headquarter: false
                      line1: 1875 Explorer St
                    - countryCode: US
                      geographicArea: WA
                      country: US
                      city: Kirkland
                      postalCode: '98033'
                      headquarter: false
                      line1: 777 6th St S
                    - countryCode: US
                      geographicArea: WA
                      country: US
                      city: Seattle
                      postalCode: '98103'
                      headquarter: false
                      line1: 601 N 34th St
                    - countryCode: US
                      geographicArea: NY
                      country: US
                      city: New York
                      postalCode: '10011'
                      headquarter: false
                      line1: 111 8th Ave
                    - countryCode: SE
                      geographicArea: Stockholm County
                      country: SE
                      city: Stockholm
                      postalCode: 111 22
                      headquarter: false
                      line1: Kungsbron 2
                    - countryCode: BR
                      geographicArea: SP
                      country: BR
                      city: Sao Paulo
                      postalCode: 04538-133
                      headquarter: false
                      line1: Avenida Brigadeiro Faria Lima, 3477
                    - countryCode: HK
                      geographicArea: Hong Kong
                      country: HK
                      city: Wan Chai
                      headquarter: false
                      line1: 2 Matheson St
                    - countryCode: IN
                      geographicArea: TS
                      country: IN
                      city: Hyderabad
                      postalCode: '500084'
                      headquarter: false
                      line1: '13'
                    - countryCode: IN
                      geographicArea: Maharashtra
                      country: IN
                      city: Mumbai
                      postalCode: '400051'
                      headquarter: false
                      line1: 3 Bandra Kurla Complex Road
                    - countryCode: IN
                      geographicArea: Karnataka
                      country: IN
                      city: Bengaluru
                      postalCode: '560016'
                      headquarter: false
                      line1: Old Madras Road
                    - countryCode: IN
                      geographicArea: Karnataka
                      country: IN
                      city: Bengaluru
                      postalCode: '560016'
                      headquarter: false
                      line1: 3 Swamy Vivekananda Road
                    - countryCode: IN
                      geographicArea: HR
                      country: IN
                      city: Gurugram
                      postalCode: '122001'
                      headquarter: false
                      line1: '15'
                  industriesV2:
                    - Software Development
                  industriesLegacy:
                    - Computer Software
                  specialities:
                    - search
                    - ads
                    - mobile
                    - android
                    - online video
                    - apps
                    - machine learning
                    - virtual reality
                    - cloud
                    - hardware
                    - artificial intelligence
                    - youtube
                    - software
                  website: https://goo.gle/3DLEokh
                  founded:
                    year: 0
                    month: 0
                    day: 0
                  callToAction:
                    type: VIEW_WEBSITE
                    displayText: Visit website
                    visible: true
                    url: https://goo.gle/3DLEokh
                  followerCount: 38634459
                  staffCountRange: 10,001+ employees
                  crunchbaseUrl: https://www.crunchbase.com/organization/google
                  topOrganizationListing:
                    rank: 18
                    listName: LinkedIn Top Companies
                    articleUrl: >-
                      https://www.linkedin.com/pulse/linkedin-top-companies-2025-25-best-large-employers-grow-cq7nc/
                    text: This company has been Ranked on LinkedIn Top Companies
                  fundingData:
                    updatedAt: '1754885702'
                    numFundingRounds: 3
                    lastFundingRound:
                      fundingType: Series unknown
                      moneyRaised:
                        amount: '25000000'
                        currencyCode: USD
                      numOtherInvestors: 0
                      announcedOn:
                        year: 1999
                        month: 6
                        day: 7
                      fundingRoundCrunchbaseUrl: >-
                        https://www.crunchbase.com/funding_round/google-series-unknown--6c4715f9
                      investorsCrunchbaseUrl: >-
                        https://www.crunchbase.com/funding_round/google-series-unknown--6c4715f9
                      leadInvestors: null
                    crunchbaseUrl: https://www.crunchbase.com/organization/google
                  pageVerification:
                    verified: true
                    lastModifiedAt: 1692139093065
                  availabeTabs:
                    - name: Home
                      tabType: HOME
                    - name: About
                      tabType: ABOUT
                    - name: Posts
                      tabType: POSTS
                    - name: Jobs
                      tabType: JOBS
                    - name: Life
                      tabType: LIFE
                    - name: People
                      tabType: PEOPLE
      tags:
        - Companies
      description: Get company details by ID or name only one is required, not both.
  /api/v1/companies/company/insights:
    get:
      summary: Get Company Insights
      parameters:
        - name: id
          in: query
          required: true
          description: 'company ID '
          deprecated: false
          schema:
            type: integer
          example: '1441'
      responses:
        '200':
          description: Get Company Insights
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      headcountInsights:
                        type: object
                        properties:
                          title:
                            type: string
                          description:
                            type: string
                          totalEmployees:
                            type: integer
                          growthPeriods:
                            type: array
                            items:
                              type: object
                              properties:
                                monthDifference:
                                  type: integer
                                changePercentage:
                                  type: integer
                          headcountGrowth:
                            type: array
                            items:
                              type: object
                              properties:
                                month:
                                  type: integer
                                year:
                                  type: integer
                                employeeCount:
                                  type: integer
                      functionHeadcountInsights:
                        type: object
                        properties:
                          title:
                            type: string
                          description:
                            type: string
                          latestHeadcountByFunction:
                            type: object
                            properties:
                              totalCount:
                                type: integer
                              countByFunction:
                                type: array
                                items:
                                  type: object
                                  properties:
                                    functionId:
                                      type: string
                                      format: utc-millisec
                                    functionName:
                                      type: string
                                    functionCount:
                                      type: integer
                                    functionPercentage:
                                      type: integer
                              month:
                                type: integer
                              year:
                                type: integer
                          headcountGrowthByFunction:
                            type: array
                            items:
                              type: object
                              properties:
                                functionId:
                                  type: string
                                  format: utc-millisec
                                functionName:
                                  type: string
                                growthPeriods:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      monthDifference:
                                        type: integer
                                      changePercentage:
                                        type: integer
                      alumniInsights:
                        type: object
                        properties:
                          title:
                            type: string
                          description:
                            type: string
                          totalNumberOfAlumni:
                            type: integer
                          alumni:
                            type: array
                            items:
                              type: object
                              properties:
                                urn:
                                  type: string
                                fullName:
                                  type: string
                                profileUrl:
                                  type: string
                                  format: uri
                                profileImageUrl:
                                  type: string
                                  format: uri
                                currentCompany:
                                  type: string
                                currentPosition:
                                  type: string
                                previousPosition:
                                  type: string
                                exitMonth:
                                  type: integer
                                exitYear:
                                  type: integer
                      jobOpeningsInsights:
                        type: object
                        properties:
                          title:
                            type: string
                          description:
                            type: string
                          jobOpeningsByFunction:
                            type: array
                            items:
                              type: object
                              properties:
                                totalCount:
                                  type: integer
                                countByFunction:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      functionId:
                                        type: string
                                        format: utc-millisec
                                      functionName:
                                        type: string
                                      functionCount:
                                        type: integer
                                      functionPercentage:
                                        type: integer
                                month:
                                  type: integer
                                year:
                                  type: integer
                          jobOpeningsGrowthAllFunctions:
                            type: array
                            items:
                              type: object
                              properties:
                                monthDifference:
                                  type: integer
                                changePercentage:
                                  type: integer
                          jobOpeningsGrowthByFunction:
                            type: array
                            items:
                              type: object
                              properties:
                                functionId:
                                  type: string
                                  format: utc-millisec
                                functionName:
                                  type: string
                                growthPeriods:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      monthDifference:
                                        type: integer
                                      changePercentage:
                                        type: integer
                      strategicPrioritiesInsights:
                        type: object
                        properties:
                          title:
                            type: string
                          description:
                            type: string
                          priorities:
                            type: array
                            items:
                              type: object
                              properties:
                                title:
                                  type: string
                                description:
                                  type: string
                                  format: style
                      hiringTrendsInsights:
                        type: object
                        properties:
                          title:
                            type: string
                          description:
                            type: string
                          totalHires:
                            type: integer
                          hireCounts:
                            type: array
                            items:
                              type: object
                              properties:
                                month:
                                  type: integer
                                year:
                                  type: integer
                                allEmployeeHireCount:
                                  type: integer
                          growthPeriods:
                            type: array
                            items:
                              type: object
                              properties:
                                monthDifference:
                                  type: integer
                                changePercentage:
                                  type: integer
                          aiInsightsText:
                            type: string
                            format: style
                      competitiveLandscapeInsights:
                        type: object
                        properties:
                          title:
                            type: string
                          description:
                            type: string
                          competitors:
                            type: array
                            items:
                              type: object
                              properties:
                                id:
                                  type: string
                                  format: utc-millisec
                                name:
                                  type: string
                                industry:
                                  type: string
                                followerCount:
                                  type: integer
                                Url:
                                  type: string
                                  format: uri
                                logos:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      url:
                                        type: string
                                        format: uri
                                      width:
                                        type: integer
                                      height:
                                        type: integer
                                employeeSize:
                                  type: string
                          aiInsightsText:
                            type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  headcountInsights:
                    title: Headcount Growth
                    description: >-
                      Employee count trends showing total employees and growth
                      percentages over different time periods
                    totalEmployees: 23912
                    growthPeriods:
                      - monthDifference: 6
                        changePercentage: -5
                      - monthDifference: 12
                        changePercentage: -5
                      - monthDifference: 24
                        changePercentage: -4
                    headcountGrowth:
                      - month: 12
                        year: 2023
                        employeeCount: 24868
                      - month: 1
                        year: 2024
                        employeeCount: 25074
                      - month: 2
                        year: 2024
                        employeeCount: 25158
                      - month: 3
                        year: 2024
                        employeeCount: 25201
                      - month: 4
                        year: 2024
                        employeeCount: 25280
                      - month: 5
                        year: 2024
                        employeeCount: 25476
                      - month: 6
                        year: 2024
                        employeeCount: 25508
                      - month: 7
                        year: 2024
                        employeeCount: 25547
                      - month: 8
                        year: 2024
                        employeeCount: 25408
                      - month: 9
                        year: 2024
                        employeeCount: 25437
                      - month: 10
                        year: 2024
                        employeeCount: 25444
                      - month: 11
                        year: 2024
                        employeeCount: 25399
                      - month: 12
                        year: 2024
                        employeeCount: 25198
                      - month: 1
                        year: 2025
                        employeeCount: 25242
                      - month: 2
                        year: 2025
                        employeeCount: 25294
                      - month: 3
                        year: 2025
                        employeeCount: 25362
                      - month: 4
                        year: 2025
                        employeeCount: 25308
                      - month: 5
                        year: 2025
                        employeeCount: 25323
                      - month: 6
                        year: 2025
                        employeeCount: 25128
                      - month: 7
                        year: 2025
                        employeeCount: 24697
                      - month: 8
                        year: 2025
                        employeeCount: 24428
                      - month: 9
                        year: 2025
                        employeeCount: 24267
                      - month: 10
                        year: 2025
                        employeeCount: 24163
                      - month: 11
                        year: 2025
                        employeeCount: 24091
                      - month: 12
                        year: 2025
                        employeeCount: 23912
                  functionHeadcountInsights:
                    title: Employee Distribution by Function
                    description: >-
                      Breakdown of employees across different job functions
                      (Engineering, Sales, Marketing, etc.) with growth trends
                    latestHeadcountByFunction:
                      totalCount: 23912
                      countByFunction:
                        - functionId: '8'
                          functionName: Engineering
                          functionCount: 5945
                          functionPercentage: 25
                        - functionId: '25'
                          functionName: Sales
                          functionCount: 4077
                          functionPercentage: 17
                        - functionId: '16'
                          functionName: Media and Communication
                          functionCount: 1710
                          functionPercentage: 7
                        - functionId: '26'
                          functionName: Support
                          functionCount: 1405
                          functionPercentage: 6
                        - functionId: '4'
                          functionName: Business Development
                          functionCount: 1494
                          functionPercentage: 6
                        - functionId: '15'
                          functionName: Marketing
                          functionCount: 1291
                          functionPercentage: 5
                        - functionId: '13'
                          functionName: Information Technology
                          functionCount: 1138
                          functionPercentage: 5
                        - functionId: '18'
                          functionName: Operations
                          functionCount: 914
                          functionPercentage: 4
                        - functionId: '12'
                          functionName: Human Resources
                          functionCount: 1031
                          functionPercentage: 4
                        - functionId: '20'
                          functionName: Program and Project Management
                          functionCount: 800
                          functionPercentage: 3
                        - functionId: '7'
                          functionName: Education
                          functionCount: 791
                          functionPercentage: 3
                        - functionId: '3'
                          functionName: Arts and Design
                          functionCount: 680
                          functionPercentage: 3
                        - functionId: '2'
                          functionName: Administrative
                          functionCount: 425
                          functionPercentage: 2
                        - functionId: '19'
                          functionName: Product Management
                          functionCount: 380
                          functionPercentage: 2
                        - functionId: '10'
                          functionName: Finance
                          functionCount: 383
                          functionPercentage: 2
                      month: 12
                      year: 2025
                    headcountGrowthByFunction:
                      - functionId: '26'
                        functionName: Support
                        growthPeriods:
                          - monthDifference: 6
                            changePercentage: -5
                          - monthDifference: 12
                            changePercentage: -7
                      - functionId: '25'
                        functionName: Sales
                        growthPeriods:
                          - monthDifference: 6
                            changePercentage: -4
                          - monthDifference: 12
                            changePercentage: -5
                      - functionId: '20'
                        functionName: Program and Project Management
                        growthPeriods:
                          - monthDifference: 6
                            changePercentage: -6
                          - monthDifference: 12
                            changePercentage: -8
                      - functionId: '8'
                        functionName: Engineering
                        growthPeriods:
                          - monthDifference: 6
                            changePercentage: -5
                          - monthDifference: 12
                            changePercentage: -3
                      - functionId: '7'
                        functionName: Education
                        growthPeriods:
                          - monthDifference: 6
                            changePercentage: -6
                          - monthDifference: 12
                            changePercentage: -8
                      - functionId: '4'
                        functionName: Business Development
                        growthPeriods:
                          - monthDifference: 6
                            changePercentage: -1
                          - monthDifference: 12
                            changePercentage: -1
                      - functionId: '3'
                        functionName: Arts and Design
                        growthPeriods:
                          - monthDifference: 6
                            changePercentage: -5
                          - monthDifference: 12
                            changePercentage: -7
                      - functionId: '2'
                        functionName: Administrative
                        growthPeriods:
                          - monthDifference: 6
                            changePercentage: -10
                          - monthDifference: 12
                            changePercentage: -12
                      - functionId: '19'
                        functionName: Product Management
                        growthPeriods:
                          - monthDifference: 6
                            changePercentage: -5
                          - monthDifference: 12
                            changePercentage: -13
                      - functionId: '18'
                        functionName: Operations
                        growthPeriods:
                          - monthDifference: 6
                            changePercentage: -13
                          - monthDifference: 12
                            changePercentage: -19
                      - functionId: '16'
                        functionName: Media and Communication
                        growthPeriods:
                          - monthDifference: 6
                            changePercentage: -3
                          - monthDifference: 12
                            changePercentage: -3
                      - functionId: '15'
                        functionName: Marketing
                        growthPeriods:
                          - monthDifference: 6
                            changePercentage: -8
                          - monthDifference: 12
                            changePercentage: -6
                      - functionId: '13'
                        functionName: Information Technology
                        growthPeriods:
                          - monthDifference: 6
                            changePercentage: -5
                          - monthDifference: 12
                            changePercentage: -6
                      - functionId: '12'
                        functionName: Human Resources
                        growthPeriods:
                          - monthDifference: 6
                            changePercentage: -2
                          - monthDifference: 12
                            changePercentage: 5
                      - functionId: '10'
                        functionName: Finance
                        growthPeriods:
                          - monthDifference: 6
                            changePercentage: 1
                          - monthDifference: 12
                            changePercentage: 8
                  alumniInsights:
                    title: Notable Alumni
                    description: >-
                      Former employees who have moved to other companies,
                      including their current and previous positions
                    totalNumberOfAlumni: 49
                    alumni:
                      - urn: ACoAAACVhaQBWxX_pxwarJpHXYyaoiqUbjiVgfg
                        fullName: Kalinda Raina
                        profileUrl: >-
                          https://www.linkedin.com/in/ACoAAACVhaQBWxX_pxwarJpHXYyaoiqUbjiVgfg
                        profileImageUrl: >-
                          https://media.licdn.com/dms/image/v2/D5603AQF-_Dcdro1qWw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1697844128946?e=1767830400&v=beta&t=m1kcfPS71lltAk_z6PcHCVXWy_f2dYAH2KyNn0ts3uI
                        currentCompany: Airbnb
                        currentPosition: 'Vice President, Chief Privacy Officer at Airbnb '
                        previousPosition: LinkedIn
                        exitMonth: 11
                        exitYear: 2025
                      - urn: ACoAAAEIby4BIK70qa5OaACmrVLFqQJjksGIoT8
                        fullName: Madeline Chan
                        profileUrl: >-
                          https://www.linkedin.com/in/ACoAAAEIby4BIK70qa5OaACmrVLFqQJjksGIoT8
                        profileImageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGXEJLHjTXhXQ/profile-displayphoto-crop_800_800/B4EZrBuJ2kKkAM-/0/1764186693442?e=1767830400&v=beta&t=GrnHye6a6_TC2gdGGfVnyMqGVoMT-cXd5WG4zOfj9NU
                        currentCompany: Walmart Connect
                        currentPosition: >-
                          Director, Emerging Tech Partnerships at Walmart
                          Connect 
                        previousPosition: LinkedIn
                        exitMonth: 11
                        exitYear: 2025
                      - urn: ACoAAAYyI0MBDXEAGeQTiwqWQZyI48Yk682t5wE
                        fullName: Souvik Ghosh
                        profileUrl: >-
                          https://www.linkedin.com/in/ACoAAAYyI0MBDXEAGeQTiwqWQZyI48Yk682t5wE
                        profileImageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQGcIxqlKItETQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1515620374645?e=1767830400&v=beta&t=fjndHul38tXgaP5wPV2-bB1Bs77YMnAMMEyTd3esliI
                        currentCompany: Amazon
                        currentPosition: 'Sr. Principal Scientist at Amazon '
                        previousPosition: LinkedIn
                        exitMonth: 10
                        exitYear: 2025
                  jobOpeningsInsights:
                    title: Job Openings
                    description: >-
                      Current job postings distributed by function with growth
                      trends over time
                    jobOpeningsByFunction:
                      - totalCount: 753
                        countByFunction:
                          - functionId: '8'
                            functionName: Engineering
                            functionCount: 239
                            functionPercentage: 32
                          - functionId: '25'
                            functionName: Sales
                            functionCount: 239
                            functionPercentage: 32
                          - functionId: '15'
                            functionName: Marketing
                            functionCount: 37
                            functionPercentage: 5
                          - functionId: '4'
                            functionName: Business Development
                            functionCount: 36
                            functionPercentage: 5
                          - functionId: '13'
                            functionName: Information Technology
                            functionCount: 35
                            functionPercentage: 5
                          - functionId: '24'
                            functionName: Research
                            functionCount: 25
                            functionPercentage: 3
                          - functionId: '19'
                            functionName: Product Management
                            functionCount: 24
                            functionPercentage: 3
                          - functionId: '18'
                            functionName: Operations
                            functionCount: 22
                            functionPercentage: 3
                          - functionId: '26'
                            functionName: Support
                            functionCount: 20
                            functionPercentage: 3
                          - functionId: '10'
                            functionName: Finance
                            functionCount: 16
                            functionPercentage: 2
                          - functionId: '12'
                            functionName: Human Resources
                            functionCount: 15
                            functionPercentage: 2
                        month: 9
                        year: 2025
                      - totalCount: 545
                        countByFunction:
                          - functionId: '25'
                            functionName: Sales
                            functionCount: 231
                            functionPercentage: 42
                          - functionId: '8'
                            functionName: Engineering
                            functionCount: 52
                            functionPercentage: 10
                          - functionId: '4'
                            functionName: Business Development
                            functionCount: 41
                            functionPercentage: 8
                          - functionId: '10'
                            functionName: Finance
                            functionCount: 29
                            functionPercentage: 5
                          - functionId: '19'
                            functionName: Product Management
                            functionCount: 26
                            functionPercentage: 5
                          - functionId: '15'
                            functionName: Marketing
                            functionCount: 23
                            functionPercentage: 4
                          - functionId: '26'
                            functionName: Support
                            functionCount: 21
                            functionPercentage: 4
                          - functionId: '12'
                            functionName: Human Resources
                            functionCount: 18
                            functionPercentage: 3
                          - functionId: '18'
                            functionName: Operations
                            functionCount: 16
                            functionPercentage: 3
                          - functionId: '13'
                            functionName: Information Technology
                            functionCount: 15
                            functionPercentage: 3
                          - functionId: '24'
                            functionName: Research
                            functionCount: 11
                            functionPercentage: 2
                        month: 6
                        year: 2025
                      - totalCount: 490
                        countByFunction:
                          - functionId: '25'
                            functionName: Sales
                            functionCount: 147
                            functionPercentage: 30
                          - functionId: '8'
                            functionName: Engineering
                            functionCount: 142
                            functionPercentage: 29
                          - functionId: '19'
                            functionName: Product Management
                            functionCount: 25
                            functionPercentage: 5
                          - functionId: '13'
                            functionName: Information Technology
                            functionCount: 22
                            functionPercentage: 4
                          - functionId: '10'
                            functionName: Finance
                            functionCount: 22
                            functionPercentage: 4
                          - functionId: '4'
                            functionName: Business Development
                            functionCount: 15
                            functionPercentage: 3
                          - functionId: '12'
                            functionName: Human Resources
                            functionCount: 15
                            functionPercentage: 3
                          - functionId: '15'
                            functionName: Marketing
                            functionCount: 13
                            functionPercentage: 3
                          - functionId: '18'
                            functionName: Operations
                            functionCount: 9
                            functionPercentage: 2
                          - functionId: '26'
                            functionName: Support
                            functionCount: 7
                            functionPercentage: 1
                          - functionId: '24'
                            functionName: Research
                            functionCount: 6
                            functionPercentage: 1
                        month: 3
                        year: 2025
                    jobOpeningsGrowthAllFunctions:
                      - monthDifference: 3
                        changePercentage: 38
                      - monthDifference: 6
                        changePercentage: 54
                    jobOpeningsGrowthByFunction:
                      - functionId: '8'
                        functionName: Engineering
                        growthPeriods:
                          - monthDifference: 3
                            changePercentage: 360
                          - monthDifference: 6
                            changePercentage: 68
                      - functionId: '25'
                        functionName: Sales
                        growthPeriods:
                          - monthDifference: 3
                            changePercentage: 3
                          - monthDifference: 6
                            changePercentage: 63
                      - functionId: '4'
                        functionName: Business Development
                        growthPeriods:
                          - monthDifference: 3
                            changePercentage: -12
                          - monthDifference: 6
                            changePercentage: 140
                      - functionId: '13'
                        functionName: Information Technology
                        growthPeriods:
                          - monthDifference: 3
                            changePercentage: 133
                          - monthDifference: 6
                            changePercentage: 59
                      - functionId: '15'
                        functionName: Marketing
                        growthPeriods:
                          - monthDifference: 3
                            changePercentage: 61
                          - monthDifference: 6
                            changePercentage: 185
                      - functionId: '18'
                        functionName: Operations
                        growthPeriods:
                          - monthDifference: 3
                            changePercentage: 38
                          - monthDifference: 6
                            changePercentage: 144
                      - functionId: '19'
                        functionName: Product Management
                        growthPeriods:
                          - monthDifference: 3
                            changePercentage: -8
                          - monthDifference: 6
                            changePercentage: -4
                      - functionId: '24'
                        functionName: Research
                        growthPeriods:
                          - monthDifference: 3
                            changePercentage: 127
                          - monthDifference: 6
                            changePercentage: 317
                      - functionId: '26'
                        functionName: Support
                        growthPeriods:
                          - monthDifference: 3
                            changePercentage: -5
                          - monthDifference: 6
                            changePercentage: 186
                      - functionId: '10'
                        functionName: Finance
                        growthPeriods:
                          - monthDifference: 3
                            changePercentage: -45
                          - monthDifference: 6
                            changePercentage: -27
                      - functionId: '12'
                        functionName: Human Resources
                        growthPeriods:
                          - monthDifference: 3
                            changePercentage: -17
                          - monthDifference: 6
                            changePercentage: 0
                  strategicPrioritiesInsights:
                    title: Strategic Priorities
                    description: >-
                      AI-generated insights about the company's current
                      strategic focus areas and initiatives
                    priorities:
                      - title: Puts members first
                        description: >-
                          One of LinkedIn’s core values has always been to put
                          their members first. This means that every day, when
                          making decisions large and small, they ask: 'Is this
                          the right thing to do for our members?' This value is
                          what drives them, unites the company, and pushes them
                          to remain worthy of the trust of their community of 1
                          billion members.
                      - title: Building a more people-centric culture
                        description: >-
                          LinkedIn wants to create a culture that fosters
                          belonging, well-being, diversity, equity, and
                          inclusion for its employees, customers, and partners.
                          LinkedIn believes that a people-centric culture is
                          essential for innovation, collaboration, and growth.
                  hiringTrendsInsights:
                    title: Hiring Trends
                    description: >-
                      Monthly hiring activity showing new employee counts and
                      growth patterns
                    totalHires: 1919
                    hireCounts:
                      - month: 6
                        year: 2025
                        allEmployeeHireCount: 366
                      - month: 7
                        year: 2025
                        allEmployeeHireCount: 332
                      - month: 8
                        year: 2025
                        allEmployeeHireCount: 362
                      - month: 9
                        year: 2025
                        allEmployeeHireCount: 324
                      - month: 10
                        year: 2025
                        allEmployeeHireCount: 321
                      - month: 11
                        year: 2025
                        allEmployeeHireCount: 214
                    growthPeriods:
                      - monthDifference: 6
                        changePercentage: -42
                    aiInsightsText: >-
                      Significant focus on engineering: The 'Engineering'
                      department has seen a 360% increase in job openings over
                      the past three months, indicating a major initiative in
                      expanding their engineering capabilities. Growth in
                      marketing and IT: The 'Marketing' and 'Information
                      Technology' departments have experienced a 61% and 133%
                      increase in job openings respectively, suggesting a
                      strategic push in these areas to support growth and
                      innovation. Reduction in operations and administrative
                      roles: The 'Operations' and 'Administrative' departments
                      have seen a decrease in headcount by 17% and 17%
                      respectively over the past year, indicating potential
                      restructuring or efficiency improvements. Stable sales
                      department: The 'Sales' department has maintained a stable
                      headcount with a slight increase in job openings by 3%,
                      reflecting a steady focus on maintaining and potentially
                      growing their sales efforts.
                  competitiveLandscapeInsights:
                    title: Competitive Landscape
                    description: >-
                      Similar companies in the same industry with their employee
                      counts and details
                    competitors:
                      - id: '36229'
                        name: Indeed
                        industry: Technology, Information and Internet
                        followerCount: 0
                        Url: https://www.linkedin.com/company/indeed-com/
                        logos:
                          - url: >-
                              https://media.licdn.com/dms/image/v2/C4E0BAQGRyD6gjS54VA/company-logo_200_200/company-logo_200_200/0/1658856556669/indeed_com_logo?e=1767830400&v=beta&t=PyfZhpr0MTkBRpioO7D0aeVuocrNXnd9l-RFJ2_1czo
                            width: 200
                            height: 200
                          - url: >-
                              https://media.licdn.com/dms/image/v2/C4E0BAQGRyD6gjS54VA/company-logo_100_100/company-logo_100_100/0/1658856556669/indeed_com_logo?e=1767830400&v=beta&t=HqpG2VDn-JTPio3fDYvByA6VvXEg75DGaXT3o6JdXwQ
                            width: 100
                            height: 100
                          - url: >-
                              https://media.licdn.com/dms/image/v2/C4E0BAQGRyD6gjS54VA/company-logo_400_400/company-logo_400_400/0/1658856556669/indeed_com_logo?e=1767830400&v=beta&t=u-LUCrq1UKB2rGDKTmmg9bSweUij4dH-SyJTOTG3PIU
                            width: 400
                            height: 400
                        employeeSize: 10,001+ employees
                      - id: '2289109'
                        name: Instagram
                        industry: Software Development
                        followerCount: 0
                        Url: https://www.linkedin.com/company/instagram/
                        logos:
                          - url: >-
                              https://media.licdn.com/dms/image/v2/C4E0BAQFt6KqGwvGCzg/company-logo_200_200/company-logo_200_200/0/1652805738201/instagram_logo?e=1767830400&v=beta&t=mJo_GvZGFQITn_YATD01WCnNToo-GLZNsAZTxTwSxxw
                            width: 200
                            height: 200
                          - url: >-
                              https://media.licdn.com/dms/image/v2/C4E0BAQFt6KqGwvGCzg/company-logo_100_100/company-logo_100_100/0/1652805738201/instagram_logo?e=1767830400&v=beta&t=HHx_h0YjGYJh0Jtbj0Ir0BoLw2DLvrUJAv_kQJv-VGQ
                            width: 100
                            height: 100
                          - url: >-
                              https://media.licdn.com/dms/image/v2/C4E0BAQFt6KqGwvGCzg/company-logo_400_400/company-logo_400_400/0/1652805738201/instagram_logo?e=1767830400&v=beta&t=ZYUO0SecP4rxqBFtcCYxt9PWoXAx-QgkV0Fh-ISg5Xc
                            width: 400
                            height: 400
                        employeeSize: 10,001+ employees
                      - id: '10667'
                        name: Meta
                        industry: Software Development
                        followerCount: 0
                        Url: https://www.linkedin.com/company/meta/
                        logos:
                          - url: >-
                              https://media.licdn.com/dms/image/v2/D560BAQHBmbxCDP0JQQ/company-logo_400_400/B56ZlkdQSaI8AY-/0/1758327015620/meta_logo?e=1767830400&v=beta&t=2UvWg90rzyjJxisK9hLSeQSu66BFB3lsxTwWvstuYtM
                            width: 400
                            height: 400
                          - url: >-
                              https://media.licdn.com/dms/image/v2/D560BAQHBmbxCDP0JQQ/company-logo_200_200/B56ZlkdQSaI8AI-/0/1758327015620/meta_logo?e=1767830400&v=beta&t=WfSnvaMzeDlaQfQoK7HRfv0lapFE3OCM5dy2oTlviC8
                            width: 200
                            height: 200
                          - url: >-
                              https://media.licdn.com/dms/image/v2/D560BAQHBmbxCDP0JQQ/company-logo_100_100/B56ZlkdQSaI8AQ-/0/1758327015620/meta_logo?e=1767830400&v=beta&t=ySa826kUSQJPhNXCoxT4FDI_dE1NKQ1nM3_1RS56rj4
                            width: 100
                            height: 100
                        employeeSize: 10,001+ employees
                    aiInsightsText: >-
                      LinkedIn operates in a competitive landscape with several
                      key players, including established job search engines and
                      professional networking sites. Competitors focus on
                      providing job seekers with access to job listings and
                      career resources, while also offering employers a platform
                      to advertise job openings and connect with potential
                      candidates. Differentiation through user experience, data
                      analytics, and strategic partnerships is crucial for
                      LinkedIn to maintain a competitive advantage.
      tags:
        - Companies
      description: Get company insights (available only for users on paid plans).
  /api/v1/companies/company/posts:
    get:
      summary: Get Company Posts
      parameters:
        - name: id
          in: query
          required: true
          description: 'company ID '
          deprecated: false
          schema:
            type: integer
          example: '1337'
        - name: start
          in: query
          schema:
            type: integer
          example: '0'
      responses:
        '200':
          description: Get Company Posts
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      posts:
                        type: array
                        items:
                          type: object
                          properties:
                            text:
                              type: string
                            url:
                              type: string
                              format: uri
                            urn:
                              type: string
                              format: uri
                            author:
                              type: object
                              properties:
                                name:
                                  type: string
                                headline:
                                  type: string
                                urn:
                                  type: string
                                  format: uri
                                id:
                                  type: string
                                  format: utc-millisec
                                url:
                                  type: string
                                  format: uri
                                profilePictureURL:
                                  type: string
                                  format: uri
                                type:
                                  type: string
                            postedAt:
                              type: object
                              properties:
                                timestamp:
                                  type: integer
                                fullDate:
                                  type: string
                                  format: style
                                relativeDay:
                                  type: string
                            edited:
                              type: boolean
                            engagements:
                              type: object
                              properties:
                                totalReactions:
                                  type: integer
                                commentsCount:
                                  type: integer
                                repostsCount:
                                  type: integer
                                reactions:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      reactionType:
                                        type: string
                                      reactionCount:
                                        type: integer
                            mediaContent:
                              type: array
                              items:
                                type: object
                                properties:
                                  type:
                                    type: string
                                  url:
                                    type: string
                                    format: uri
                            resharedPostContent:
                              nullable: true
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  posts:
                    - text: >-
                        Sometimes it’s easy to see when something’s a perfect
                        fit, like finding that missing puzzle piece. It’s a lot
                        like LinkedIn's job match, which weighs your skills and
                        experience from your profile to the requirements of a
                        job description, helping you instantly connect to roles
                        where you’re a great fit.
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7404565613794471936
                      urn: urn:li:activity:7404565613794471936
                      author:
                        name: LinkedIn
                        headline: 32,534,047 followers
                        urn: urn:li:fsd_company:1337
                        id: '1337'
                        url: https://www.linkedin.com/company/linkedin/posts
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1767225600&v=beta&t=bQxicSjRF4C74w6IRjN_xtRSK8CCnjvYn9BO9x1miyI
                        type: COMPANY
                      postedAt:
                        timestamp: 1765386012505
                        fullDate: 2025-12-10 17:00:12.00 +0000 UTC
                        relativeDay: 23h
                      edited: false
                      engagements:
                        totalReactions: 197
                        commentsCount: 29
                        repostsCount: 8
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 179
                          - reactionType: EMPATHY
                            reactionCount: 8
                          - reactionType: APPRECIATION
                            reactionCount: 7
                          - reactionType: INTEREST
                            reactionCount: 2
                          - reactionType: PRAISE
                            reactionCount: 1
                      mediaContent:
                        - type: document
                          url: >-
                            https://media.licdn.com/dms/document/media/v2/D4D10AQHKcBYSOdk6rg/ads-document-pdf-analyzed/B4DZsJNJsyJoAY-/0/1765386002779?e=1766077200&v=beta&t=1FBPLJCJVE5MoK_ZyVkmfF1pQ9YQASjPKsgm4ffFZG0
                      resharedPostContent: null
                    - text: "Technology is moving faster, earning attention is harder than ever, and trust\nand relationships matter more. These shifts are reshaping the type of challenges small businesses face, and how they set priorities for the future. Here are three ways small businesses can meet the moment: \n\n1) Invest in AI\n2) Build your brand - leverage trusted voices and own your authenticity \n3) Turn relationships into competitive advantages\n\_\nLearn more at https://lnkd.in/eUaWgKVu, and share your knowledge in the comments below!"
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7403851707220422657
                      urn: urn:li:activity:7403851707220422657
                      author:
                        name: LinkedIn
                        headline: 32,534,047 followers
                        urn: urn:li:fsd_company:1337
                        id: '1337'
                        url: https://www.linkedin.com/company/linkedin/posts
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1767225600&v=beta&t=bQxicSjRF4C74w6IRjN_xtRSK8CCnjvYn9BO9x1miyI
                        type: COMPANY
                      postedAt:
                        timestamp: 1765215803914
                        fullDate: 2025-12-08 17:43:23.00 +0000 UTC
                        relativeDay: 2d
                      edited: false
                      engagements:
                        totalReactions: 198
                        commentsCount: 32
                        repostsCount: 10
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 177
                          - reactionType: PRAISE
                            reactionCount: 7
                          - reactionType: APPRECIATION
                            reactionCount: 7
                          - reactionType: EMPATHY
                            reactionCount: 3
                          - reactionType: INTEREST
                            reactionCount: 3
                          - reactionType: ENTERTAINMENT
                            reactionCount: 1
                      mediaContent:
                        - type: article
                          url: >-
                            https://www.linkedin.com/pulse/how-small-businesses-turning-change-opportunity-karin-kimbrough-jatuc?trackingId=q%2BIQcFzgKV8ZnaL%2F8WXm5w%3D%3D
                      resharedPostContent: null
                    - text: "This edition of In the Loop brings together new learning perks, emerging work trends, and stories of reinvention from across the LinkedIn community.\_What’s the one practice that consistently helps you move forward in your career?"
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7402693288669110274
                      urn: urn:li:activity:7402693288669110274
                      author:
                        name: LinkedIn
                        headline: 32,534,047 followers
                        urn: urn:li:fsd_company:1337
                        id: '1337'
                        url: https://www.linkedin.com/company/linkedin/posts
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1767225600&v=beta&t=bQxicSjRF4C74w6IRjN_xtRSK8CCnjvYn9BO9x1miyI
                        type: COMPANY
                      postedAt:
                        timestamp: 1764939615409
                        fullDate: 2025-12-05 13:00:15.00 +0000 UTC
                        relativeDay: 6d
                      edited: false
                      engagements:
                        totalReactions: 951
                        commentsCount: 70
                        repostsCount: 16
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 885
                          - reactionType: EMPATHY
                            reactionCount: 27
                          - reactionType: APPRECIATION
                            reactionCount: 20
                          - reactionType: INTEREST
                            reactionCount: 13
                          - reactionType: PRAISE
                            reactionCount: 5
                          - reactionType: ENTERTAINMENT
                            reactionCount: 1
                      mediaContent:
                        - type: article
                          url: >-
                            https://www.linkedin.com/pulse/tools-trends-stories-shaping-your-next-career-move-linkedin-4booe?trackingId=1aJuOwydAyBk%2BSSRS%2BnlmQ%3D%3D
                      resharedPostContent: null
                    - text: >-
                        Did you know: 1 in 5 people hired last year took a role
                        that didn’t exist in 2000.


                        The future of work is evolving faster than ever and AI
                        is accelerating that transformation.


                        Watch as LinkedIn Chief Economist Karin Kimbrough breaks
                        down the data behind emerging roles, rising demand for
                        AI literacy, and why human skills like collaboration and
                        problem-solving will always stay essential. #AIinWork
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7402391237586128899
                      urn: urn:li:activity:7402391237586128899
                      author:
                        name: LinkedIn
                        headline: 32,534,047 followers
                        urn: urn:li:fsd_company:1337
                        id: '1337'
                        url: https://www.linkedin.com/company/linkedin/posts
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1767225600&v=beta&t=bQxicSjRF4C74w6IRjN_xtRSK8CCnjvYn9BO9x1miyI
                        type: COMPANY
                      postedAt:
                        timestamp: 1764867600819
                        fullDate: 2025-12-04 17:00:00.00 +0000 UTC
                        relativeDay: 6d
                      edited: false
                      engagements:
                        totalReactions: 374
                        commentsCount: 72
                        repostsCount: 21
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 321
                          - reactionType: INTEREST
                            reactionCount: 29
                          - reactionType: EMPATHY
                            reactionCount: 14
                          - reactionType: PRAISE
                            reactionCount: 4
                          - reactionType: APPRECIATION
                            reactionCount: 4
                          - reactionType: ENTERTAINMENT
                            reactionCount: 2
                      mediaContent:
                        - type: video
                          url: >-
                            https://dms.licdn.com/playlist/vid/v2/D4D10AQHqwVAYLJ-wug/mp4-720p-30fp-crf28/B4DZrmj2sBJIB0-/0/1764804762850?e=1766077200&v=beta&t=7HtxqVuIze5ly9T_DaLOWEPydNx2a-U4BX8eEXPyFqg
                      resharedPostContent: null
                    - text: >-
                        On the job hunt? Sending out hundreds of applications
                        may seem like the right move, but it’s not about volume.
                        It’s about alignment ✨


                        With LinkedIn Premium, job seekers can zero in on roles
                        that match their experience and goals. Working smarter >
                        applying harder.
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7402045284492587009
                      urn: urn:li:activity:7402045284492587009
                      author:
                        name: LinkedIn
                        headline: 32,534,047 followers
                        urn: urn:li:fsd_company:1337
                        id: '1337'
                        url: https://www.linkedin.com/company/linkedin/posts
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1767225600&v=beta&t=bQxicSjRF4C74w6IRjN_xtRSK8CCnjvYn9BO9x1miyI
                        type: COMPANY
                      postedAt:
                        timestamp: 1764785119174
                        fullDate: 2025-12-03 18:05:19.00 +0000 UTC
                        relativeDay: 1w
                      edited: false
                      engagements:
                        totalReactions: 285
                        commentsCount: 33
                        repostsCount: 9
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 253
                          - reactionType: INTEREST
                            reactionCount: 13
                          - reactionType: PRAISE
                            reactionCount: 7
                          - reactionType: EMPATHY
                            reactionCount: 5
                          - reactionType: APPRECIATION
                            reactionCount: 5
                          - reactionType: ENTERTAINMENT
                            reactionCount: 2
                      mediaContent:
                        - type: video
                          url: >-
                            https://dms.licdn.com/playlist/vid/v2/D4D10AQEeytrMgl2w5w/mp4-720p-30fp-crf28/B4DZrlY7T_GsB4-/0/1764785113007?e=1766077200&v=beta&t=IgXtpqTrh4glv6jzwZKeDTFTpGwEQ8oqc7eDCauuCPY
                      resharedPostContent: null
                    - text: >-
                        This #GivingTuesday, join us and the entire LinkedIn
                        community in sharing a story about the causes and
                        nonprofits that matter most to you. ❤️
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7401675066633342976
                      urn: urn:li:activity:7401675066633342976
                      author:
                        name: LinkedIn
                        headline: 32,534,047 followers
                        urn: urn:li:fsd_company:1337
                        id: '1337'
                        url: https://www.linkedin.com/company/linkedin/posts
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1767225600&v=beta&t=bQxicSjRF4C74w6IRjN_xtRSK8CCnjvYn9BO9x1miyI
                        type: COMPANY
                      postedAt:
                        timestamp: 1764696852358
                        fullDate: 2025-12-02 17:34:12.00 +0000 UTC
                        relativeDay: 1w
                      edited: false
                      engagements:
                        totalReactions: 276
                        commentsCount: 23
                        repostsCount: 12
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 244
                          - reactionType: EMPATHY
                            reactionCount: 20
                          - reactionType: PRAISE
                            reactionCount: 6
                          - reactionType: APPRECIATION
                            reactionCount: 3
                          - reactionType: INTEREST
                            reactionCount: 3
                      mediaContent:
                        - type: video
                          url: >-
                            https://dms.licdn.com/playlist/vid/v2/D5605AQFX82keGbQnQA/mp4-720p-30fp-crf28/B56ZrgIOR5MECM-/0/1764696848605?e=1766077200&v=beta&t=JQoZOS-Ms1-xYmfeUAQ0bmtj6HfT7EA-TvWG7NApU0c
                      resharedPostContent: null
                    - text: >-
                        In this week’s newsletter, we’re spotlighting the power
                        of purpose-driven choices. From human-centered
                        leadership and meaningful giving to clearer boundaries
                        and smarter career moves. A timely reminder that even
                        amid change, people remain at the heart of work.
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7400160053837602817
                      urn: urn:li:activity:7400160053837602817
                      author:
                        name: LinkedIn
                        headline: 32,534,047 followers
                        urn: urn:li:fsd_company:1337
                        id: '1337'
                        url: https://www.linkedin.com/company/linkedin/posts
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1767225600&v=beta&t=bQxicSjRF4C74w6IRjN_xtRSK8CCnjvYn9BO9x1miyI
                        type: COMPANY
                      postedAt:
                        timestamp: 1764335645160
                        fullDate: 2025-11-28 13:14:05.00 +0000 UTC
                        relativeDay: 1w
                      edited: false
                      engagements:
                        totalReactions: 1337
                        commentsCount: 156
                        repostsCount: 32
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 1204
                          - reactionType: EMPATHY
                            reactionCount: 65
                          - reactionType: APPRECIATION
                            reactionCount: 51
                          - reactionType: INTEREST
                            reactionCount: 10
                          - reactionType: PRAISE
                            reactionCount: 7
                      mediaContent:
                        - type: article
                          url: >-
                            https://www.linkedin.com/pulse/gratitude-generosity-human-side-work-linkedin-pjire?trackingId=Q8O%2BAtIl0TsiKWhA4A3hsw%3D%3D
                      resharedPostContent: null
                    - text: |-
                        Who is someone on your team you appreciate?
                        Tag them. Tell them. Make their day.
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7399446834428964865
                      urn: urn:li:activity:7399446834428964865
                      author:
                        name: LinkedIn
                        headline: 32,534,047 followers
                        urn: urn:li:fsd_company:1337
                        id: '1337'
                        url: https://www.linkedin.com/company/linkedin/posts
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1767225600&v=beta&t=bQxicSjRF4C74w6IRjN_xtRSK8CCnjvYn9BO9x1miyI
                        type: COMPANY
                      postedAt:
                        timestamp: 1764165600402
                        fullDate: 2025-11-26 14:00:00.00 +0000 UTC
                        relativeDay: 2w
                      edited: false
                      engagements:
                        totalReactions: 397
                        commentsCount: 187
                        repostsCount: 16
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 337
                          - reactionType: EMPATHY
                            reactionCount: 29
                          - reactionType: APPRECIATION
                            reactionCount: 23
                          - reactionType: PRAISE
                            reactionCount: 6
                          - reactionType: INTEREST
                            reactionCount: 2
                      mediaContent: null
                      resharedPostContent: null
                    - text: >-
                        Green skills are surging. Verified skills are rising.
                        And professionals everywhere are finding new ways to
                        stand out.


                        What’s one skill you’re focusing on before the year
                        ends?

                        Explore all the insights in the new issue of In the
                        Loop.
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7395094138800463872
                      urn: urn:li:activity:7395094138800463872
                      author:
                        name: LinkedIn
                        headline: 32,534,047 followers
                        urn: urn:li:fsd_company:1337
                        id: '1337'
                        url: https://www.linkedin.com/company/linkedin/posts
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1767225600&v=beta&t=bQxicSjRF4C74w6IRjN_xtRSK8CCnjvYn9BO9x1miyI
                        type: COMPANY
                      postedAt:
                        timestamp: 1763127836895
                        fullDate: 2025-11-14 13:43:56.00 +0000 UTC
                        relativeDay: 3w
                      edited: false
                      engagements:
                        totalReactions: 1906
                        commentsCount: 163
                        repostsCount: 25
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 1772
                          - reactionType: EMPATHY
                            reactionCount: 52
                          - reactionType: PRAISE
                            reactionCount: 31
                          - reactionType: APPRECIATION
                            reactionCount: 30
                          - reactionType: INTEREST
                            reactionCount: 19
                          - reactionType: ENTERTAINMENT
                            reactionCount: 2
                      mediaContent:
                        - type: article
                          url: >-
                            https://www.linkedin.com/pulse/new-ways-grow-prove-stay-informed-linkedin-linkedin-p9fce?trackingId=rU%2B1UGxNeJ1jX%2Fr6sVcTJw%3D%3D
                      resharedPostContent: null
      tags:
        - Companies
      description: Get company posts by ID.
  /api/v1/companies/company/similar:
    get:
      summary: Get Similar Companies
      parameters:
        - name: id
          in: query
          required: true
          description: 'company ID '
          deprecated: false
          schema:
            type: integer
          example: '1441'
      responses:
        '200':
          description: Get Similar campanies
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      SmilarCompanies:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: utc-millisec
                            name:
                              type: string
                            industry:
                              type: string
                            followerCount:
                              type: integer
                            linkedinUrl:
                              type: string
                              format: uri
                            logos:
                              type: array
                              items:
                                type: object
                                properties:
                                  url:
                                    type: string
                                    format: uri
                                  width:
                                    type: integer
                                  height:
                                    type: integer
                      count:
                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  SmilarCompanies:
                    - id: '1586'
                      name: Amazon
                      industry: Software Development
                      followerCount: 35090094
                      linkedinUrl: https://www.linkedin.com/company/amazon/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHTvZwCx4p2Qg/company-logo_200_200/company-logo_200_200/0/1630640869849/amazon_logo?e=1759363200&v=beta&t=cmijIrXz-21M3UzyUus4EKdQsor6rzjuCXHuUgD0c1M
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHTvZwCx4p2Qg/company-logo_100_100/company-logo_100_100/0/1630640869849/amazon_logo?e=1759363200&v=beta&t=RCdmmc53YGk21_fg_qlpijG4gTke1ZsRHIJ6FBNiL34
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHTvZwCx4p2Qg/company-logo_400_400/company-logo_400_400/0/1630640869849/amazon_logo?e=1759363200&v=beta&t=m15EsyVNdnwDPoeZqWMHIRAEP8HL5XXhx2iJI4UPR2E
                          width: 400
                          height: 400
                    - id: '1035'
                      name: Microsoft
                      industry: Software Development
                      followerCount: 26225873
                      linkedinUrl: https://www.linkedin.com/company/microsoft/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=1759363200&v=beta&t=HobFyDuHNQEHLgDySlwVP1ryX6D5wagdCqlQ4PV8aeU
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_400_400/B56ZYQ0mrGGoAc-/0/1744038948046/microsoft_logo?e=1759363200&v=beta&t=G-FGTm__au3USpcZnYzxcK_QaJvAr5M7MTte2CjI2NY
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_200_200/B56ZYQ0mrGGoAM-/0/1744038948046/microsoft_logo?e=1759363200&v=beta&t=C3MQAkAtqP7LdomaKPpMMBEL92Zj44fhMPkd9i2By8M
                          width: 200
                          height: 200
                    - id: '162479'
                      name: Apple
                      industry: Computers and Electronics Manufacturing
                      followerCount: 17906924
                      linkedinUrl: https://www.linkedin.com/company/apple/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHdAaarsO-eyA/company-logo_200_200/company-logo_200_200/0/1630637844948/apple_logo?e=1759363200&v=beta&t=xiqLgIM4XfQIuKfyLkO9d0VEGCdjgvw0-Dz2TQXqimM
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHdAaarsO-eyA/company-logo_100_100/company-logo_100_100/0/1630637844948/apple_logo?e=1759363200&v=beta&t=rH1Hks0xz0aSG3piZ_9sRBG14CCWUF1XKKt4xFYeQtc
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHdAaarsO-eyA/company-logo_400_400/company-logo_400_400/0/1630637844948/apple_logo?e=1759363200&v=beta&t=MMPFeTRrpJUOSt1bgKlwrvfMFrL5WocCBUIa8aWQT0Y
                          width: 400
                          height: 400
                    - id: '10667'
                      name: Meta
                      industry: Software Development
                      followerCount: 11240099
                      linkedinUrl: https://www.linkedin.com/company/meta/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQFdNatYGiBelg/company-logo_200_200/company-logo_200_200/0/1636138754252/facebook_logo?e=1759363200&v=beta&t=EsbYGCv8X9rQSo3rnp6gfQHB8-I6LqWFO2IrbiNf7QE
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQFdNatYGiBelg/company-logo_100_100/company-logo_100_100/0/1636138754252/facebook_logo?e=1759363200&v=beta&t=V5NzhLIcElTJ4DOfi-RhTL3PUlg0QtAp2Cw-PXtq7F8
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQFdNatYGiBelg/company-logo_400_400/company-logo_400_400/0/1636138754252/facebook_logo?e=1759363200&v=beta&t=XK7DjaJ2aLIPjZsYT8qHFlLXJp4se_I85zmqpZY5QXo
                          width: 400
                          height: 400
                    - id: '165158'
                      name: Netflix
                      industry: Entertainment Providers
                      followerCount: 11195865
                      linkedinUrl: https://www.linkedin.com/company/netflix/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGMva5_E8pUjw/company-logo_200_200/company-logo_200_200/0/1736276678240/netflix_logo?e=1759363200&v=beta&t=wyvAQqXqgVfo1mOqqp9t3g9ZWuhVzcLp7F5n_sLdroo
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGMva5_E8pUjw/company-logo_100_100/company-logo_100_100/0/1736276678240/netflix_logo?e=1759363200&v=beta&t=-yTTc5ZremrT4YxXXeCShX83O3EtJgU4X8PfFfrngjw
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGMva5_E8pUjw/company-logo_400_400/company-logo_400_400/0/1736276678240/netflix_logo?e=1759363200&v=beta&t=ePpB_x4TXzEhE44lUa9jwfN_HzDuGOYUfcAdeJ1xdGI
                          width: 400
                          height: 400
                    - id: '1038'
                      name: Deloitte
                      industry: Business Consulting and Services
                      followerCount: 19562088
                      linkedinUrl: https://www.linkedin.com/company/deloitte/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQGNtpblgQpJoQ/company-logo_200_200/company-logo_200_200/0/1662120928214/deloitte_logo?e=1759363200&v=beta&t=Opx9X_pH5rHCNFOh128TD--GI8usBGYRheTdQPUXsLw
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQGNtpblgQpJoQ/company-logo_100_100/company-logo_100_100/0/1662120928214/deloitte_logo?e=1759363200&v=beta&t=38I3bvp0_NVwN8njENYPZSP_5qRy6gTPzEafyisF6rk
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQGNtpblgQpJoQ/company-logo_400_400/company-logo_400_400/0/1662120928214/deloitte_logo?e=1759363200&v=beta&t=EK1f8myjZuIbQspIPD77pHrgs3HCCtqA1JTOoXFvJeE
                          width: 400
                          height: 400
                    - id: '1009'
                      name: IBM
                      industry: IT Services and IT Consulting
                      followerCount: 18628949
                      linkedinUrl: https://www.linkedin.com/company/ibm/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGiz5ecgpCtkA/company-logo_200_200/company-logo_200_200/0/1688684715866/ibm_logo?e=1759363200&v=beta&t=kwjajtQaUIWzqT5AjjKRIdlF1Y2IU79S63LcDDKr5-8
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGiz5ecgpCtkA/company-logo_100_100/company-logo_100_100/0/1688684715866/ibm_logo?e=1759363200&v=beta&t=7FfY-j9OpT1F2ouaQtCok2crBxhbhBr5FwCc4g75V2k
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGiz5ecgpCtkA/company-logo_400_400/company-logo_400_400/0/1688684715866/ibm_logo?e=1759363200&v=beta&t=1nQJ7unf8XEzaK2wdKgtmuew0YIIFkaMUFTYQYlRakk
                          width: 400
                          height: 400
                    - id: '1337'
                      name: LinkedIn
                      industry: Software Development
                      followerCount: 31757666
                      linkedinUrl: https://www.linkedin.com/company/linkedin/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_200_200/company-logo_200_200/0/1638831590218/linkedin_logo?e=1759363200&v=beta&t=BK_dQHhQ66wikpMOyAHgkBR9EJCvcmYFVFHaywxt_Os
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_100_100/company-logo_100_100/0/1638831590218/linkedin_logo?e=1759363200&v=beta&t=GVUY0VneTWglrEpYXAcdAmn_K_zaxnJbfYfpKLtXzGw
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHaVYd13rRz3A/company-logo_400_400/company-logo_400_400/0/1638831590218/linkedin_logo?e=1759363200&v=beta&t=Inx-U7ql7GLrHdoEQbytRz1tGupJETxgTVTtYXiHfzM
                          width: 400
                          height: 400
                    - id: '207470'
                      name: Spotify
                      industry: Musicians
                      followerCount: 4288992
                      linkedinUrl: https://www.linkedin.com/company/spotify/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFkDzx_7dqq3A/company-logo_200_200/company-logo_200_200/0/1631377935713?e=1759363200&v=beta&t=rZPdHDr-Zdrjn4Q9vv385RycdzZqDVbX2dtCGkpF5oA
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFkDzx_7dqq3A/company-logo_100_100/company-logo_100_100/0/1631377935713?e=1759363200&v=beta&t=vz5YM1nOKnfY_UA-9rJIJaJAW1bkoiPyv_O_TH_UgPg
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFkDzx_7dqq3A/company-logo_400_400/company-logo_400_400/0/1631377935713?e=1759363200&v=beta&t=Ocb9UWkBdENp8qEzKQ1YI_z-XkKYWP_qrIxAFuk3kGg
                          width: 400
                          height: 400
                    - id: '1033'
                      name: Accenture
                      industry: Business Consulting and Services
                      followerCount: 13744284
                      linkedinUrl: https://www.linkedin.com/company/accenture/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQEgtOEcxlXMog/company-logo_200_200/B4DZfqEQWkHAAQ-/0/1751978673981/accenture_logo?e=1759363200&v=beta&t=HWcOmfyJi6ul3p7saiO6BhC7eDIV3EDR2Bhoa9u5Q9I
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQEgtOEcxlXMog/company-logo_100_100/B4DZfqEQWkHAAY-/0/1751978673981/accenture_logo?e=1759363200&v=beta&t=v4sX0ErXYMxmPkGbeMLKSDPdARaerQCOMxcjwMFlf9s
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQEgtOEcxlXMog/company-logo_400_400/B4DZfqEQWkHAAg-/0/1751978673981/accenture_logo?e=1759363200&v=beta&t=tIaHurvzWuR_A1MzeXBrrSoXBf6HRTG_k1dx25-qH2U
                          width: 400
                          height: 400
                    - id: '3608'
                      name: NVIDIA
                      industry: Computer Hardware Manufacturing
                      followerCount: 3841279
                      linkedinUrl: https://www.linkedin.com/company/nvidia/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGV36q2EowSyw/company-logo_200_200/company-logo_200_200/0/1724881581208/nvidia_logo?e=1759363200&v=beta&t=M9UPO3Nm5sN_HaiHTBKschCOc_H6ylyNI-sYOp0HLBg
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGV36q2EowSyw/company-logo_100_100/company-logo_100_100/0/1724881581208/nvidia_logo?e=1759363200&v=beta&t=3Q1Y39nhTusX8RYNBzrtXuYT0TQFV12h3umnbPbbPwc
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGV36q2EowSyw/company-logo_400_400/company-logo_400_400/0/1724881581208/nvidia_logo?e=1759363200&v=beta&t=onrSyqVFslxwYCTJOBevoFdIHJXSv7ig8hl1GVfBCDo
                          width: 400
                          height: 400
                    - id: '3185'
                      name: Salesforce
                      industry: Software Development
                      followerCount: 6036099
                      linkedinUrl: https://www.linkedin.com/company/salesforce/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHZ9xYomLW7zg/company-logo_200_200/company-logo_200_200/0/1630658255326/salesforce_logo?e=1759363200&v=beta&t=fdfWll-OBBstaCTnnJbTetqLHE_3J2DK2r0iVYRor0Q
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHZ9xYomLW7zg/company-logo_100_100/company-logo_100_100/0/1630658255326/salesforce_logo?e=1759363200&v=beta&t=C3g_4FGMrAZncyUxt_rJ8UhFyHUPYbw7AvSrqP8XfRI
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHZ9xYomLW7zg/company-logo_400_400/company-logo_400_400/0/1630658255326/salesforce_logo?e=1759363200&v=beta&t=U5sSeyNVt5N05oMun3ezIdAklP1quzumzC0QNn3oaYg
                          width: 400
                          height: 400
                    - id: '1028'
                      name: Oracle
                      industry: IT Services and IT Consulting
                      followerCount: 10637615
                      linkedinUrl: https://www.linkedin.com/company/oracle/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHYCgYovUuPtQ/company-logo_200_200/company-logo_200_200/0/1665755678957/oracle_logo?e=1759363200&v=beta&t=_GG7Kfr10WxS0kBpPMlTH6dz74Fjo6DpwZaBrbam2CA
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHYCgYovUuPtQ/company-logo_100_100/company-logo_100_100/0/1665755678957/oracle_logo?e=1759363200&v=beta&t=TUQNNBTu5oJvX0ZEU4g2iDuafXrt82RW7VhjFxKT1jo
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHYCgYovUuPtQ/company-logo_400_400/company-logo_400_400/0/1665755678957/oracle_logo?e=1759363200&v=beta&t=b3wG-FKfp-NsBQxsyI8oUHyMD1npPOpisjJE6dE3gHI
                          width: 400
                          height: 400
                    - id: '1073'
                      name: EY
                      industry: Professional Services
                      followerCount: 10399990
                      linkedinUrl: https://www.linkedin.com/company/ernstandyoung/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C510BAQGpRhkpxp5A9A/company-logo_200_200/company-logo_200_200/0/1630570672166/ernstandyoung_logo?e=1759363200&v=beta&t=nAy7Mwn-5tfGOyjSR3NeWXmiINzB77ryga_Of3vOsyY
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C510BAQGpRhkpxp5A9A/company-logo_100_100/company-logo_100_100/0/1630570672166/ernstandyoung_logo?e=1759363200&v=beta&t=ZGutmG6wPVWXPsl8FTjZ3jVGlV9RDefS8mm_MjfWEGw
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C510BAQGpRhkpxp5A9A/company-logo_400_400/company-logo_400_400/0/1630570672166/ernstandyoung_logo?e=1759363200&v=beta&t=cuSFO9cKUF8adbCic3DHKGvakjZcFOZzOtnNUp78nls
                          width: 400
                          height: 400
                    - id: '1353'
                      name: Tata Consultancy Services
                      industry: IT Services and IT Consulting
                      followerCount: 17773435
                      linkedinUrl: >-
                        https://www.linkedin.com/company/tata-consultancy-services/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQGsGR9p4ikS5w/company-logo_200_200/company-logo_200_200/0/1708946550425/tata_consultancy_services_logo?e=1759363200&v=beta&t=BZmubp1foFUzoOhzBto3102k_TrAu7mWtF_67Q5Srzc
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQGsGR9p4ikS5w/company-logo_100_100/company-logo_100_100/0/1708946550425/tata_consultancy_services_logo?e=1759363200&v=beta&t=te-qBnMSnflWB72WOO6hxr7WcScXxkapg7v4XaRxcKY
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQGsGR9p4ikS5w/company-logo_400_400/company-logo_400_400/0/1708946550425/tata_consultancy_services_logo?e=1759363200&v=beta&t=odthvOo3RMNMnAq-HmgR8jFxjOpf8Rc97pQnct3COdg
                          width: 400
                          height: 400
                    - id: '2382910'
                      name: Amazon Web Services (AWS)
                      industry: IT Services and IT Consulting
                      followerCount: 10274303
                      linkedinUrl: https://www.linkedin.com/company/amazon-web-services/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFqdm1TZ-RZKQ/company-logo_400_400/B4EZgOay6gHEAg-/0/1752588562343/amazon_web_services_logo?e=1759363200&v=beta&t=ZslKUgzt_bFTwmtxFgoMeomirYk4XNs47hB9hm0DyPI
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFqdm1TZ-RZKQ/company-logo_100_100/B4EZgOay6gHEAY-/0/1752588562343/amazon_web_services_logo?e=1759363200&v=beta&t=bkn5ftny0PMguFzpN0Q6QWkUyDzLsc5UpDf5RE2KIgU
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFqdm1TZ-RZKQ/company-logo_200_200/B4EZgOay6gHEAQ-/0/1752588562343/amazon_web_services_logo?e=1759363200&v=beta&t=u4pSH-ntB4kZkWggYEZvwzhe6v5zUYGDUJ13bA-TIc8
                          width: 200
                          height: 200
                    - id: '11130470'
                      name: OpenAI
                      industry: Research Services
                      followerCount: 8217567
                      linkedinUrl: https://www.linkedin.com/company/openai/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHpzXbqSyR74A/company-logo_400_400/B56ZT8EYB8HsAY-/0/1739395793272/openai_logo?e=1759363200&v=beta&t=nZI28t2UiZ61Cxpp3YpoeW2SqNXsE2Y2PylB7Ig9aIg
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHpzXbqSyR74A/company-logo_200_200/B56ZT8EYB8HsAI-/0/1739395793272/openai_logo?e=1759363200&v=beta&t=pzDJcpY0yq1Zb9jUeURVQh6A0_F8GlYEKg0J0xr5N2A
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHpzXbqSyR74A/company-logo_100_100/B56ZT8EYB8HsAQ-/0/1739395793272/openai_logo?e=1759363200&v=beta&t=H2FpcIjHJ_JsqYvxazC81Mp8cRHnd2rKRh9g-469o-w
                          width: 100
                          height: 100
                    - id: '1068'
                      name: JPMorganChase
                      industry: Financial Services
                      followerCount: 6227082
                      linkedinUrl: https://www.linkedin.com/company/jpmorganchase/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGxpntCyRgsuA/company-logo_200_200/company-logo_200_200/0/1718711710850/jpmorganchase_logo?e=1759363200&v=beta&t=WcuLKJdb6luCl861jkfrfoiVYzD7jhSQ-6f_pp4Da0U
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGxpntCyRgsuA/company-logo_100_100/company-logo_100_100/0/1718711710850/jpmorganchase_logo?e=1759363200&v=beta&t=42_3WKtUgJP-0Etl3ziqxn9dNT6hf5kHODVdYi87Qrw
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGxpntCyRgsuA/company-logo_400_400/company-logo_400_400/0/1718711710850/jpmorganchase_logo?e=1759363200&v=beta&t=fpxGMjsagbQhtQV4eNm-qBwK_Bj-TfX-Mxg3ipXmcJE
                          width: 400
                          height: 400
                    - id: '33246798'
                      name: TikTok
                      industry: Entertainment Providers
                      followerCount: 3636746
                      linkedinUrl: https://www.linkedin.com/company/tiktok/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C510BAQGCdThXIss7UQ/company-logo_200_200/company-logo_200_200/0/1630606162248/tiktok_logo?e=1759363200&v=beta&t=e9C8lAl_ejGLiKQix8hUjE0q3H2tQyEsBRK8c8X00DU
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C510BAQGCdThXIss7UQ/company-logo_100_100/company-logo_100_100/0/1630606162248/tiktok_logo?e=1759363200&v=beta&t=fizkNdo-ivmkn8d0jcKiSAmoh3F4WU_olqGbGzxJxtY
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C510BAQGCdThXIss7UQ/company-logo_400_400/company-logo_400_400/0/1630606162248/tiktok_logo?e=1759363200&v=beta&t=87618Lss2zBwVT4mL24X47czAf7F1Ac_5r1LWt-700s
                          width: 400
                          height: 400
                    - id: '321062'
                      name: Flipkart
                      industry: Technology, Information and Internet
                      followerCount: 5014562
                      linkedinUrl: https://www.linkedin.com/company/flipkart/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHtneRyv-iofA/company-logo_200_200/B56Za6BjbWHgAM-/0/1746877692629/flipkart_logo?e=1759363200&v=beta&t=8eHhv1PPWk5VCWnBhA20dn42wBmHivdPXKvaji20C6M
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHtneRyv-iofA/company-logo_100_100/B56Za6BjbWHgAU-/0/1746877692629/flipkart_logo?e=1759363200&v=beta&t=zq739uAUECElUkSEoS67vkt2HQGKsEqtP_qSTzYs5xk
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHtneRyv-iofA/company-logo_400_400/B56Za6BjbWHgAc-/0/1746877692629/flipkart_logo?e=1759363200&v=beta&t=ztoJmNkJxbDEgcJT7kCpQOjWK65cCXEe1RFReZxNYIs
                          width: 400
                          height: 400
                  count: 20
      tags:
        - Companies
      description: Get companies similar to a given company by ID.
  /api/v1/companies/company/employees-data:
    get:
      summary: Get Company Employees Data
      parameters:
        - name: id
          in: query
          required: true
          description: 'company ID '
          deprecated: false
          schema:
            type: integer
          example: '1441'
      responses:
        '200':
          description: Get campany Employees Data
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      totalResultCount:
                        type: integer
                      groups:
                        type: array
                        items:
                          type: object
                          properties:
                            title:
                              type: string
                            group:
                              type: array
                              items:
                                type: object
                                properties:
                                  name:
                                    type: string
                                  count:
                                    type: integer
                                  id:
                                    type: string
                                    format: utc-millisec
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  totalResultCount: 178678
                  groups:
                    - title: Current company
                      group:
                        - name: Self Employed
                          count: 657344
                          id: '33200573'
                        - name: Amazon
                          count: 497020
                          id: '1586'
                        - name: Microsoft
                          count: 213948
                          id: '1035'
                        - name: Google
                          count: 178678
                          id: '1441'
                        - name: YouTube
                          count: 130334
                          id: '16140'
                        - name: Amazon Web Services (AWS)
                          count: 126620
                          id: '2382910'
                        - name: Meta
                          count: 61974
                          id: '10667'
                        - name: Salesforce
                          count: 61163
                          id: '3185'
                        - name: LinkedIn
                          count: 26190
                          id: '1337'
                        - name: Stealth Startup
                          count: 25532
                          id: '18583501'
                        - name: Forbes
                          count: 7914
                          id: '5597'
                        - name: Pavilion
                          count: 6094
                          id: '27062956'
                        - name: World Economic Forum
                          count: 4773
                          id: '8193'
                        - name: Forbes Technology Council
                          count: 2002
                          id: '11075183'
                        - name: topmate.io
                          count: 1861
                          id: '79703243'
                    - title: Locations
                      group:
                        - name: United States
                          count: 84086
                          id: '103644278'
                        - name: California, United States
                          count: 53081
                          id: '102095887'
                        - name: San Francisco Bay Area
                          count: 47598
                          id: '90000084'
                        - name: India
                          count: 23109
                          id: '102713980'
                        - name: New York City Metropolitan Area
                          count: 15710
                          id: '90000070'
                        - name: Karnataka, India
                          count: 7565
                          id: '100811329'
                        - name: Greater Bengaluru Area
                          count: 7476
                          id: '90009633'
                        - name: Bengaluru
                          count: 7174
                          id: '105214831'
                        - name: United Kingdom
                          count: 6614
                          id: '101165590'
                        - name: England, United Kingdom
                          count: 6168
                          id: '102299470'
                        - name: Greater Delhi Area
                          count: 3392
                          id: '90009626'
                        - name: Telangana, India
                          count: 3191
                          id: '102767464'
                        - name: Greater Hyderabad Area
                          count: 3130
                          id: '90009650'
                        - name: Hyderabad
                          count: 3045
                          id: '105556991'
                        - name: Delhi, India
                          count: 1918
                          id: '106187582'
                    - title: School
                      group:
                        - name: University of California, Berkeley
                          count: 4087
                          id: '2517'
                        - name: Stanford University
                          count: 3713
                          id: '1792'
                        - name: Massachusetts Institute of Technology
                          count: 1919
                          id: '1503'
                        - name: Harvard University
                          count: 1234
                          id: '1646'
                        - name: Birla Institute of Technology and Science, Pilani
                          count: 1165
                          id: '739903'
                        - name: Stanford University Graduate School of Business
                          count: 1072
                          id: '1791'
                        - name: The Wharton School
                          count: 1068
                          id: '5290'
                        - name: Harvard Business School
                          count: 806
                          id: '4867'
                        - name: Indian Institute of Technology, Bombay
                          count: 763
                          id: '157266'
                        - name: INSEAD
                          count: 650
                          id: '5176'
                        - name: Delhi University
                          count: 505
                          id: '426734'
                        - name: Kendriya Vidyalaya
                          count: 475
                          id: '15106896'
                        - name: Indian School of Business
                          count: 443
                          id: '12070'
                        - name: Netaji Subhas Institute of Technology
                          count: 368
                          id: '394452'
                        - name: >-
                            Indian Institute of Technology (Banaras Hindu
                            University), Varanasi
                          count: 335
                          id: '369612'
                    - title: Current Function
                      group:
                        - name: Engineering
                          count: 79187
                          id: '8'
                        - name: Information Technology
                          count: 21225
                          id: '13'
                        - name: Business Development
                          count: 17767
                          id: '4'
                        - name: Sales
                          count: 16787
                          id: '25'
                        - name: Program and Project Management
                          count: 13968
                          id: '20'
                        - name: Operations
                          count: 13491
                          id: '18'
                        - name: Marketing
                          count: 12769
                          id: '15'
                        - name: Product Management
                          count: 7595
                          id: '19'
                        - name: Media and Communication
                          count: 7234
                          id: '16'
                        - name: Arts and Design
                          count: 6943
                          id: '3'
                        - name: Education
                          count: 5054
                          id: '7'
                        - name: Research
                          count: 4991
                          id: '24'
                        - name: Human Resources
                          count: 4891
                          id: '12'
                        - name: Community and Social Services
                          count: 3154
                          id: '5'
                        - name: Entrepreneurship
                          count: 1784
                          id: '9'
                    - title: Skill Explicit
                      group:
                        - name: Python (Programming Language)
                          count: 56605
                          id: '1346'
                        - name: Java
                          count: 53030
                          id: '147'
                        - name: C++
                          count: 49211
                          id: '198'
                        - name: SQL
                          count: 40223
                          id: '483'
                        - name: Project Management
                          count: 39539
                          id: '2269'
                        - name: Leadership
                          count: 39243
                          id: '154'
                        - name: Microsoft Office
                          count: 38617
                          id: '366'
                        - name: C (Programming Language)
                          count: 37227
                          id: '438'
                        - name: JavaScript
                          count: 34940
                          id: '218'
                        - name: Management
                          count: 34573
                          id: '19'
                        - name: Machine Learning
                          count: 23823
                          id: '3289'
                        - name: Algorithms
                          count: 23500
                          id: '1070'
                        - name: Communication
                          count: 22687
                          id: '135'
                        - name: Strategy
                          count: 21853
                          id: '107'
                        - name: Data Structures
                          count: 12433
                          id: '4202'
                    - title: Service categories
                      group:
                        - name: Consulting
                          count: 1837
                          id: '220'
                        - name: Marketing
                          count: 1502
                          id: '2461'
                        - name: Software Development
                          count: 1255
                          id: '602'
                        - name: Coaching & Mentoring
                          count: 1224
                          id: '50413'
                        - name: Operations
                          count: 1007
                          id: '63'
                        - name: Design
                          count: 902
                          id: '3387'
                        - name: Writing
                          count: 722
                          id: '86'
                        - name: Digital Marketing
                          count: 690
                          id: '1836'
                        - name: Information Technology
                          count: 650
                          id: '4725'
                        - name: Career Development Coaching
                          count: 575
                          id: '44670'
                        - name: IT Consulting
                          count: 448
                          id: '50342'
                        - name: Interview Preparation
                          count: 374
                          id: '7951'
                        - name: Leadership Development
                          count: 338
                          id: '759'
                        - name: Public Speaking
                          count: 308
                          id: '1101'
                        - name: Resume Review
                          count: 295
                          id: '10167'
                    - title: Field of Study
                      group:
                        - name: Computer Science
                          count: 47045
                          id: '100189'
                        - name: Computational Science
                          count: 41185
                          id: '100784'
                        - name: Computer Engineering
                          count: 11190
                          id: '100347'
                        - name: Electrical and Electronics Engineering
                          count: 11027
                          id: '100351'
                        - name: Business Administration and Management, General
                          count: 10503
                          id: '101409'
                        - name: Marketing
                          count: 8953
                          id: '101475'
                        - name: Information Technology
                          count: 7956
                          id: '100176'
                        - name: Economics
                          count: 7947
                          id: '100990'
                        - name: Computer Engineering Technologies/Technicians
                          count: 7720
                          id: '100432'
                        - name: Computer Engineering Technology/Technician
                          count: 7004
                          id: '100433'
                        - name: Mathematics
                          count: 6740
                          id: '100693'
                        - name: Business/Commerce, General
                          count: 5315
                          id: '101407'
                        - name: >-
                            Electrical, Electronics and Communications
                            Engineering
                          count: 5017
                          id: '100350'
                        - name: Finance, General
                          count: 4749
                          id: '101444'
                        - name: Physical Sciences
                          count: 1957
                          id: '100865'
      tags:
        - Companies
      description: >-
        Get a company’s employee insights by ID, including current company
        distribution, locations, schools, job functions, skills, service
        categories, and fields of study.
  /api/v1/jobs/search:
    get:
      summary: Search
      parameters:
        - name: keyword
          in: query
          required: true
          description: >-
            The job title, skills, or keywords to search for

            Examples: software engineer,nodejs developer,data scientist,product
            manager
          deprecated: false
          schema:
            type: string
          example: nodejs
        - name: location
          in: query
          required: false
          description: |-
            The city, state, or region where you want to find jobs
            Examples: San+Francisco, New+York+City, London, Remote
            Format: Use + for spaces: San+Francisco+Bay+Area
          deprecated: false
          schema:
            type: string
        - name: geoId
          in: query
          required: false
          description: |-
            LinkedIn's internal geographic identifier (optional)
            Examples: 103644278,102571732
            Note: Usually auto-detected from location
          deprecated: false
          schema:
            type: integer
        - name: companyIds
          in: query
          description: |-
            Specific company LinkedIn IDs to filter results (comma-separated)
            Examples: 2499210,1337,104085107
            Format: comma-separated numbers
          schema:
            type: string
        - name: jobTypes
          in: query
          description: |-
            jobTypes (comma-separated)
            The type of employment you're looking for
            Available Options:

                full_time - Full-time positions

                part_time - Part-time positions

                contract - Contract-based work

                temporary - Temporary assignments

                internship - Internship opportunities

                volunteer - Volunteer positions

            Example: jobTypes=full_time,contract
          schema:
            type: string
        - name: experience
          in: query
          description: |-
            The required experience level for the job
            Available Options:

                internship - Student internships

                entry_level - 0-2 years experience (Junior roles)

                associate - 2-4 years experience

                mid_senior - 4-8 years experience (Mid-level to Senior)

                director - 8+ years experience (Director level and above)

            Example: experience=entry_level,mid_senior
          schema:
            type: string
        - name: regions
          in: query
          description: |-
            Specific region codes for targeted search (optional)
            Examples: 102571732,103743442
          schema:
            type: string
        - name: timePosted
          in: query
          description: |-
            How recently the job was posted
            Available Options:

                any - Any time (default)

                24h - Past 24 hours

                1week - Past week

                1month - Past month

            Example: timePosted=1week
          schema:
            type: string
          example: any
        - name: salary
          in: query
          description: |-
            salary
            Minimum salary range you're targeting
            Available Options:

                any - Any salary (default)

                40k - $40,000+ per year

                60k - $60,000+ per year

                80k - $80,000+ per year

                100k - $100,000+ per year

                120k - $120,000+ per year

            Example: salary=100k
          schema:
            type: string
        - name: workArrangement
          in: query
          description: |-
            The work location arrangement
            Available Options:

                onsite - Office-based work

                remote - Fully remote work

                hybrid - Combination of office and remote

            Example: workArrangement=remote,hybrid
          schema:
            type: string
        - name: start
          in: query
          description: |-
            *The starting index for pagination (0-based)*
            Default: 0 (first page)
            Increment by: 25 per page (LinkedIn's default page size)
            Example: start=25 (second page), start=50 (third page)
          schema:
            type: integer
          example: '0'
      responses:
        '200':
          description: Search
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      jobs:
                        type: array
                        items:
                          type: object
                          properties:
                            jobId:
                              type: string
                              format: utc-millisec
                            title:
                              type: string
                            screenReader:
                              type: string
                            company:
                              type: object
                              properties:
                                name:
                                  type: string
                                url:
                                  type: string
                                  format: uri
                                imageUrl:
                                  type: string
                                  format: uri
                            location:
                              type: string
                            postedDate:
                              type: string
                            exactDate:
                              type: string
                              format: date
                            url:
                              type: string
                              format: uri
                            entityUrn:
                              type: string
                              format: uri
                            benefits:
                              type: string
                      totalCount:
                        type: integer
                      start:
                        type: integer
                      hasMore:
                        type: boolean
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  jobs:
                    - jobId: '4259594855'
                      title: Software Engineer, Backend
                      screenReader: Software Engineer, Backend
                      company:
                        name: Tinder
                        url: https://www.linkedin.com/company/tinder-incorporated
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C560BAQGXi3o84QXQnw/company-logo_100_100/company-logo_100_100/0/1652919833346/tinder_incorporated_logo?e=2147483647&v=beta&t=8LEaFsSXxauZwQqF8LfCfmp26NPOvf4Q9WOLk1F8z9I
                      location: Palo Alto, CA
                      postedDate: 1 week ago
                      exactDate: '2025-08-15'
                      url: https://www.linkedin.com/jobs/view/4259594855
                      entityUrn: urn:li:jobPosting:4259594855
                      benefits: Actively Hiring
                    - jobId: '4259593912'
                      title: Software Engineer, Backend
                      screenReader: Software Engineer, Backend
                      company:
                        name: Tinder
                        url: https://www.linkedin.com/company/tinder-incorporated
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C560BAQGXi3o84QXQnw/company-logo_100_100/company-logo_100_100/0/1652919833346/tinder_incorporated_logo?e=2147483647&v=beta&t=8LEaFsSXxauZwQqF8LfCfmp26NPOvf4Q9WOLk1F8z9I
                      location: San Francisco, CA
                      postedDate: 1 week ago
                      exactDate: '2025-08-15'
                      url: https://www.linkedin.com/jobs/view/4259593912
                      entityUrn: urn:li:jobPosting:4259593912
                      benefits: Actively Hiring
                    - jobId: '4278391743'
                      title: Backend Engineer
                      screenReader: Backend Engineer
                      company:
                        name: CRED
                        url: https://www.linkedin.com/company/credplatform
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQEfTOiG-JsrzQ/company-logo_100_100/B56ZezKEWTGoAQ-/0/1751057450870/credplatform_logo?e=2147483647&v=beta&t=pVcyVAQd6ccayDkyI3M4pPWWO0q5fjBpFU-z-D3ygTQ
                      location: United States
                      postedDate: 4 weeks ago
                      exactDate: '2025-07-30'
                      url: https://www.linkedin.com/jobs/view/4278391743
                      entityUrn: urn:li:jobPosting:4278391743
                    - jobId: '4278390789'
                      title: Backend Engineer
                      screenReader: Backend Engineer
                      company:
                        name: CRED
                        url: https://www.linkedin.com/company/credplatform
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQEfTOiG-JsrzQ/company-logo_100_100/B56ZezKEWTGoAQ-/0/1751057450870/credplatform_logo?e=2147483647&v=beta&t=pVcyVAQd6ccayDkyI3M4pPWWO0q5fjBpFU-z-D3ygTQ
                      location: United States
                      postedDate: 4 weeks ago
                      exactDate: '2025-07-30'
                      url: https://www.linkedin.com/jobs/view/4278390789
                      entityUrn: urn:li:jobPosting:4278390789
                    - jobId: '4290341003'
                      title: (New Grad) Software Engineering
                      screenReader: (New Grad) Software Engineering
                      company:
                        name: Samsara
                        url: https://www.linkedin.com/company/samsara
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQGJd8HDfSEaLg/company-logo_100_100/company-logo_100_100/0/1728335806865/samsara_logo?e=2147483647&v=beta&t=IlAh3rieKGJxnY_EYKz16xBvN5ZQxBWiNYzs-xnD3nw
                      location: San Francisco, CA
                      postedDate: 19 hours ago
                      exactDate: '2025-08-28'
                      url: https://www.linkedin.com/jobs/view/4290341003
                      entityUrn: urn:li:jobPosting:4290341003
                      benefits: Actively Hiring
                    - jobId: '4265604833'
                      title: Software Engineer, Routing - New Grad
                      screenReader: Software Engineer, Routing - New Grad
                      company:
                        name: Nuro
                        url: https://www.linkedin.com/company/nuro-inc.
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C560BAQHahNycmNp6Gg/company-logo_100_100/company-logo_100_100/0/1630638403898/nuro_inc_logo?e=2147483647&v=beta&t=3FVrqvduIGtnaH7-fVEnLalZbqxzzCLA1ALuQ76cgmc
                      location: Mountain View, CA
                      postedDate: 4 days ago
                      exactDate: '2025-08-24'
                      url: https://www.linkedin.com/jobs/view/4265604833
                      entityUrn: urn:li:jobPosting:4265604833
                      benefits: Actively Hiring
                    - jobId: '4285729424'
                      title: Software Engineer
                      screenReader: Software Engineer
                      company:
                        name: HIFI
                        url: https://www.linkedin.com/company/hifibridge
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQFBm1I2lwmuwQ/company-logo_100_100/B56ZeJodx8GoAg-/0/1750360776149/hifibridge_logo?e=2147483647&v=beta&t=uX2PRu0JZtE6pg9TuzQkOm6ehoHPnEOCPb9OrHPkEm0
                      location: New York, United States
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-14'
                      url: https://www.linkedin.com/jobs/view/4285729424
                      entityUrn: urn:li:jobPosting:4285729424
                      benefits: |-
                        Medical insurance
                                     +1 benefits
                    - jobId: '4292361179'
                      title: Junior Software Engineer
                      screenReader: Junior Software Engineer
                      company:
                        name: Visionist, Inc.
                        url: https://www.linkedin.com/company/visionist-inc-
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4E0BAQGj6mjHj8a3rA/company-logo_100_100/company-logo_100_100/0/1674092170797/visionist_inc__logo?e=2147483647&v=beta&t=AzGn_p9eupdXW9PlcnFP_zB3QSQpV7FI2xE568wTg00
                      location: Columbia, MD
                      postedDate: 13 hours ago
                      exactDate: '2025-08-28'
                      url: https://www.linkedin.com/jobs/view/4292361179
                      entityUrn: urn:li:jobPosting:4292361179
                    - jobId: '4287757824'
                      title: Full-Stack Software Engineer (Jr/Mid level)
                      screenReader: Full-Stack Software Engineer (Jr/Mid level)
                      company:
                        name: Teambridge
                        url: https://www.linkedin.com/company/team-bridge
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQGKBJABsnpMyQ/company-logo_100_100/B56ZZen7SyGUAU-/0/1745344247197/team_bridge_logo?e=2147483647&v=beta&t=ECNI7VoPpXlp-XipgI_1YMI3GLYDkpoq0ssvkQoO2UA
                      location: San Francisco, CA
                      postedDate: 1 week ago
                      exactDate: '2025-08-17'
                      url: https://www.linkedin.com/jobs/view/4287757824
                      entityUrn: urn:li:jobPosting:4287757824
                    - jobId: '4289739766'
                      title: Junior Web Developer (Permanent WFH/Remote setup)
                      screenReader: Junior Web Developer (Permanent WFH/Remote setup)
                      company:
                        name: Lensa
                        url: https://www.linkedin.com/company/lensa
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4D0BAQEkHa-0Aki9XQ/company-logo_100_100/B4DZaKylu7GsAQ-/0/1746085240184/lensa_logo?e=2147483647&v=beta&t=vxuqQreX_wx1J2lugCeUKuGGZtbGyjhRRFeWyrBMnFQ
                      location: United States
                      postedDate: 1 day ago
                      exactDate: '2025-08-27'
                      url: https://www.linkedin.com/jobs/view/4289739766
                      entityUrn: urn:li:jobPosting:4289739766
                    - jobId: '4280235420'
                      title: Node.js Backend Developer - United States
                      screenReader: Node.js Backend Developer - United States
                      company:
                        name: JumpCloud
                        url: https://www.linkedin.com/company/jumpcloud
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4D0BAQGQEJvpnyM3Bw/company-logo_100_100/company-logo_100_100/0/1721926888915/jumpcloud_logo?e=2147483647&v=beta&t=qym_7dn1fGW-lo2UTHrDLHaxzEcVS4byZn9qck8K_V4
                      location: Charlotte, NC
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-08'
                      url: https://www.linkedin.com/jobs/view/4280235420
                      entityUrn: urn:li:jobPosting:4280235420
                    - jobId: '4291978301'
                      title: Staff Software Engineer, Backend
                      screenReader: Staff Software Engineer, Backend
                      company:
                        name: Tinder
                        url: https://www.linkedin.com/company/tinder-incorporated
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C560BAQGXi3o84QXQnw/company-logo_100_100/company-logo_100_100/0/1652919833346/tinder_incorporated_logo?e=2147483647&v=beta&t=8LEaFsSXxauZwQqF8LfCfmp26NPOvf4Q9WOLk1F8z9I
                      location: New York, NY
                      postedDate: 19 hours ago
                      exactDate: '2025-08-28'
                      url: https://www.linkedin.com/jobs/view/4291978301
                      entityUrn: urn:li:jobPosting:4291978301
                      benefits: Actively Hiring
                    - jobId: '4262695092'
                      title: Software Engineer (New Grad Program)
                      screenReader: Software Engineer (New Grad Program)
                      company:
                        name: Sigma
                        url: https://www.linkedin.com/company/sigmacomputing
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQFF9HTPVWjdbQ/company-logo_100_100/company-logo_100_100/0/1687535336598/sigmacomputing_logo?e=2147483647&v=beta&t=am5UOCZalnOzOl7wVpgFhNhAT2ltbbPZO4BfNcit7DY
                      location: New York, NY
                      postedDate: 3 days ago
                      exactDate: '2025-08-25'
                      url: https://www.linkedin.com/jobs/view/4262695092
                      entityUrn: urn:li:jobPosting:4262695092
                      benefits: Actively Hiring
                    - jobId: '4280233763'
                      title: Node.js Backend Developer - United States
                      screenReader: Node.js Backend Developer - United States
                      company:
                        name: JumpCloud
                        url: https://www.linkedin.com/company/jumpcloud
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4D0BAQGQEJvpnyM3Bw/company-logo_100_100/company-logo_100_100/0/1721926888915/jumpcloud_logo?e=2147483647&v=beta&t=qym_7dn1fGW-lo2UTHrDLHaxzEcVS4byZn9qck8K_V4
                      location: Atlanta, GA
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-08'
                      url: https://www.linkedin.com/jobs/view/4280233763
                      entityUrn: urn:li:jobPosting:4280233763
                      benefits: Be an early applicant
                    - jobId: '4243684882'
                      title: Software Engineer - Backend
                      screenReader: Software Engineer - Backend
                      company:
                        name: Plaid
                        url: https://www.linkedin.com/company/plaid-
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQET1PssqfCU5g/company-logo_100_100/B4EZarmEzJGYAY-/0/1746635608257/plaid__logo?e=2147483647&v=beta&t=fiFr2KJFzSNufIcHLyRdsg9kzJviRTfZilOvCt99Hg0
                      location: New York, NY
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-10'
                      url: https://www.linkedin.com/jobs/view/4243684882
                      entityUrn: urn:li:jobPosting:4243684882
                    - jobId: '4279670718'
                      title: Backend Engineer
                      screenReader: Backend Engineer
                      company:
                        name: Stripe
                        url: https://www.linkedin.com/company/stripe
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQFqiwiSMcKk6A/company-logo_100_100/company-logo_100_100/0/1724937022726/stripe_logo?e=2147483647&v=beta&t=izBBwlcagZ_29QyD8kRFwxdV4_reYlATZI7uBtin61I
                      location: Buffalo-Niagara Falls Area
                      postedDate: 2 days ago
                      exactDate: '2025-08-26'
                      url: https://www.linkedin.com/jobs/view/4279670718
                      entityUrn: urn:li:jobPosting:4279670718
                      benefits: Actively Hiring
                    - jobId: '4292536319'
                      title: Software Engineer
                      screenReader: Software Engineer
                      company:
                        name: Breeze Airways™
                        url: https://www.linkedin.com/company/breeze-airways
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4E0BAQGtmZOcRZkNEA/company-logo_100_100/company-logo_100_100/0/1661879601898/breeze_airways_logo?e=2147483647&v=beta&t=6xj50GMEaQm5CdldXmQ5z8vvyMJaClggiJ1seMNNDlc
                      location: Cottonwood Heights, UT
                      postedDate: 3 hours ago
                      exactDate: '2025-08-28'
                      url: https://www.linkedin.com/jobs/view/4292536319
                      entityUrn: urn:li:jobPosting:4292536319
                    - jobId: '4291611170'
                      title: Node Developer
                      screenReader: Node Developer
                      company:
                        name: Infobahn Softworld Inc
                        url: >-
                          https://www.linkedin.com/company/infobahn-softworld-inc
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQE6_7G8IWKcrw/company-logo_100_100/company-logo_100_100/0/1631320957267?e=2147483647&v=beta&t=E54ngbKzwURr7HG-cHgQgSRATB-X5OpyQWXRAfemo0k
                      location: San Francisco Bay Area
                      postedDate: 2 days ago
                      exactDate: '2025-08-26'
                      url: https://www.linkedin.com/jobs/view/4291611170
                      entityUrn: urn:li:jobPosting:4291611170
                      benefits: Actively Hiring
                    - jobId: '4280237277'
                      title: Node.js Backend Developer - United States
                      screenReader: Node.js Backend Developer - United States
                      company:
                        name: JumpCloud
                        url: https://www.linkedin.com/company/jumpcloud
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4D0BAQGQEJvpnyM3Bw/company-logo_100_100/company-logo_100_100/0/1721926888915/jumpcloud_logo?e=2147483647&v=beta&t=qym_7dn1fGW-lo2UTHrDLHaxzEcVS4byZn9qck8K_V4
                      location: Austin, TX
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-08'
                      url: https://www.linkedin.com/jobs/view/4280237277
                      entityUrn: urn:li:jobPosting:4280237277
                      benefits: Be an early applicant
                    - jobId: '4292523049'
                      title: Back End Developer
                      screenReader: Back End Developer
                      company:
                        name: Sierra Digital Inc
                        url: https://www.linkedin.com/company/sierradigital
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C510BAQFKPxbHmRIX6Q/company-logo_100_100/company-logo_100_100/0/1630569994441/sierradigitalinc_logo?e=2147483647&v=beta&t=viGC0fZ4F9Wp3nUyyNVPpOM-_9Oy82b1WDptFECxCnI
                      location: United States
                      postedDate: 4 hours ago
                      exactDate: '2025-08-28'
                      url: https://www.linkedin.com/jobs/view/4292523049
                      entityUrn: urn:li:jobPosting:4292523049
                      benefits: Actively Hiring
                    - jobId: '4280233764'
                      title: Node.js Backend Developer - United States
                      screenReader: Node.js Backend Developer - United States
                      company:
                        name: JumpCloud
                        url: https://www.linkedin.com/company/jumpcloud
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4D0BAQGQEJvpnyM3Bw/company-logo_100_100/company-logo_100_100/0/1721926888915/jumpcloud_logo?e=2147483647&v=beta&t=qym_7dn1fGW-lo2UTHrDLHaxzEcVS4byZn9qck8K_V4
                      location: Detroit, MI
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-08'
                      url: https://www.linkedin.com/jobs/view/4280233764
                      entityUrn: urn:li:jobPosting:4280233764
                      benefits: Be an early applicant
                    - jobId: '4291315356'
                      title: Junior Full-Stack Developer - Backend Specialist
                      screenReader: Junior Full-Stack Developer - Backend Specialist
                      company:
                        name: Hawke Media
                        url: https://www.linkedin.com/company/hawkemedia
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQGEzX42NJE4bQ/company-logo_100_100/company-logo_100_100/0/1666111409555/hawkemedia_logo?e=2147483647&v=beta&t=p2TTQEPw4Uf7L9UsH-IsID_kb8o-J9FPls5b44Stsg0
                      location: Santa Monica, CA
                      postedDate: 2 days ago
                      exactDate: '2025-08-26'
                      url: https://www.linkedin.com/jobs/view/4291315356
                      entityUrn: urn:li:jobPosting:4291315356
                      benefits: Actively Hiring
                    - jobId: '4280233765'
                      title: Node.js Backend Developer - United States
                      screenReader: Node.js Backend Developer - United States
                      company:
                        name: JumpCloud
                        url: https://www.linkedin.com/company/jumpcloud
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4D0BAQGQEJvpnyM3Bw/company-logo_100_100/company-logo_100_100/0/1721926888915/jumpcloud_logo?e=2147483647&v=beta&t=qym_7dn1fGW-lo2UTHrDLHaxzEcVS4byZn9qck8K_V4
                      location: Denver, CO
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-08'
                      url: https://www.linkedin.com/jobs/view/4280233765
                      entityUrn: urn:li:jobPosting:4280233765
                    - jobId: '4289808823'
                      title: Node.js Developer
                      screenReader: Node.js Developer
                      company:
                        name: Expedite Technology Solutions LLC
                        url: >-
                          https://www.linkedin.com/company/expedite-technology-solutions-llc
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4E0BAQGeGMJ9ulTrag/company-logo_100_100/company-logo_100_100/0/1635179023686?e=2147483647&v=beta&t=YXJo2x4Qm5LUDbVrXJ6g_HMhESATn6Xv44VSVx6-Dhg
                      location: Foster City, CA
                      postedDate: 1 day ago
                      exactDate: '2025-08-27'
                      url: https://www.linkedin.com/jobs/view/4289808823
                      entityUrn: urn:li:jobPosting:4289808823
                      benefits: Be an early applicant
                    - jobId: '4290307598'
                      title: Software Engineer
                      screenReader: Software Engineer
                      company:
                        name: Endgame
                        url: https://www.linkedin.com/company/endgame-ai
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQEyJuqidkFhGA/company-logo_100_100/B56ZdX.CW8HoAQ-/0/1749527570415/endgame_ai_logo?e=2147483647&v=beta&t=eM-L1IGP4hvRUvrMQcczTypltz6BTUt4tYXT4yxi2FM
                      location: New York, NY
                      postedDate: 1 day ago
                      exactDate: '2025-08-27'
                      url: https://www.linkedin.com/jobs/view/4290307598
                      entityUrn: urn:li:jobPosting:4290307598
                    - jobId: '4221959281'
                      title: Software Engineer, Backend
                      screenReader: Software Engineer, Backend
                      company:
                        name: Hayden AI
                        url: https://www.linkedin.com/company/haydenaitech
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQFbIajjHyBeNw/company-logo_100_100/company-logo_100_100/0/1720554213394/haydenaitech_logo?e=2147483647&v=beta&t=7YG-JZ9pkOb_vTk_EUr6KlCgCi9KKT5573gaOJS6DjA
                      location: San Francisco, CA
                      postedDate: 3 months ago
                      exactDate: '2025-05-06'
                      url: https://www.linkedin.com/jobs/view/4221959281
                      entityUrn: urn:li:jobPosting:4221959281
                      benefits: Actively Hiring
                    - jobId: '4279039173'
                      title: Remote Backend SWE
                      screenReader: Remote Backend SWE
                      company:
                        name: Employer.com
                        url: https://www.linkedin.com/company/employer-com
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQFZ0Paz8xcEVg/company-logo_100_100/company-logo_100_100/0/1731567680338/employer_com_logo?e=2147483647&v=beta&t=tCfpKnczvaZpfc3_T-Q69QTsiuPFn5pLz3E-pcRG2vM
                      location: San Francisco, CA
                      postedDate: 3 weeks ago
                      exactDate: '2025-08-01'
                      url: https://www.linkedin.com/jobs/view/4279039173
                      entityUrn: urn:li:jobPosting:4279039173
                      benefits: Be an early applicant
                    - jobId: '4237066524'
                      title: Software Engineer I
                      screenReader: Software Engineer I
                      company:
                        name: Twitch
                        url: https://www.linkedin.com/company/twitch-tv
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQHbYCvrNGC17g/company-logo_100_100/company-logo_100_100/0/1695062101897/twitch_tv_logo?e=2147483647&v=beta&t=uqZASN7sr7mZBei_6o-tFrTEho8x-ttcnGLk4zejrSg
                      location: Seattle, WA
                      postedDate: 5 days ago
                      exactDate: '2025-08-23'
                      url: https://www.linkedin.com/jobs/view/4237066524
                      entityUrn: urn:li:jobPosting:4237066524
                    - jobId: '4265743683'
                      title: (New Grad) Software Engineer
                      screenReader: (New Grad) Software Engineer
                      company:
                        name: Pylon
                        url: https://www.linkedin.com/company/usepylon
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQF49w56NFgEtg/company-logo_100_100/B4EZjJTBdlGwAc-/0/1755723864237/usepylon_logo?e=2147483647&v=beta&t=IJYkAlg2guBhfxnbpAa1o_jX3GYOST0dIsk2YmLRrKI
                      location: San Francisco, CA
                      postedDate: 1 month ago
                      exactDate: '2025-07-12'
                      url: https://www.linkedin.com/jobs/view/4265743683
                      entityUrn: urn:li:jobPosting:4265743683
                    - jobId: '4291912456'
                      title: Jr. Full Stack Developer
                      screenReader: Jr. Full Stack Developer
                      company:
                        name: Axle
                        url: https://www.linkedin.com/company/axle-informatics
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4D0BAQE-FI47jYQmHQ/company-logo_100_100/company-logo_100_100/0/1711994499364/axle_informatics_logo?e=2147483647&v=beta&t=Yym1Nz1GXUdIm4m0YoTgjCT33jyU77ft7s4-Ppj_Qh4
                      location: Rockville, MD
                      postedDate: 1 day ago
                      exactDate: '2025-08-27'
                      url: https://www.linkedin.com/jobs/view/4291912456
                      entityUrn: urn:li:jobPosting:4291912456
                      benefits: Actively Hiring
                    - jobId: '4290716624'
                      title: NodeJS Backend Developer
                      screenReader: NodeJS Backend Developer
                      company:
                        name: Minisoft Technologies LLC
                        url: https://www.linkedin.com/company/minisoft-tech
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQForz-J2VtuZg/company-logo_100_100/B56ZfmiosGHUAU-/0/1751919529195/minisoft_tech_logo?e=2147483647&v=beta&t=oxUljucYSZv0xDOnn2luQ32UnY968CxTDXYGtagP-qM
                      location: United States
                      postedDate: 7 hours ago
                      exactDate: '2025-08-28'
                      url: https://www.linkedin.com/jobs/view/4290716624
                      entityUrn: urn:li:jobPosting:4290716624
                    - jobId: '4283411451'
                      title: Backend Engineer
                      screenReader: Backend Engineer
                      company:
                        name: Meter
                        url: https://www.linkedin.com/company/meter-com
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQFVqQxSDyxZRg/company-logo_100_100/B56ZfBlETtHoAQ-/0/1751299409959/meter_com_logo?e=2147483647&v=beta&t=vtQDiNMWKbGYCxP_EdDsMcguUfEOilNR7NGi8LdrY2g
                      location: San Francisco, CA
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-11'
                      url: https://www.linkedin.com/jobs/view/4283411451
                      entityUrn: urn:li:jobPosting:4283411451
                    - jobId: '4264466268'
                      title: Desenvolvedor Full Stack Junior
                      screenReader: Desenvolvedor Full Stack Junior
                      company:
                        name: NIC.br
                        url: https://www.linkedin.com/company/nic-br
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQE50psJzfy0RA/company-logo_100_100/company-logo_100_100/0/1631302246328?e=2147483647&v=beta&t=h2HsADG0rqlvQksB73WJwSSB8o_PYyHPCAL20lsY73M
                      location: Delaware, United States
                      postedDate: 1 month ago
                      exactDate: '2025-07-14'
                      url: https://www.linkedin.com/jobs/view/4264466268
                      entityUrn: urn:li:jobPosting:4264466268
                    - jobId: '4280236333'
                      title: Node.js Backend Developer - United States
                      screenReader: Node.js Backend Developer - United States
                      company:
                        name: JumpCloud
                        url: https://www.linkedin.com/company/jumpcloud
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4D0BAQGQEJvpnyM3Bw/company-logo_100_100/company-logo_100_100/0/1721926888915/jumpcloud_logo?e=2147483647&v=beta&t=qym_7dn1fGW-lo2UTHrDLHaxzEcVS4byZn9qck8K_V4
                      location: St Louis, MO
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-08'
                      url: https://www.linkedin.com/jobs/view/4280236333
                      entityUrn: urn:li:jobPosting:4280236333
                      benefits: Be an early applicant
                    - jobId: '4224229547'
                      title: Full-Stack Engineer
                      screenReader: Full-Stack Engineer
                      company:
                        name: Campfire
                        url: https://www.linkedin.com/company/meetcampfire
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQE471W7qBvdmw/company-logo_100_100/company-logo_100_100/0/1721682987830/meetcampfire_logo?e=2147483647&v=beta&t=9hdQpifL2SZTtPb1lfe9IygN4WIixdEHz_pJKEQSbUg
                      location: San Francisco, CA
                      postedDate: 3 months ago
                      exactDate: '2025-05-09'
                      url: https://www.linkedin.com/jobs/view/4224229547
                      entityUrn: urn:li:jobPosting:4224229547
                      benefits: Actively Hiring
                    - jobId: '4287559510'
                      title: Software Engineer (Full-Stack)
                      screenReader: Software Engineer (Full-Stack)
                      company:
                        name: Paces
                        url: https://www.linkedin.com/company/pacesai
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQEkl2SXf3S0ag/company-logo_100_100/company-logo_100_100/0/1730398908387/pacesai_logo?e=2147483647&v=beta&t=MY41KqKcYejKtJU0RLk7s9P4t5CpmS8CRRC2HeRdErQ
                      location: Brooklyn, NY
                      postedDate: 1 week ago
                      exactDate: '2025-08-18'
                      url: https://www.linkedin.com/jobs/view/4287559510
                      entityUrn: urn:li:jobPosting:4287559510
                    - jobId: '4290395855'
                      title: Founding Fullstack Engineer
                      screenReader: Founding Fullstack Engineer
                      company:
                        name: Weekday AI (YC W21)
                        url: https://www.linkedin.com/company/weekdayjobs
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQFMGKC-EvAWpg/company-logo_100_100/company-logo_100_100/0/1737539347361/weekdayjobs_logo?e=2147483647&v=beta&t=ieIgvB8kFgzbxY41wBcAR7jpNOrDOqFB53OKC5vWkuQ
                      location: New York, NY
                      postedDate: 11 hours ago
                      exactDate: '2025-08-28'
                      url: https://www.linkedin.com/jobs/view/4290395855
                      entityUrn: urn:li:jobPosting:4290395855
                    - jobId: '4267599054'
                      title: Software Developer, Backend
                      screenReader: Software Developer, Backend
                      company:
                        name: Gruve
                        url: https://www.linkedin.com/company/gruveai
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQFujtFVjJTUGg/company-logo_100_100/B56ZcY.lD9GsA4-/0/1748470747678/gruveai_logo?e=2147483647&v=beta&t=0wSLYROTnnAxBSSizD8HHHtLFCfNbHDxUAzzcupX0Ho
                      location: United States
                      postedDate: 10 hours ago
                      exactDate: '2025-08-28'
                      url: https://www.linkedin.com/jobs/view/4267599054
                      entityUrn: urn:li:jobPosting:4267599054
                    - jobId: '4290727558'
                      title: Full Stack Developer
                      screenReader: Full Stack Developer
                      company:
                        name: Monster Reservations Group
                        url: >-
                          https://www.linkedin.com/company/monster-reservations-group
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQEwd5tVkXVTZg/company-logo_100_100/B4EZUprBIrHgAU-/0/1740160903159/monster_reservations_group_logo?e=2147483647&v=beta&t=o7KUu4P28rVkIHVjQd2hy179qlW5XVV-oXuXRaecsYU
                      location: Myrtle Beach, SC
                      postedDate: 6 hours ago
                      exactDate: '2025-08-28'
                      url: https://www.linkedin.com/jobs/view/4290727558
                      entityUrn: urn:li:jobPosting:4290727558
                    - jobId: '4291363671'
                      title: Software Engineer (entry)
                      screenReader: Software Engineer (entry)
                      company:
                        name: Jerry
                        url: https://www.linkedin.com/company/jerryinc
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C560BAQFn2QCrOCDMwg/company-logo_100_100/company-logo_100_100/0/1630648185818/jerryinc_logo?e=2147483647&v=beta&t=av36t83Kd04m6aR-OU4KCi1lrpySrASAdTcDVKhzXsY
                      location: San Francisco Bay Area
                      postedDate: 1 day ago
                      exactDate: '2025-08-26'
                      url: https://www.linkedin.com/jobs/view/4291363671
                      entityUrn: urn:li:jobPosting:4291363671
                    - jobId: '4278551515'
                      title: Software Engineer, Public API
                      screenReader: Software Engineer, Public API
                      company:
                        name: Notion
                        url: https://www.linkedin.com/company/notionhq
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQGwvcv_1tHZ4w/company-logo_100_100/B4EZW25gE2GgAQ-/0/1742530282185/notionhq_logo?e=2147483647&v=beta&t=h_sgZm5R2TgP9Fpbo95m2wmxnSDoEz06eupofZwpSXs
                      location: New York, NY
                      postedDate: 6 days ago
                      exactDate: '2025-08-22'
                      url: https://www.linkedin.com/jobs/view/4278551515
                      entityUrn: urn:li:jobPosting:4278551515
                      benefits: Actively Hiring
                    - jobId: '4240371549'
                      title: NodeJS Developer
                      screenReader: NodeJS Developer
                      company:
                        name: CapB InfoteK
                        url: https://www.linkedin.com/company/capb-infotek
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQH4pVNWslqq4g/company-logo_100_100/company-logo_100_100/0/1631314995125?e=2147483647&v=beta&t=XuHC1HLyz6TYT0vbVzoExJilZG7Ny9-uXVkW6vISLA0
                      location: Coral Springs, FL
                      postedDate: 3 months ago
                      exactDate: '2025-05-29'
                      url: https://www.linkedin.com/jobs/view/4240371549
                      entityUrn: urn:li:jobPosting:4240371549
                    - jobId: '4277288140'
                      title: Backend Engineer
                      screenReader: Backend Engineer
                      company:
                        name: Ascertain
                        url: https://www.linkedin.com/company/ascertain-ai
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQFP3BizpMbf3g/company-logo_100_100/company-logo_100_100/0/1692211752448/ascertain_ai_logo?e=2147483647&v=beta&t=DEVCCjWHjZSOjMsiQNoUAh_vMK5euZdP0JBVd81vN30
                      location: New York, NY
                      postedDate: 1 month ago
                      exactDate: '2025-07-28'
                      url: https://www.linkedin.com/jobs/view/4277288140
                      entityUrn: urn:li:jobPosting:4277288140
                      benefits: Be an early applicant
                    - jobId: '4270552628'
                      title: '[New Grad] Software Engineer'
                      screenReader: '[New Grad] Software Engineer'
                      company:
                        name: Atomus
                        url: https://www.linkedin.com/company/atomus
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQENwc5zVUdkpQ/company-logo_100_100/company-logo_100_100/0/1728083074680/atomus_logo?e=2147483647&v=beta&t=k0pmJK2t8dLW2dVwS3SiLlDi8qcdjUZUYsK6YAd5VK8
                      location: San Francisco, CA
                      postedDate: 3 weeks ago
                      exactDate: '2025-08-06'
                      url: https://www.linkedin.com/jobs/view/4270552628
                      entityUrn: urn:li:jobPosting:4270552628
                      benefits: |-
                        Medical insurance
                                     +3 benefits
                    - jobId: '4250579172'
                      title: Software Developer – SMA & Muni Trading
                      screenReader: Software Developer – SMA & Muni Trading
                      company:
                        name: PIMCO
                        url: https://www.linkedin.com/company/pimco
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQHa1T60UOIHlA/company-logo_100_100/B56ZjCo3iZG4AU-/0/1755612152990?e=2147483647&v=beta&t=2nL0NyTu20RZwQuGuybXSS6FchXBNEg833iWVl31pm8
                      location: San Diego, CA
                      postedDate: 1 week ago
                      exactDate: '2025-08-20'
                      url: https://www.linkedin.com/jobs/view/4250579172
                      entityUrn: urn:li:jobPosting:4250579172
                    - jobId: '4278551514'
                      title: Software Engineer, Public API
                      screenReader: Software Engineer, Public API
                      company:
                        name: Notion
                        url: https://www.linkedin.com/company/notionhq
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQGwvcv_1tHZ4w/company-logo_100_100/B4EZW25gE2GgAQ-/0/1742530282185/notionhq_logo?e=2147483647&v=beta&t=h_sgZm5R2TgP9Fpbo95m2wmxnSDoEz06eupofZwpSXs
                      location: San Francisco, CA
                      postedDate: 6 days ago
                      exactDate: '2025-08-22'
                      url: https://www.linkedin.com/jobs/view/4278551514
                      entityUrn: urn:li:jobPosting:4278551514
                      benefits: Actively Hiring
                    - jobId: '4279039411'
                      title: Software Engineer - Early Career
                      screenReader: Software Engineer - Early Career
                      company:
                        name: Numeric
                        url: https://www.linkedin.com/company/numeric-io
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQHu6Sq5-XCPWQ/company-logo_100_100/company-logo_100_100/0/1716415523093/numeric_io_logo?e=2147483647&v=beta&t=au1PYVngYCHU_8xs-cJbm8gLGzIJIgObka7bfJjJc-E
                      location: New York, NY
                      postedDate: 3 weeks ago
                      exactDate: '2025-08-01'
                      url: https://www.linkedin.com/jobs/view/4279039411
                      entityUrn: urn:li:jobPosting:4279039411
                    - jobId: '4290965711'
                      title: Full Stack Engineer
                      screenReader: Full Stack Engineer
                      company:
                        name: Pearpop
                        url: https://www.linkedin.com/company/pearpop
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C560BAQEuMIOckaO-GA/company-logo_100_100/company-logo_100_100/0/1658588179114/pearpop_logo?e=2147483647&v=beta&t=7ilRY3MJqn2sZtScliBTtte8NnyGkbkRHEIrfUUjKSs
                      location: Los Angeles, CA
                      postedDate: 2 days ago
                      exactDate: '2025-08-25'
                      url: https://www.linkedin.com/jobs/view/4290965711
                      entityUrn: urn:li:jobPosting:4290965711
                      benefits: Actively Hiring
                    - jobId: '4291922646'
                      title: Software Engineer
                      screenReader: Software Engineer
                      company:
                        name: Quantcast
                        url: https://www.linkedin.com/company/quantcast
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQHgcT9K-gw5dA/company-logo_100_100/company-logo_100_100/0/1719255882048/quantcast_logo?e=2147483647&v=beta&t=B9v1ZGgT__WOvcxJOKDOWzBJJH6fXOc4AEJ8SK-llzM
                      location: San Francisco, CA
                      postedDate: 1 day ago
                      exactDate: '2025-08-27'
                      url: https://www.linkedin.com/jobs/view/4291922646
                      entityUrn: urn:li:jobPosting:4291922646
                    - jobId: '4292560235'
                      title: Junior Software Developer Intern
                      screenReader: Junior Software Developer Intern
                      company:
                        name: Prescient Edge
                        url: https://www.linkedin.com/company/prescient-edge-corp
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQFn2IFEfLe6Ag/company-logo_100_100-alternative/company-logo_100_100-alternative/0/1630478895767/prescient_edge_corp_logo?e=2147483647&v=beta&t=ov5af8Ah1p4gyejx7udcs89I7OY8bvGrpcz4F4AbySc
                      location: McLean, VA
                      postedDate: 1 hour ago
                      exactDate: '2025-08-28'
                      url: https://www.linkedin.com/jobs/view/4292560235
                      entityUrn: urn:li:jobPosting:4292560235
                      benefits: Actively Hiring
                    - jobId: '4291518267'
                      title: Full Stack Developer
                      screenReader: Full Stack Developer
                      company:
                        name: Meyer Distributing
                        url: https://www.linkedin.com/company/meyer-distributing
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQEN2278ZxYIlw/company-logo_100_100/company-logo_100_100/0/1709066816762/meyer_distributing_logo?e=2147483647&v=beta&t=gJJh9zWmofxZ0OTmWfWcjRwcIqfcF2J7wzt6UKb1JHs
                      location: Indianapolis, IN
                      postedDate: 1 day ago
                      exactDate: '2025-08-27'
                      url: https://www.linkedin.com/jobs/view/4291518267
                      entityUrn: urn:li:jobPosting:4291518267
                    - jobId: '4280237278'
                      title: Node.js Backend Developer - United States
                      screenReader: Node.js Backend Developer - United States
                      company:
                        name: JumpCloud
                        url: https://www.linkedin.com/company/jumpcloud
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4D0BAQGQEJvpnyM3Bw/company-logo_100_100/company-logo_100_100/0/1721926888915/jumpcloud_logo?e=2147483647&v=beta&t=qym_7dn1fGW-lo2UTHrDLHaxzEcVS4byZn9qck8K_V4
                      location: Kansas City, KS
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-08'
                      url: https://www.linkedin.com/jobs/view/4280237278
                      entityUrn: urn:li:jobPosting:4280237278
                      benefits: Be an early applicant
                    - jobId: '4287974608'
                      title: Junior Software Engineer
                      screenReader: Junior Software Engineer
                      company:
                        name: DX
                        url: https://www.linkedin.com/company/developer-experience
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQEFTkOwVfIECw/company-logo_100_100/company-logo_100_100/0/1683840698097/developer_experience_logo?e=2147483647&v=beta&t=K05KV8wnWCjTsNqCKRmRuJ9-ETTp6KKr4KCVNhlfEx0
                      location: Salt Lake City, UT
                      postedDate: 1 week ago
                      exactDate: '2025-08-18'
                      url: https://www.linkedin.com/jobs/view/4287974608
                      entityUrn: urn:li:jobPosting:4287974608
                      benefits: |-
                        Medical insurance
                                     +5 benefits
                    - jobId: '4248346586'
                      title: Full-Stack Engineer
                      screenReader: Full-Stack Engineer
                      company:
                        name: Instinct Science
                        url: https://www.linkedin.com/company/instinct-science
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQEJcaazIwL0yg/company-logo_100_100/company-logo_100_100/0/1706643958077/instinct_science_logo?e=2147483647&v=beta&t=mnzsiZKRLjRB_pXB1jF7ImP9MMbtJusUfHmhjJmuxfc
                      location: Doylestown, PA
                      postedDate: 2 months ago
                      exactDate: '2025-06-10'
                      url: https://www.linkedin.com/jobs/view/4248346586
                      entityUrn: urn:li:jobPosting:4248346586
                    - jobId: '4278739224'
                      title: >-
                        Backend Software Engineer, API Client (Node.js and/or
                        Golang)
                      screenReader: >-
                        Backend Software Engineer, API Client (Node.js and/or
                        Golang)
                      company:
                        name: Postman
                        url: https://www.linkedin.com/company/postman-platform
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C560BAQFf8sH83foEVg/company-logo_100_100/company-logo_100_100/0/1654794308958/postman_platform_logo?e=2147483647&v=beta&t=vhUFiD_84RWtJWzqMFME4YJ9Jgnne9fH6DlCHgLCIEA
                      location: San Francisco, CA
                      postedDate: 6 days ago
                      exactDate: '2025-08-22'
                      url: https://www.linkedin.com/jobs/view/4278739224
                      entityUrn: urn:li:jobPosting:4278739224
                      benefits: Actively Hiring
                    - jobId: '4278856383'
                      title: Software Engineer
                      screenReader: Software Engineer
                      company:
                        name: Prelude
                        url: https://www.linkedin.com/company/preludeedc
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C560BAQFgP3tcl5_OSw/company-logo_100_100/company-logo_100_100/0/1674150265230/preludeedc_logo?e=2147483647&v=beta&t=gXBzIG3LnFkVVf4iSbb6Ufei3iokUx4XQdJvAHxCYVU
                      location: Austin, Texas Metropolitan Area
                      postedDate: 3 weeks ago
                      exactDate: '2025-08-06'
                      url: https://www.linkedin.com/jobs/view/4278856383
                      entityUrn: urn:li:jobPosting:4278856383
                      benefits: |-
                        Medical insurance
                                     +2 benefits
                    - jobId: '4290968425'
                      title: Full Stack Engineering (New Grad)
                      screenReader: Full Stack Engineering (New Grad)
                      company:
                        name: Abridge
                        url: https://www.linkedin.com/company/abridgehq
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQFkOLTK2ftuYg/company-logo_100_100/company-logo_100_100/0/1721328310775/abridgehq_logo?e=2147483647&v=beta&t=lO0zxgosNYj-IGabzZdCte2g07utQ2gdWHb2uYPF45c
                      location: San Francisco, CA
                      postedDate: 2 days ago
                      exactDate: '2025-08-25'
                      url: https://www.linkedin.com/jobs/view/4290968425
                      entityUrn: urn:li:jobPosting:4290968425
                      benefits: Actively Hiring
                    - jobId: '4279310424'
                      title: Backend Engineer
                      screenReader: Backend Engineer
                      company:
                        name: Weave
                        url: https://www.linkedin.com/company/weavebio
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQGhftP-XOOFCQ/company-logo_100_100/company-logo_100_100/0/1667924414386?e=2147483647&v=beta&t=k3R4JUzsdhZOqcjC9Cry70uER_J0L__vIn6tY0_VH4A
                      location: San Francisco, CA
                      postedDate: 3 weeks ago
                      exactDate: '2025-08-03'
                      url: https://www.linkedin.com/jobs/view/4279310424
                      entityUrn: urn:li:jobPosting:4279310424
                    - jobId: '4226055826'
                      title: Full Stack Engineer - Mainapp
                      screenReader: Full Stack Engineer - Mainapp
                      company:
                        name: Crypto.com
                        url: https://www.linkedin.com/company/cryptocom
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQH4i3rbKCnuYg/company-logo_100_100/company-logo_100_100/0/1735530715083/cryptocom_logo?e=2147483647&v=beta&t=9LHfk4h3U_OsFCHIXGAOyPxAXzr-9BD5M70r9oqiOXg
                      location: Chicago, IL
                      postedDate: 10 hours ago
                      exactDate: '2025-08-28'
                      url: https://www.linkedin.com/jobs/view/4226055826
                      entityUrn: urn:li:jobPosting:4226055826
                      benefits: Actively Hiring
                    - jobId: '4270346523'
                      title: Full Stack Engineer
                      screenReader: Full Stack Engineer
                      company:
                        name: Vynca
                        url: https://www.linkedin.com/company/vyncacare
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQGoihMuJbFuAg/company-logo_100_100/B56ZfMsa4cHEAs-/0/1751485886269/vyncacare_logo?e=2147483647&v=beta&t=38-AU9SfImdf1UtoDwylH2bRgE3x1ipoGaZlaQahm7s
                      location: San Mateo, CA
                      postedDate: 1 month ago
                      exactDate: '2025-07-26'
                      url: https://www.linkedin.com/jobs/view/4270346523
                      entityUrn: urn:li:jobPosting:4270346523
                  totalCount: 60
                  start: 0
                  hasMore: true
      tags:
        - Jobs
      description: \[DEPRECATED\] Use "Search Jobs V2" instead of this endpoint.
  /api/v1/jobs/job/details:
    get:
      summary: Job Details
      parameters:
        - name: jobId
          in: query
          required: true
          description: >-
            Job ID, NOTE that the job status must be open and actively hiring.
            Jobs that are no longer accepting applications are NOT supported 
          deprecated: false
          schema:
            type: integer
          example: '4287757824'
      responses:
        '200':
          description: Job Details
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      jobDetails:
                        type: object
                        properties:
                          id:
                            type: string
                            format: utc-millisec
                          url:
                            type: string
                            format: uri
                          title:
                            type: string
                          location:
                            type: string
                          postedTime:
                            type: string
                          description:
                            type: string
                            format: style
                          seniorityLevel:
                            type: string
                          employmentType:
                            type: string
                          jobFunction:
                            type: string
                          industries:
                            type: string
                          applicants:
                            type: string
                      company:
                        type: object
                        properties:
                          name:
                            type: string
                          url:
                            type: string
                            format: uri
                          imageUrl:
                            type: string
                            format: uri
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  jobDetails:
                    id: '4287757824'
                    url: https://www.linkedin.com/jobs/view/4287757824
                    title: Full-Stack Software Engineer (Jr/Mid level)
                    location: San Francisco, CA
                    postedTime: 1 week ago
                    description: >-
                      About Teambridge:More than 60% of workers in the US (and
                      70% of workers in the world) are paid hourly, and the
                      businesses that employ them each have their own unique
                      processes and workflows when it comes to managing their
                      workforce. Unfortunately, the workforce management tools
                      that have historically been available to them are some
                      combination of rigid, outdated, or not built for an
                      on-the-go workforce.Teambridge is the world’s first
                      flexible workforce management platform–it’s fully
                      composable and built mobile-first, making it easy for
                      companies to mold Teambridge to the unique shape of their
                      business. Teambridge is powered by modular, no-code blocks
                      that can be combined to automate any task or process that
                      comes with managing a large workforce, such as hiring and
                      onboarding, or time tracking and scheduling.With a $28M
                      Series B raised in 2024, Teambridge is funded by General
                      Catalyst, Mayfield and industry leading angel investors as
                      we build flexible, efficient, and intuitive solutions for
                      complex workforce challenges. Based in San Francisco,
                      Teambridge is committed to redefining the industries we
                      partner with.About the candidate:We’re looking for a
                      Junior to Mid-Level Full Stack Software Engineer who’s
                      eager to learn, contribute, and grow with a collaborative
                      and fast-paced team. You’ll play a meaningful role in
                      building core features across the stack, and have the
                      opportunity to expand your skills while making a real
                      impact. If you're curious, proactive, and excited about
                      solving real-world problems through technology, we’d love
                      to meet you.Responsibilities:Build and launch integrations
                      with partners and third-party service providers to drive
                      user activation and enhance the value and reach of
                      Teambridge. Collaborate with senior engineers to deliver
                      end-to-end features across the frontend and backend. Work
                      closely with product, design, and sales to understand user
                      needs and translate them into functional, impactful
                      solutions. Write clean, maintainable, and scalable code
                      that aligns with best practices and long-term product
                      goals. Participate in code reviews to learn from teammates
                      and contribute to high-quality, reliable software.
                      Contribute to technical design discussions with mentorship
                      and guidance from more experienced engineers. Proactively
                      share ideas to improve development workflows, product
                      experience, and team collaboration. Qualifications:A
                      degree in Computer Science or a related field, or
                      equivalent hands-on experience. 1–4 years of experience
                      building web applications (backend, frontend, or both).
                      Exposure to backend languages like Java, Go, Python, or
                      Node.js. Familiarity with frontend frameworks (ideally
                      React and TypeScript). A collaborative mindset and an
                      eagerness to learn from and support teammates. A
                      user-centered approach to development and a willingness to
                      iterate and improve. Our TechReact, TypescriptKotlin,
                      MicronautPostgreSQL, RedisAWS suite, hosted with
                      ECSGithub/Slack/Linear for collaborationCompensation
                      Range: $120K - $180K
                              

                              

                          
                          
                          

                          

                              
                                  Show more
                                

                                
                          
                        

                              

                          
                          
                          

                          

                              
                                  Show less
                    seniorityLevel: Entry level
                    employmentType: Full-time
                    jobFunction: Engineering and Information Technology
                    industries: Software Development
                    applicants: Over 200 applicants
                  company:
                    name: Teambridge
                    url: https://www.linkedin.com/company/team-bridge
                    imageUrl: >-
                      https://media.licdn.com/dms/image/v2/D560BAQGKBJABsnpMyQ/company-logo_100_100/B56ZZen7SyGUAU-/0/1745344247197/team_bridge_logo?e=2147483647&v=beta&t=ECNI7VoPpXlp-XipgI_1YMI3GLYDkpoq0ssvkQoO2UA
      tags:
        - Jobs
      description: >-
        \[DEPRECATED\] Use "Job Details V2" instead of this endpoint to get job
        details by jobId.
  /api/v1/jobs/job/similar:
    get:
      summary: Similar Jobs
      parameters:
        - name: jobId
          in: query
          required: true
          deprecated: false
          schema:
            type: integer
          example: '4287757824'
      responses:
        '200':
          description: Similar Jobs
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      jobs:
                        type: array
                        items:
                          type: object
                          properties:
                            entityUrn:
                              type: string
                              format: uri
                            id:
                              type: string
                              format: utc-millisec
                            title:
                              type: string
                            company:
                              type: object
                              properties:
                                name:
                                  type: string
                                url:
                                  type: string
                                  format: uri
                                imageUrl:
                                  type: string
                                  format: uri
                            location:
                              type: string
                            salaryRange:
                              type: array
                              items:
                                type: string
                            postedDate:
                              type: string
                            exactDate:
                              type: string
                              format: date
                            url:
                              type: string
                              format: uri
                            isNew:
                              type: boolean
                      total:
                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  jobs:
                    - entityUrn: urn:li:jobPosting:4259593912
                      id: '4259593912'
                      title: Software Engineer, Backend
                      company:
                        name: Tinder
                        url: https://www.linkedin.com/company/tinder-incorporated
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C560BAQGXi3o84QXQnw/company-logo_100_100/company-logo_100_100/0/1652919833346/tinder_incorporated_logo?e=2147483647&v=beta&t=8LEaFsSXxauZwQqF8LfCfmp26NPOvf4Q9WOLk1F8z9I
                      location: San Francisco, CA
                      salaryRange:
                        - $160,000.00
                        - $180,000.00
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-15'
                      url: https://www.linkedin.com/jobs/view/4259593912
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4287980146
                      id: '4287980146'
                      title: Software Engineer, Infrastructure, Early Career
                      company:
                        name: Notion
                        url: https://www.linkedin.com/company/notionhq
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQGwvcv_1tHZ4w/company-logo_100_100/B4EZW25gE2GgAQ-/0/1742530282185/notionhq_logo?e=2147483647&v=beta&t=h_sgZm5R2TgP9Fpbo95m2wmxnSDoEz06eupofZwpSXs
                      location: San Francisco, CA
                      salaryRange:
                        - $126,000.00
                        - $170,000.00
                      postedDate: 1 week ago
                      exactDate: '2025-08-19'
                      url: https://www.linkedin.com/jobs/view/4287980146
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4292858066
                      id: '4292858066'
                      title: Software Engineer I - Platforms
                      company:
                        name: Uber
                        url: https://www.linkedin.com/company/uber-com
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C4D0BAQFiYnR1Mbtxdg/company-logo_100_100/company-logo_100_100/0/1630552741617/uber_com_logo?e=2147483647&v=beta&t=eLjukYsixVQJyGQQ7asxFiNOUNa3RVdnAMESgTWs_AQ
                      location: San Francisco, CA
                      salaryRange:
                        - $150,000.00
                        - $158,000.00
                      postedDate: 12 hours ago
                      exactDate: '2025-08-29'
                      url: https://www.linkedin.com/jobs/view/4292858066
                      isNew: true
                    - entityUrn: urn:li:jobPosting:4276061985
                      id: '4276061985'
                      title: Software Engineer, Growth
                      company:
                        name: Notion
                        url: https://www.linkedin.com/company/notionhq
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQGwvcv_1tHZ4w/company-logo_100_100/B4EZW25gE2GgAQ-/0/1742530282185/notionhq_logo?e=2147483647&v=beta&t=h_sgZm5R2TgP9Fpbo95m2wmxnSDoEz06eupofZwpSXs
                      location: San Francisco, CA
                      salaryRange:
                        - $130,000.00
                        - $238,000.00
                      postedDate: 1 week ago
                      exactDate: '2025-08-17'
                      url: https://www.linkedin.com/jobs/view/4276061985
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4211191410
                      id: '4211191410'
                      title: Fullstack Engineer
                      company:
                        name: Sprig
                        url: https://www.linkedin.com/company/sprig-official
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQEV3PkKBN4ffA/company-logo_100_100/B4EZd66Pz7GcAQ-/0/1750113779477/sprig_official_logo?e=2147483647&v=beta&t=z-dvDTpQFwIAQkYC677TUCoC2miVEj9c7JfgP9UIVyE
                      location: San Francisco, CA
                      salaryRange:
                        - $150,000.00
                        - $230,000.00
                      postedDate: 4 months ago
                      exactDate: '2025-04-18'
                      url: https://www.linkedin.com/jobs/view/4211191410
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4287207142
                      id: '4287207142'
                      title: Software Engineer, Search Platform
                      company:
                        name: Notion
                        url: https://www.linkedin.com/company/notionhq
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQGwvcv_1tHZ4w/company-logo_100_100/B4EZW25gE2GgAQ-/0/1742530282185/notionhq_logo?e=2147483647&v=beta&t=h_sgZm5R2TgP9Fpbo95m2wmxnSDoEz06eupofZwpSXs
                      location: San Francisco, CA
                      salaryRange:
                        - $180,000.00
                        - $280,000.00
                      postedDate: 1 week ago
                      exactDate: '2025-08-16'
                      url: https://www.linkedin.com/jobs/view/4287207142
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4068296788
                      id: '4068296788'
                      title: Software Engineer - Backend
                      company:
                        name: Ever
                        url: https://www.linkedin.com/company/evercars
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQGuonVm1LXJAQ/company-logo_100_100/company-logo_100_100/0/1690537659647/evercars_logo?e=2147483647&v=beta&t=pMCSDGrAqSRRgqpTFKu6dwwA1G61PobD7Pm9fjugqD4
                      location: San Francisco, CA
                      salaryRange: null
                      postedDate: 9 months ago
                      exactDate: '2024-11-04'
                      url: https://www.linkedin.com/jobs/view/4068296788
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4276096791
                      id: '4276096791'
                      title: Software Engineer, Developer Experience
                      company:
                        name: Notion
                        url: https://www.linkedin.com/company/notionhq
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQGwvcv_1tHZ4w/company-logo_100_100/B4EZW25gE2GgAQ-/0/1742530282185/notionhq_logo?e=2147483647&v=beta&t=h_sgZm5R2TgP9Fpbo95m2wmxnSDoEz06eupofZwpSXs
                      location: San Francisco, CA
                      salaryRange:
                        - $150,000.00
                        - $250,000.00
                      postedDate: 1 week ago
                      exactDate: '2025-08-18'
                      url: https://www.linkedin.com/jobs/view/4276096791
                      isNew: false
                    - entityUrn: urn:li:jobPosting:3958003857
                      id: '3958003857'
                      title: Software Engineer - Frontend
                      company:
                        name: Ever
                        url: https://www.linkedin.com/company/evercars
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQGuonVm1LXJAQ/company-logo_100_100/company-logo_100_100/0/1690537659647/evercars_logo?e=2147483647&v=beta&t=pMCSDGrAqSRRgqpTFKu6dwwA1G61PobD7Pm9fjugqD4
                      location: San Francisco, CA
                      salaryRange: null
                      postedDate: 1 year ago
                      exactDate: '2024-06-24'
                      url: https://www.linkedin.com/jobs/view/3958003857
                      isNew: false
                    - entityUrn: urn:li:jobPosting:3958006298
                      id: '3958006298'
                      title: Software Engineer - Fullstack
                      company:
                        name: Ever
                        url: https://www.linkedin.com/company/evercars
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQGuonVm1LXJAQ/company-logo_100_100/company-logo_100_100/0/1690537659647/evercars_logo?e=2147483647&v=beta&t=pMCSDGrAqSRRgqpTFKu6dwwA1G61PobD7Pm9fjugqD4
                      location: San Francisco, CA
                      salaryRange: null
                      postedDate: 1 year ago
                      exactDate: '2024-06-24'
                      url: https://www.linkedin.com/jobs/view/3958006298
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4282336464
                      id: '4282336464'
                      title: Software Engineer Intern (Summer 2026)
                      company:
                        name: Notion
                        url: https://www.linkedin.com/company/notionhq
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQGwvcv_1tHZ4w/company-logo_100_100/B4EZW25gE2GgAQ-/0/1742530282185/notionhq_logo?e=2147483647&v=beta&t=h_sgZm5R2TgP9Fpbo95m2wmxnSDoEz06eupofZwpSXs
                      location: San Francisco, CA
                      salaryRange:
                        - $57.00
                        - $61.00
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-09'
                      url: https://www.linkedin.com/jobs/view/4282336464
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4273291820
                      id: '4273291820'
                      title: Software Development Engineer I - Frontend & Mobile
                      company:
                        name: Twitch
                        url: https://www.linkedin.com/company/twitch-tv
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQHbYCvrNGC17g/company-logo_100_100/company-logo_100_100/0/1695062101897/twitch_tv_logo?e=2147483647&v=beta&t=uqZASN7sr7mZBei_6o-tFrTEho8x-ttcnGLk4zejrSg
                      location: San Francisco, CA
                      salaryRange:
                        - $99,500.00
                        - $200,000.00
                      postedDate: 1 week ago
                      exactDate: '2025-08-19'
                      url: https://www.linkedin.com/jobs/view/4273291820
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4292439566
                      id: '4292439566'
                      title: Frontend Engineer I
                      company:
                        name: Twitch
                        url: https://www.linkedin.com/company/twitch-tv
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQHbYCvrNGC17g/company-logo_100_100/company-logo_100_100/0/1695062101897/twitch_tv_logo?e=2147483647&v=beta&t=uqZASN7sr7mZBei_6o-tFrTEho8x-ttcnGLk4zejrSg
                      location: San Francisco, CA
                      salaryRange:
                        - $99,500.00
                        - $200,000.00
                      postedDate: 20 hours ago
                      exactDate: '2025-08-28'
                      url: https://www.linkedin.com/jobs/view/4292439566
                      isNew: true
                    - entityUrn: urn:li:jobPosting:4282340038
                      id: '4282340038'
                      title: Software Engineer Intern (Winter 2026)
                      company:
                        name: Notion
                        url: https://www.linkedin.com/company/notionhq
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQGwvcv_1tHZ4w/company-logo_100_100/B4EZW25gE2GgAQ-/0/1742530282185/notionhq_logo?e=2147483647&v=beta&t=h_sgZm5R2TgP9Fpbo95m2wmxnSDoEz06eupofZwpSXs
                      location: San Francisco, CA
                      salaryRange:
                        - $57.00
                        - $61.00
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-09'
                      url: https://www.linkedin.com/jobs/view/4282340038
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4221959281
                      id: '4221959281'
                      title: Software Engineer, Backend
                      company:
                        name: Hayden AI
                        url: https://www.linkedin.com/company/haydenaitech
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQFknmV8RUI1JA/company-logo_100_100/B4EZj2nJ3yGwAU-/0/1756484116242/haydenaitech_logo?e=2147483647&v=beta&t=Hb-lRUnvSYCH37Gdpc74M1DfZRhMOaBkx_wOYpidoCU
                      location: San Francisco, CA
                      salaryRange:
                        - $150,000.00
                        - $176,000.00
                      postedDate: 3 months ago
                      exactDate: '2025-05-06'
                      url: https://www.linkedin.com/jobs/view/4221959281
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4245703653
                      id: '4245703653'
                      title: Software Engineer - Backend
                      company:
                        name: Julius AI
                        url: https://www.linkedin.com/company/julius-ai
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQG3jmRkbGLHyg/company-logo_100_100/company-logo_100_100/0/1724221502224/julius_ai_logo?e=2147483647&v=beta&t=v4AXdTni9gfcA01eSFP8OCLg25sFMw6vBh9QnEh4-Nc
                      location: San Francisco, CA
                      salaryRange:
                        - $160,000.00
                        - $200,000.00
                      postedDate: 2 months ago
                      exactDate: '2025-06-05'
                      url: https://www.linkedin.com/jobs/view/4245703653
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4068287701
                      id: '4068287701'
                      title: Software Engineer, Full-Stack
                      company:
                        name: Loop
                        url: https://www.linkedin.com/company/loop-payments
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C560BAQFMxjhLWzYatw/company-logo_100_100/company-logo_100_100/0/1646940828291?e=2147483647&v=beta&t=inbOgHRQYCBTSTSYn7ecUOWqUhFBX8EjCcYpKi30iu4
                      location: San Francisco, CA
                      salaryRange:
                        - $120,000.00
                        - $190,000.00
                      postedDate: 9 months ago
                      exactDate: '2024-11-04'
                      url: https://www.linkedin.com/jobs/view/4068287701
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4265743683
                      id: '4265743683'
                      title: (New Grad) Software Engineer
                      company:
                        name: Pylon
                        url: https://www.linkedin.com/company/usepylon
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQF49w56NFgEtg/company-logo_100_100/B4EZjJTBdlGwAc-/0/1755723864237/usepylon_logo?e=2147483647&v=beta&t=IJYkAlg2guBhfxnbpAa1o_jX3GYOST0dIsk2YmLRrKI
                      location: San Francisco, CA
                      salaryRange: null
                      postedDate: 1 month ago
                      exactDate: '2025-07-12'
                      url: https://www.linkedin.com/jobs/view/4265743683
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4282337394
                      id: '4282337394'
                      title: Software Engineer, AI Intern (Summer 2026)
                      company:
                        name: Notion
                        url: https://www.linkedin.com/company/notionhq
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQGwvcv_1tHZ4w/company-logo_100_100/B4EZW25gE2GgAQ-/0/1742530282185/notionhq_logo?e=2147483647&v=beta&t=h_sgZm5R2TgP9Fpbo95m2wmxnSDoEz06eupofZwpSXs
                      location: San Francisco, CA
                      salaryRange:
                        - $57.00
                        - $61.00
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-09'
                      url: https://www.linkedin.com/jobs/view/4282337394
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4291358893
                      id: '4291358893'
                      title: Software Engineer (entry)
                      company:
                        name: Jerry
                        url: https://www.linkedin.com/company/jerryinc
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C560BAQFn2QCrOCDMwg/company-logo_100_100/company-logo_100_100/0/1630648185818/jerryinc_logo?e=2147483647&v=beta&t=av36t83Kd04m6aR-OU4KCi1lrpySrASAdTcDVKhzXsY
                      location: San Francisco County, CA
                      salaryRange: null
                      postedDate: 2 days ago
                      exactDate: '2025-08-26'
                      url: https://www.linkedin.com/jobs/view/4291358893
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4204412244
                      id: '4204412244'
                      title: Software Engineer - Backend
                      company:
                        name: Plaid
                        url: https://www.linkedin.com/company/plaid-
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQET1PssqfCU5g/company-logo_100_100/B4EZarmEzJGYAY-/0/1746635608257/plaid__logo?e=2147483647&v=beta&t=fiFr2KJFzSNufIcHLyRdsg9kzJviRTfZilOvCt99Hg0
                      location: San Francisco, CA
                      salaryRange:
                        - $163,200.00
                        - $223,200.00
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-15'
                      url: https://www.linkedin.com/jobs/view/4204412244
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4252028280
                      id: '4252028280'
                      title: Software Engineer, New Grad (2025)
                      company:
                        name: Sentry
                        url: https://www.linkedin.com/company/getsentry
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQHRWAVa50doBw/company-logo_100_100/company-logo_100_100/0/1699367798268/getsentry_logo?e=2147483647&v=beta&t=YIc_PMWaokvtDSXQkuvmtHCs7MSmxU9oosKRYWq2t1c
                      location: San Francisco, CA
                      salaryRange:
                        - $130,000.00
                        - $140,000.00
                      postedDate: 1 week ago
                      exactDate: '2025-08-21'
                      url: https://www.linkedin.com/jobs/view/4252028280
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4291366113
                      id: '4291366113'
                      title: Software Engineer (entry)
                      company:
                        name: Jerry
                        url: https://www.linkedin.com/company/jerryinc
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/C560BAQFn2QCrOCDMwg/company-logo_100_100/company-logo_100_100/0/1630648185818/jerryinc_logo?e=2147483647&v=beta&t=av36t83Kd04m6aR-OU4KCi1lrpySrASAdTcDVKhzXsY
                      location: San Francisco, CA
                      salaryRange: null
                      postedDate: 2 days ago
                      exactDate: '2025-08-26'
                      url: https://www.linkedin.com/jobs/view/4291366113
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4247500091
                      id: '4247500091'
                      title: Software Engineer - Early Career
                      company:
                        name: Numeric
                        url: https://www.linkedin.com/company/numeric-io
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQHu6Sq5-XCPWQ/company-logo_100_100/company-logo_100_100/0/1716415523093/numeric_io_logo?e=2147483647&v=beta&t=au1PYVngYCHU_8xs-cJbm8gLGzIJIgObka7bfJjJc-E
                      location: San Francisco, CA
                      salaryRange:
                        - $125,000.00
                        - $175,000.00
                      postedDate: 2 months ago
                      exactDate: '2025-06-09'
                      url: https://www.linkedin.com/jobs/view/4247500091
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4282340040
                      id: '4282340040'
                      title: Software Engineer, AI Intern (Winter 2026)
                      company:
                        name: Notion
                        url: https://www.linkedin.com/company/notionhq
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQGwvcv_1tHZ4w/company-logo_100_100/B4EZW25gE2GgAQ-/0/1742530282185/notionhq_logo?e=2147483647&v=beta&t=h_sgZm5R2TgP9Fpbo95m2wmxnSDoEz06eupofZwpSXs
                      location: San Francisco, CA
                      salaryRange:
                        - $57.00
                        - $61.00
                      postedDate: 2 weeks ago
                      exactDate: '2025-08-09'
                      url: https://www.linkedin.com/jobs/view/4282340040
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4098166100
                      id: '4098166100'
                      title: Software Engineer, Frontend (All Levels)
                      company:
                        name: Zip
                        url: https://www.linkedin.com/company/theziphq
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQE06hKRt1Z_1A/company-logo_100_100/B56Zfl1YOMHoAQ-/0/1751907665148/theziphq_logo?e=2147483647&v=beta&t=aY_k9ksXCWkgxlk7Zs8i1q7ipQEPHlXgWJO6JPMQwMw
                      location: San Francisco, CA
                      salaryRange:
                        - $150,000.00
                        - $220,000.00
                      postedDate: 6 days ago
                      exactDate: '2025-08-23'
                      url: https://www.linkedin.com/jobs/view/4098166100
                      isNew: false
                    - entityUrn: urn:li:jobPosting:4290341003
                      id: '4290341003'
                      title: (New Grad) Software Engineering
                      company:
                        name: Samsara
                        url: https://www.linkedin.com/company/samsara
                        imageUrl: >-
                          https://media.licdn.com/dms/image/v2/D560BAQGJd8HDfSEaLg/company-logo_100_100/company-logo_100_100/0/1728335806865/samsara_logo?e=2147483647&v=beta&t=IlAh3rieKGJxnY_EYKz16xBvN5ZQxBWiNYzs-xnD3nw
                      location: San Francisco, CA
                      salaryRange: null
                      postedDate: 1 day ago
                      exactDate: '2025-08-28'
                      url: https://www.linkedin.com/jobs/view/4290341003
                      isNew: false
                  total: 27
      tags:
        - Jobs
      description: Get jobs similar to a given job by its ID.
  /api/v1/jobs/job/people-also-viewed:
    get:
      summary: People Also Viewed
      parameters:
        - name: jobId
          in: query
          required: true
          deprecated: false
          schema:
            type: integer
          example: '4287757824'
      responses:
        '200':
          description: People Also Viewed
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      jobs:
                        type: array
                        items:
                          type: object
                          properties:
                            entity_urn:
                              type: string
                              format: uri
                            id:
                              type: string
                              format: utc-millisec
                            title:
                              type: string
                            company:
                              type: object
                              properties:
                                name:
                                  type: string
                                url:
                                  type: string
                                  format: uri
                            location:
                              type: string
                            salary_range:
                              type: array
                              items:
                                type: string
                            posted_date:
                              type: string
                            exact_date:
                              type: string
                              format: date
                            url:
                              type: string
                              format: uri
                      total:
                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  jobs:
                    - entity_urn: urn:li:jobPosting:4290765943
                      id: '4290765943'
                      title: Front-End Full-Stack Software Engineer
                      company:
                        name: Wonder Studios
                        url: https://www.linkedin.com/company/wearewonderstudios
                      location: San Francisco, CA
                      salary_range:
                        - $140,000.00
                        - $180,000.00
                      posted_date: 21 hours ago
                      exact_date: '2025-08-28'
                      url: https://www.linkedin.com/jobs/view/4290765943
                    - entity_urn: urn:li:jobPosting:4205001975
                      id: '4205001975'
                      title: Software Engineer
                      company:
                        name: Middesk
                        url: https://www.linkedin.com/company/middesk
                      location: San Francisco, CA
                      salary_range: null
                      posted_date: 4 months ago
                      exact_date: '2025-04-09'
                      url: https://www.linkedin.com/jobs/view/4205001975
                    - entity_urn: urn:li:jobPosting:4286238812
                      id: '4286238812'
                      title: Software Engineer, Core Product
                      company:
                        name: Notion
                        url: https://www.linkedin.com/company/notionhq
                      location: San Francisco, CA
                      salary_range:
                        - $150,000.00
                        - $283,000.00
                      posted_date: 2 weeks ago
                      exact_date: '2025-08-15'
                      url: https://www.linkedin.com/jobs/view/4286238812
                    - entity_urn: urn:li:jobPosting:4289334142
                      id: '4289334142'
                      title: Software Engineer - Platform
                      company:
                        name: Plaid
                        url: https://www.linkedin.com/company/plaid-
                      location: San Francisco, CA
                      salary_range:
                        - $163,200.00
                        - $223,200.00
                      posted_date: 1 week ago
                      exact_date: '2025-08-21'
                      url: https://www.linkedin.com/jobs/view/4289334142
                    - entity_urn: urn:li:jobPosting:4086910955
                      id: '4086910955'
                      title: Software Engineer
                      company:
                        name: Nudge
                        url: https://www.linkedin.com/company/nudge-corp
                      location: San Francisco, CA
                      salary_range:
                        - $140,000.00
                        - $280,000.00
                      posted_date: 9 months ago
                      exact_date: '2024-11-27'
                      url: https://www.linkedin.com/jobs/view/4086910955
                    - entity_urn: urn:li:jobPosting:4276814807
                      id: '4276814807'
                      title: Frontend Engineer | All Levels
                      company:
                        name: Ramp
                        url: https://www.linkedin.com/company/ramp
                      location: San Francisco, CA
                      salary_range:
                        - $155,000.00
                        - $339,500.00
                      posted_date: 1 week ago
                      exact_date: '2025-08-22'
                      url: https://www.linkedin.com/jobs/view/4276814807
                    - entity_urn: urn:li:jobPosting:3625993061
                      id: '3625993061'
                      title: Software Engineer, Full Stack
                      company:
                        name: Stable
                        url: https://www.linkedin.com/company/usestable
                      location: San Francisco, CA
                      salary_range:
                        - $120,000.00
                        - $200,000.00
                      posted_date: 2 years ago
                      exact_date: '2023-06-05'
                      url: https://www.linkedin.com/jobs/view/3625993061
                    - entity_urn: urn:li:jobPosting:3625989507
                      id: '3625989507'
                      title: Full Stack Engineer
                      company:
                        name: Roboflow
                        url: https://www.linkedin.com/company/roboflow-ai
                      location: San Francisco, CA
                      salary_range:
                        - $165,000.00
                        - $165,000.00
                      posted_date: 2 years ago
                      exact_date: '2023-06-05'
                      url: https://www.linkedin.com/jobs/view/3625989507
                    - entity_urn: urn:li:jobPosting:4278551514
                      id: '4278551514'
                      title: Software Engineer, Public API
                      company:
                        name: Notion
                        url: https://www.linkedin.com/company/notionhq
                      location: San Francisco, CA
                      salary_range:
                        - $190,000.00
                        - $250,000.00
                      posted_date: 1 week ago
                      exact_date: '2025-08-22'
                      url: https://www.linkedin.com/jobs/view/4278551514
                    - entity_urn: urn:li:jobPosting:4278552077
                      id: '4278552077'
                      title: Software Engineer, Datastore
                      company:
                        name: Notion
                        url: https://www.linkedin.com/company/notionhq
                      location: San Francisco, CA
                      salary_range:
                        - $130,000.00
                        - $240,000.00
                      posted_date: 1 week ago
                      exact_date: '2025-08-22'
                      url: https://www.linkedin.com/jobs/view/4278552077
                  total: 10
      tags:
        - Jobs
      description: Get jobs that people also viewed for a given job.
  /api/v1/search/people:
    get:
      summary: People
      parameters:
        - name: keyword
          in: query
          description: optional keyword
          schema:
            type: string
        - name: start
          in: query
          description: >-
            pagination increment by ${count} to go to next page for example
            count = 50 for next page make start = 50 next page start = 100
          schema:
            type: integer
          example: '0'
        - name: currentCompany
          in: query
          description: companies ID
          schema:
            type: string
          example: 1337,1441
        - name: firstName
          in: query
          schema:
            type: string
        - name: geoUrn
          in: query
          description: geos ID
          schema:
            type: string
          example: 103644278,90009633
        - name: industry
          in: query
          description: industries ID
          schema:
            type: string
          example: 4,7
        - name: lastName
          in: query
          schema:
            type: string
        - name: profileLanguage
          in: query
          description: en for English, ch for Chinese, etc...
          schema:
            type: string
          example: en
        - name: pastCompany
          in: query
          description: companies ID
          schema:
            type: string
          example: 1035,1441
        - name: school
          in: query
          description: school IDs
          schema:
            type: string
          example: 1792,739903
        - name: serviceCategory
          in: query
          description: services ID provided by the profile
          schema:
            type: string
        - name: title
          in: query
          schema:
            type: string
          example: founder
        - name: count
          in: query
          description: min 1 max 50
          schema:
            type: integer
          example: '25'
      responses:
        '200':
          description: People
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      people:
                        type: array
                        items:
                          type: object
                          properties:
                            urn:
                              type: string
                            profileID:
                              type: string
                              format: utc-millisec
                            url:
                              type: string
                              format: uri
                            firstName:
                              type: string
                            lastName:
                              type: string
                            fullName:
                              type: string
                            headline:
                              type: string
                            location:
                              type: string
                            profilePictureURL:
                              type: string
                              format: uri
                            premium:
                              type: boolean
                      total:
                        type: integer
                      start:
                        type: integer
                      count:
                        type: integer
                      hasMore:
                        type: boolean
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  people:
                    - urn: ACoAAABhUGoBl6a8qJ3OFxx-aiBw_bx7Y4IqN6Y
                      profileID: '6377578'
                      url: https://www.linkedin.com/in/debangsu
                      firstName: Debangsu
                      lastName: S.
                      fullName: Debangsu S.
                      headline: Software Engineer at Google
                      location: Stanford, CA
                      profilePictureURL: >-
                        https://media.licdn.com/dms/image/v2/C5603AQHduUuP2W2RUg/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1516249909449?e=1763596800&v=beta&t=MBFBzQpLjNE35Dx5bBkuw7OFrSYPsyk8peh-B9Q2i-E
                      premium: false
                    - urn: ACoAAAAhQbUBx2X8uf_GA4CRj7OjdGqRMoY_T0s
                      profileID: '2179509'
                      url: https://www.linkedin.com/in/shreem
                      firstName: Shree
                      lastName: Madhavapeddi
                      fullName: Shree Madhavapeddi
                      headline: Product Management
                      location: San Diego, CA
                      profilePictureURL: >-
                        https://media.licdn.com/dms/image/v2/C4D03AQG5Az_UbWkDjA/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1516258925462?e=1763596800&v=beta&t=zWnRODDPK3-Oe2vnSc3Ix7mPQ0L_CDjrDQN_pbupzPg
                      premium: false
                  total: 2
                  start: 0
                  count: 10
                  hasMore: false
      tags:
        - Search
      description: >-
        Search people using all available filters. Note: Each page may return
        fewer than 10 results because restricted or non-enrichable member
        profiles are automatically filtered out.
  /api/v1/search/companies:
    get:
      summary: Companies
      parameters:
        - name: keyword
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: software
        - name: start
          in: query
          schema:
            type: integer
          example: '0'
        - name: geoUrn
          in: query
          description: geos ID
          schema:
            type: string
          example: 103644278,90009633
        - name: companySize
          in: query
          description: |-
            company sizes can be one or multiple of "
            1-10 or
            11-50 or
            51-200 or
            201-500 or
            501-1000 or
            1001-5000 or
            5001-10,000 or
            10,001+"
          schema:
            type: string
          example: 1-10,11-50,51-200
        - name: hasJobs
          in: query
          description: 'are these companies have Job listings on LinkedIn '
          schema:
            type: boolean
          example: 'true'
        - name: industry
          in: query
          description: industries ID
          schema:
            type: string
          example: 4,7
        - name: count
          in: query
          schema:
            type: integer
          example: '25'
      responses:
        '200':
          description: Companies
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      companies:
                        type: array
                        items:
                          type: object
                          properties:
                            urn:
                              type: string
                              format: color
                            url:
                              type: string
                              format: uri
                            companyID:
                              type: string
                              format: color
                            name:
                              type: string
                            summary:
                              type: string
                            location:
                              type: string
                            logoURL:
                              type: string
                              format: uri
                            industry:
                              type: string
                            followersCount:
                              type: string
                      total:
                        type: integer
                      start:
                        type: integer
                      count:
                        type: integer
                      hasMore:
                        type: boolean
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  companies:
                    - urn: '239644'
                      url: >-
                        https://www.linkedin.com/company/software-solutions-integrated/
                      companyID: '239644'
                      name: Software Solutions Integrated
                      summary: >-
                        Software Solutions Integrated (SSI) is a leading
                        provider of integrated business solutions for the
                        agribusiness...
                      location: Shelbyville, IL
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/C4E0BAQHeEfP-CAFJoA/company-logo_100_100/company-logo_100_100/0/1630585078774/software_solutions_integrated_logo?e=1763596800&v=beta&t=0FfpIIo2NhHxxw7BPHazs_8RjCW53KZ-N872lOMstwE
                      industry: Software Development
                      followersCount: 1K
                    - urn: '2990696'
                      url: >-
                        https://www.linkedin.com/company/talentrecruit-recruitment-software/
                      companyID: '2990696'
                      name: TalentRecruit Software Pvt. Ltd.
                      summary: >-
                        AI Powered Talent Acquisition Ecosystem


                        Time to #GoBeyondATS • Specialties: Enterprise
                        Recruitment Software
                      location: Bangalore, Karnataka
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/D560BAQHzoMMFlpfc4w/company-logo_100_100/B56ZWj4t6QGQAQ-/0/1742211309619/talentrecruit_recruitment_software_logo?e=1763596800&v=beta&t=fjhkgpdSw_2FZFFgRcjlgSa6Yl6idwK9GOhJb-hTyKs
                      industry: Software Development
                      followersCount: 9K
                    - urn: '363435'
                      url: https://www.linkedin.com/company/dewsoftware/
                      companyID: '363435'
                      name: Dew Software
                      summary: >-
                        At Dew Software, we are a leading player in the Digital
                        Transformation space, empowering businesses to thrive...
                      location: Fremont, California
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/D4D0BAQHW5By0Jd9QIw/company-logo_100_100/company-logo_100_100/0/1692201996152/dewsoftware_logo?e=1763596800&v=beta&t=KmfEB4syfJc9QftXkat2lLqIGLRgM45KkSV1l5CrQQM
                      industry: Software Development
                      followersCount: 71K
                    - urn: '166035'
                      url: https://www.linkedin.com/company/software-solutions/
                      companyID: '166035'
                      name: Software Solutions
                      summary: >-
                        Software Solutions is a Sage Software Business
                        Partner.   We specialize in helping businesses choose
                        business managment and ERP software that  fits their
                        company.  Then we see the project through from
                        conception to post live support...
                      location: Glen Allen, VA
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/C560BAQHDs1xTnh4mdg/company-logo_100_100/company-logo_100_100/0/1631336017867?e=1763596800&v=beta&t=RKcUqjexUyMY3uOHpQPCar25bF9vFo47fhxcb8VVJow
                      industry: Software Development
                      followersCount: '927'
                    - urn: '2845695'
                      url: >-
                        https://www.linkedin.com/company/smokeball-legal-software/
                      companyID: '2845695'
                      name: Smokeball - Legal Software
                      summary: >-
                        Cloud-based legal practice management software enhanced
                        with AI. ✨ Run your best law firm with Smokeball. 👟
                      location: Chicago, IL
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/D560BAQF14DFWQodJvA/company-logo_100_100/company-logo_100_100/0/1715102654183/smokeball_legal_software_logo?e=1763596800&v=beta&t=eL-FAq0kDcA2adGeLmJ6Oz5sUyDHnAHQxrVw7CqoEGI
                      industry: Software Development
                      followersCount: 7K
                    - urn: '775604'
                      url: https://www.linkedin.com/company/founding-minds/
                      companyID: '775604'
                      name: Founding Minds Software
                      summary: >-
                        We are your product development partner for cloud,
                        mobile, web, and enterprise • Specialties: Software
                        Development
                      location: Los Altos, California
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/D560BAQH4llYmlDJfOA/company-logo_100_100/company-logo_100_100/0/1726458650907/founding_minds_logo?e=1763596800&v=beta&t=YglvMm7A2Zx2SvZGrbfEFSwJfSfpoBduk2NF8Lg9-Ss
                      industry: Software Development
                      followersCount: 5K
                    - urn: '24985788'
                      url: https://www.linkedin.com/company/andarsoftware/
                      companyID: '24985788'
                      name: Andar Software
                      summary: >-
                        Nonprofit CRM to run campaigns, process pledges, manage
                        donor relationships and get insightful business
                        analytics • Specialties: Nonprofit Software
                      location: Mississauga, Ontario
                      logoURL: >-
                        -alternative/company-logo_100_100-alternative/0/1630594970505/andarsoftware_logo?e=1763596800&v=beta&t=wtnrVem9rU7_0SjYqqQyv3NILqUGlMyQQxsDjbbTcic
                      industry: Software Development
                      followersCount: 3K
                    - urn: '3788642'
                      url: >-
                        https://www.linkedin.com/company/tritech-software-&-services/
                      companyID: '3788642'
                      name: TriTech Software & Services
                      summary: >-
                        Serving the insurance industry since 1995 • Specialties:
                        Municipal Tax Software
                      location: Allen, Texas
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/D560BAQHejjty79OZJw/company-logo_100_100/company-logo_100_100/0/1735679147442/tritech_software__services_logo?e=1763596800&v=beta&t=QcLMgwfiTCoQQz04ictpsgSVNIvleAnJgiRWqLuOoxY
                      industry: Software Development
                      followersCount: 1K
                    - urn: '82558782'
                      url: >-
                        https://www.linkedin.com/company/software-unlimited-corp/
                      companyID: '82558782'
                      name: Software Unlimited Corp
                      summary: >-
                        Helping Prosecutors Streamline Case Management with
                        Innovative Software
                      location: Tupelo, MS
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/C560BAQHV2DVWvefxHQ/company-logo_100_100/company-logo_100_100/0/1660573173997?e=1763596800&v=beta&t=41bZXzq558C0-etHOrSN2Wy2FVrGaImNbrkN5pmKeMA
                      industry: Software Development
                      followersCount: '67'
                    - urn: '3488734'
                      url: https://www.linkedin.com/company/vintasoftware/
                      companyID: '3488734'
                      name: Vinta Software
                      summary: >-
                        ...for healthtech and software-driven businesses.  We
                        overcome critical delivery obstacles through our
                        expertise in Django, FastAPI...
                      location: San Francisco, California
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/D4D0BAQGnbdh0bGJCjw/company-logo_100_100/B4DZo2V17JKUAQ-/0/1761848287382/vintasoftware_logo?e=1763596800&v=beta&t=Sel4jSwcAYvmaIE9ySCPzp3hh1342-Q2VD34Qt8uhTM
                      industry: Software Development
                      followersCount: 17K
                  total: 1000
                  start: 0
                  count: 10
                  hasMore: true
      tags:
        - Search
      description: >-
        Search companies using all available filters. Results may vary per page
        because some companies might be filtered out due to incomplete or
        restricted data.
  /api/v1/search/services:
    get:
      summary: Services
      parameters:
        - name: keyword
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: software
        - name: start
          in: query
          required: false
          deprecated: false
          schema:
            type: integer
          example: '0'
        - name: geoUrn
          in: query
          required: false
          deprecated: false
          schema:
            type: string
          example: 103644278,90009633
        - name: profileLanguage
          in: query
          required: false
          description: en for English, ch for Chinese, etc...
          deprecated: false
          schema:
            type: string
          example: en,ch
        - name: serviceCategory
          in: query
          description: services ID
          schema:
            type: string
          example: 50321,68
        - name: count
          in: query
          schema:
            type: integer
          example: '25'
      responses:
        '200':
          description: Services
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      services:
                        type: array
                        items:
                          type: object
                          properties:
                            urn:
                              type: string
                            serviceID:
                              type: string
                              format: utc-millisec
                            title:
                              type: string
                            providerName:
                              type: string
                            providerHeadline:
                              type: string
                            location:
                              type: string
                            providerPhotoURL:
                              type: string
                              format: uri
                            serviceURL:
                              type: string
                              format: uri
                      total:
                        type: integer
                      start:
                        type: integer
                      count:
                        type: integer
                      hasMore:
                        type: boolean
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  services:
                    - urn: ACoAADJ6nsMBJiN73NLvFg56FQ4Aqh-wWH8yTlI
                      serviceID: '846896835'
                      title: Software Testing
                      providerName: Chirag Mathur
                      providerHeadline: Software Developer || AI Engineer
                      location: Bengaluru
                      providerPhotoURL: >-
                        https://media.licdn.com/dms/image/v2/D4D03AQHj1y0W8AFXJA/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1690972237896?e=1763596800&v=beta&t=OEIrm1Oc14dWQS2zoZmVxi2aKR5zmQYHk4v1F9643F8
                      serviceURL: >-
                        https://www.linkedin.com/services/page/681b9733504b336858
                    - urn: ACoAACg6PeoBxaYamjmQV9eqX9zK0l5i0LLUmNw
                      serviceID: '674905578'
                      title: Software Testing
                      providerName: Abel Alejandro Fleitas Perdomo
                      providerHeadline: Software Engineer
                      location: United States
                      providerPhotoURL: >-
                        https://media.licdn.com/dms/image/v2/D4E03AQH37XmjoLJe-g/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1665628276419?e=1763596800&v=beta&t=0aBvmITvNfaCa1M_mljZs6nRf066PexMdDPRWBum69M
                      serviceURL: >-
                        https://www.linkedin.com/services/page/a80b60316b117078a5
                    - urn: ACoAACLhVgoB-eucAzOTkaK9b1BcJSGAMD6oaNs
                      serviceID: '585192970'
                      title: Software Testing
                      description: >-
                        I have more than three years of experience with systems
                        architecture and full-stack web development.  I have
                        been responsible for developing two new websites serving
                        more than a million users monthly and a chatbot which is
                        used by more than 20K+ users.
                      providerName: Raju Kumar
                      providerHeadline: Software Engineer
                      location: Bangalore Urban
                      providerPhotoURL: >-
                        https://media.licdn.com/dms/image/v2/D5635AQGXW0U7XhrOLA/profile-framedphoto-shrink_100_100/profile-framedphoto-shrink_100_100/0/1660002772504?e=1762693200&v=beta&t=JDm9QXkEcwGIc8-qhlFJfuBfGYN5MVWIhvEHqTzOsuc
                      serviceURL: >-
                        https://www.linkedin.com/services/page/19484433142338a29b
                    - urn: ACoAACTGRa8BwxDptmy27LMY1VIS341pK9zJ-V8
                      serviceID: '616973743'
                      title: Software Testing
                      description: >-
                        Experienced software engineer focusing in on Game
                        Development, with hands on experience implementing all
                        stages of software development. A lifelong gamer with a
                        passion for turning imagination into reality. A fast
                        learner who is highly organized, detail oriented, and
                        self-motivated.
                      providerName: Michael Gleason
                      providerHeadline: >-
                        6+ Years Experience in Software Development/Automation |
                        Lifelong Gamer With a Passion for Turning Imagination
                        into Reality | Animal Fanatic and World Traveler
                      location: Denver, CO
                      providerPhotoURL: >-
                        https://media.licdn.com/dms/image/v2/D5603AQF6gdPBYDgJ5Q/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1690922073508?e=1763596800&v=beta&t=krSgKbrTwpPamYZtPI9kVF5l962ZUHE39aU3A083Xcw
                      serviceURL: >-
                        https://www.linkedin.com/services/page/714a403244533ba338
                    - urn: ACoAAAv1ld4BWjmQ0f4lIXJzIr--EgqEfZUtk2A
                      serviceID: '200644062'
                      title: Software Testing
                      providerName: Serhan Sari
                      providerHeadline: Software Engineer
                      location: United States
                      providerPhotoURL: >-
                        https://media.licdn.com/dms/image/v2/D5603AQGaSkYP0e7tHQ/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1686885227100?e=1763596800&v=beta&t=IH4vakWpRyFucj0iPvxpYboYlduELNRsBQZ9Q_r0TcQ
                      serviceURL: >-
                        https://www.linkedin.com/services/page/369174326176748a26
                    - urn: ACoAAEvJRs4BF8vpguL9ptUZp-NuWFZSWiWB3_0
                      serviceID: '1271482062'
                      title: Software Testing
                      providerName: Imran Aziz
                      providerHeadline: Software Developer / IT Professional
                      location: Bengaluru
                      providerPhotoURL: >-
                        https://media.licdn.com/dms/image/v2/D4E03AQGLP1ll6Ttz5w/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1722956311513?e=1763596800&v=beta&t=xiDe1dlVPr1PKa114kPUza0ALGjlG4vJwPeUPxZ4x5I
                      serviceURL: >-
                        https://www.linkedin.com/services/page/3140a3331545031639
                    - urn: ACoAACrVhNwBCYARFsWBuN_dwm35O3UTOsi4tCY
                      serviceID: '718636252'
                      title: Software Testing
                      description: >-
                        Software Engineer having 3 years of experience and
                        worked with more than 20 clients on Upwork with a 100%
                        job score and all 5/5 reviews.
                      providerName: Arpit J.
                      providerHeadline: >-
                        Senior Software Engineer at Sage | AWS Certified
                        Developer
                      location: Bengaluru
                      serviceURL: >-
                        https://www.linkedin.com/services/page/8012b6319901ab7a9b
                    - urn: ACoAAAlZTCUBUHWurBwB_Y-YujmlcHJFkAUoixQ
                      serviceID: '156847141'
                      title: Software Testing
                      description: |-
                        we offer the services listed below:

                        - BSW/Firmware, AUTOSAR, Embedded SW Development 
                        - System/Requirement Engineering 
                        - MBD, MATLAB/Simulink 
                        - Bootloader
                        - HSM/Cyber Security topics 
                        - Verification and Validation 
                        - Functional Safety ISO26262 Support
                      providerName: Chandram Yegapagol
                      providerHeadline: >-
                        Managing Director & CEO, IAST Software Solutions Pvt.
                        Ltd
                      location: Bengaluru
                      providerPhotoURL: >-
                        https://media.licdn.com/dms/image/v2/D5603AQGDBea1gHYNlg/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1708310189770?e=1763596800&v=beta&t=5RjFyUoZzqxMM9uNmicotM--i1Q2WIkEtFDCLY9qseU
                      serviceURL: >-
                        https://www.linkedin.com/services/page/194498319573338a02
                    - urn: ACoAADrYSGIBv9QOOp25blKdJNeqqZN6NNrE_fw
                      serviceID: '987252834'
                      title: Software Testing
                      providerName: Mustafa Rushdi
                      providerHeadline: Software Engineer @Amazon
                      location: Palos Hills, IL
                      providerPhotoURL: >-
                        https://media.licdn.com/dms/image/v2/D5635AQG0-qYIJljoPA/profile-framedphoto-shrink_100_100/profile-framedphoto-shrink_100_100/0/1680550501921?e=1762693200&v=beta&t=aDUW3yXoD3sxtjRXx9vGVqoX79JvbgK-hYb2lflcpxg
                      serviceURL: >-
                        https://www.linkedin.com/services/page/76859131b37ab29678
                    - urn: ACoAACNV7EUBjKQUQJF_Ja3cZgRZbJWWlf10y-g
                      serviceID: '592833605'
                      title: Software Testing
                      description: >-
                        Currently working for client name Facebook/meta part of
                        silicon validation project. My job role involves in
                        python automation script development for hardware
                        validation (components like NIC,video accelator)

                        Seeking opportunity in python automation/development
                        project.
                      providerName: Mohit Sahoo
                      providerHeadline: >-
                        Senior software Engineer @Aziro | Linux, Automation,
                        Python
                      location: Bengaluru
                      providerPhotoURL: >-
                        https://media.licdn.com/dms/image/v2/D5603AQE0-nlFhgIa_g/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1726004022885?e=1763596800&v=beta&t=_413luL4UO4zW3R6ezK7ZsYiIzBB2ytN-jgSw8PuUpA
                      serviceURL: >-
                        https://www.linkedin.com/services/page/540564319165605399
                  total: 1000
                  start: 0
                  count: 10
                  hasMore: true
      tags:
        - Search
      description: search services (all filters available)
  /api/v1/search/schools:
    get:
      summary: Schools
      parameters:
        - name: keyword
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: london
        - name: start
          in: query
          schema:
            type: integer
          example: '0'
        - name: count
          in: query
          schema:
            type: integer
          example: '25'
      responses:
        '200':
          description: Schools
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      schools:
                        type: array
                        items:
                          type: object
                          properties:
                            urn:
                              type: string
                              format: utc-millisec
                            schoolID:
                              type: string
                              format: utc-millisec
                            name:
                              type: string
                            location:
                              type: string
                            logoURL:
                              type: string
                              format: uri
                            followersCount:
                              type: integer
                            schoolURL:
                              type: string
                              format: uri
                      total:
                        type: integer
                      start:
                        type: integer
                      count:
                        type: integer
                      hasMore:
                        type: boolean
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  schools:
                    - urn: '9433099'
                      schoolID: '9433099'
                      name: Software Development Academy
                      location: Gdynia, pomorskie
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/C4E0BAQGGpw91fxmZVA/company-logo_100_100/company-logo_100_100/0/1631192827596/software_development_academy_logo?e=1763596800&v=beta&t=AfdaGFk9K_5KI7zlTIEljwVd71JL8R39SsPAXVKOb68
                      followersCount: 8
                      schoolURL: >-
                        https://www.linkedin.com/company/software-development-academy/
                    - urn: '11456170'
                      schoolID: '11456170'
                      name: Ingeniería de Software UDLA
                      location: Quito, Pichincha
                      description: |-
                        La carrera con mayor crecimiento y proyección mundial
                        ¡Ven a crear el futuro!
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/C4E0BAQGb-RpryLoF6g/company-logo_100_100/company-logo_100_100/0/1630630146684/udlaingsoftware_logo?e=1763596800&v=beta&t=ycVCrzl7yh1Q_eHnyemqdd3mHw5ONAa0Mg5Ld5BPGh4
                      followersCount: 99
                      schoolURL: https://www.linkedin.com/company/udlaingsoftware/
                    - urn: '18508477'
                      schoolID: '18508477'
                      name: >-
                        Software Development University of Utah- School of
                        Computing
                      location: Salt Lake City, Utah
                      description: >-
                        16-month masters program that does not require computer
                        science background and opens doors to new job
                        possibilities.
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/C4E0BAQGljVyUv1HSCQ/company-logo_100_100/company-logo_100_100/0/1630563118306/university_of_utah_master_of_software_development_logo?e=1763596800&v=beta&t=9NFy33HbJavBRmborDcDUNCTNDCqufVsqXbCbN5SaKY
                      followersCount: 177
                      schoolURL: https://www.linkedin.com/company/utahmsd/
                    - urn: '3805597'
                      schoolID: '3805597'
                      name: Turing School of Software & Design
                      location: Denver, CO
                      description: >-
                        We turn great people into outstanding software
                        developers.
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/C4E0BAQET8fJiAvWTDA/company-logo_100_100/company-logo_100_100/0/1631347074531?e=1763596800&v=beta&t=IZRZXBjD79ubAwxog9XOgXDU6VV_s2_e4KSpMxuQlBM
                      followersCount: 2
                      schoolURL: https://www.linkedin.com/company/turingschool/
                    - urn: '27022068'
                      schoolID: '27022068'
                      name: Software Institute (USI)
                      location: Lugano, Ticino
                      description: >-
                        A center of excellence committed to the teaching, the
                        research and the development of software
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/C4E0BAQEnOEfw_reEVw/company-logo_100_100/company-logo_100_100/0/1630590990992/usisoftware_logo?e=1763596800&v=beta&t=SeLkxqqju_sBSjSoUmNhC1mhIt3EN55H7fV-bx0ji20
                      followersCount: 48
                      schoolURL: https://www.linkedin.com/company/usisoftware/
                    - urn: '2977683'
                      schoolID: '2977683'
                      name: MakerSquare - School of Software Engineering
                      location: Austin, tx
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/C510BAQHMkIH5IZot0g/company-logo_100_100/company-logo_100_100/0/1631354168980?e=1763596800&v=beta&t=838PIz8RTKY68PpOkhFQJTEGzB8Ccu_mz-kAX5MDLRQ
                      followersCount: 346
                      schoolURL: https://www.linkedin.com/company/makersquare/
                    - urn: '81841832'
                      schoolID: '81841832'
                      name: Software Village
                      location: Baku, Xetai
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/C4D0BAQEgMelseYAx2w/company-logo_100_100/company-logo_100_100/0/1653485265786?e=1763596800&v=beta&t=dzTIyskqIok4HCdAetiYq1wvJdfkaw3HP9evjLEbLXc
                      followersCount: 5
                      schoolURL: https://www.linkedin.com/company/software-village/
                    - urn: '106329689'
                      schoolID: '106329689'
                      name: Software Development Academy
                      location: ''
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/D4D0BAQGvBLz1Ey2k1g/company-logo_100_100/company-logo_100_100/0/1738680484106?e=1763596800&v=beta&t=9cOSBqOcS8cg98V1mC7TCyI4r9WWyKywvYF-AYFI0V0
                      followersCount: 19
                      schoolURL: >-
                        https://www.linkedin.com/company/software-development-academy-puga-1/
                    - urn: '6407917'
                      schoolID: '6407917'
                      name: Nashville Software School
                      location: Nashville, Tennessee
                      description: >-
                        Discover your new career through hands-on,
                        project-based, and team-based learning. Hiring? Meet our
                        junior-level talent.
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/C4E0BAQFWNmb1o5Bxkg/company-logo_100_100/company-logo_100_100/0/1630604334801/nashville_software_school_logo?e=1763596800&v=beta&t=Z_7LUco6oV6kOZ5_aTiky8B8QBIlTSDrQun8Ms4O1d8
                      followersCount: 2
                      schoolURL: >-
                        https://www.linkedin.com/company/nashville-software-school/
                    - urn: '3529173'
                      schoolID: '3529173'
                      name: Software University (SoftUni)
                      location: Sofia, BG
                      description: Learn programming and start a tech job
                      logoURL: >-
                        https://media.licdn.com/dms/image/v2/C4D0BAQEApCWzd7I27g/company-logo_100_100/company-logo_100_100/0/1631349197715?e=1763596800&v=beta&t=l3mD6SLP2W2ZOzFRE1YVautTxq3j_c06jditit7wCIM
                      followersCount: 15
                      schoolURL: >-
                        https://www.linkedin.com/company/software-university-softuni/
                  total: 1000
                  start: 0
                  count: 10
                  hasMore: true
      tags:
        - Search
      description: search schools (all filters available)
  /api/v1/search/posts:
    get:
      summary: Posts
      parameters:
        - name: keyword
          in: query
          schema:
            type: string
          example: google
        - name: start
          in: query
          schema:
            type: integer
          example: '0'
        - name: authorCompany
          in: query
          description: Company ID
          schema:
            type: integer
        - name: authorIndustry
          in: query
          description: industries ID
          schema:
            type: string
        - name: authorJobTitle
          in: query
          description: can be any title
          schema:
            type: string
          example: founder
        - name: contentType
          in: query
          description: >-
            can be "videos" or "photos" or "jobs" or "liveVideos" or "documents"
            or "collaborativeArticles"
          schema:
            type: string
        - name: datePosted
          in: query
          description: can be "past-24h" "past-week" "past-month" "past-year"
          schema:
            type: string
          example: past-24h
        - name: fromMember
          in: query
          description: profile URN
          schema:
            type: string
        - name: fromOrganization
          in: query
          description: Companies ID e.g "1337,1441"
          schema:
            type: string
        - name: mentionsMember
          in: query
          description: profiles URN e.g "ACoAAAAKXBwBikfbNJww68eYvcu2dqDYJhHbp4g"
          schema:
            type: string
        - name: mentionsOrganization
          in: query
          description: Companies ID e.g "1337,1441"
          schema:
            type: string
        - name: sortBy
          in: query
          description: either "relevance" or "date_posted"
          schema:
            type: string
          example: relevance
      responses:
        '200':
          description: Posts
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      posts:
                        type: array
                        items:
                          type: object
                          properties:
                            urn:
                              type: string
                              format: uri
                            postID:
                              type: string
                              format: utc-millisec
                            postURL:
                              type: string
                              format: uri
                            text:
                              type: string
                              format: style
                            author:
                              type: object
                              properties:
                                name:
                                  type: string
                                headline:
                                  type: string
                                urn:
                                  type: string
                                id:
                                  type: string
                                  format: uri
                                url:
                                  type: string
                                  format: uri
                                profilePictureURL:
                                  type: string
                                  format: uri
                            postedAt:
                              type: object
                              properties:
                                timestamp:
                                  type: integer
                                fullDate:
                                  type: string
                                  format: style
                                relativeDay:
                                  type: string
                            engagements:
                              type: object
                              properties:
                                totalReactions:
                                  type: integer
                                commentsCount:
                                  type: integer
                                repostsCount:
                                  type: integer
                                reactions:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      reactionType:
                                        type: string
                                      reactionCount:
                                        type: integer
                            mediaContent:
                              type: array
                              items:
                                type: object
                                properties:
                                  type:
                                    type: string
                                  url:
                                    type: string
                                    format: uri
                      total:
                        type: integer
                      start:
                        type: integer
                      count:
                        type: integer
                      hasMore:
                        type: boolean
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  posts:
                    - urn: urn:li:activity:7391117514539429889
                      postID: '7391117514539429889'
                      postURL: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7391117514539429889
                      text: "Google's automation turned qualified leads into garbage.\n\nGoogle wants you on automated bidding immediately.\n\nThey promise efficiency. They deliver volume.\n\nBut a lot of that volume is unqualified. \n\nWithout the right data, Google optimizes for whoever fills a form. \n\nStudents. Competitors. People looking for jobs.\n\nOur process:\n1. Manual bidding for first 60 days\n2. Identify which leads become opportunities\n3. Feed that data back to Google\n4. Only then enable automation\n \_\_\nOne company using \"maximize conversions\" from day one was drowning in junk. \n\nSwitched to our approach. \n\nCost per qualified meeting dropped from $6,667 to $540.\n\nAutomation without intelligence is expensive stupidity."
                      author:
                        name: Scott Gelber
                        headline: >-
                          Founder @ SRG Marketing | Helping Services and SaaS
                          generate qualified sales opportunities with Google Ads
                          | $3M+ pipeline generated for clients since 2023
                        urn: ACoAAAzCbYMBmCyaAqmF422UgTy1Uu25zlUrPgw
                        id: urn:li:member:214068611
                        url: https://www.linkedin.com/in/scott-gelber-36b8365b
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4D03AQHQNLXUoA7G8g/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1528132973709?e=1763596800&v=beta&t=RT-qoyr_b55Q_kSZ5P0tWLFIIMqFeuIcz3BLexdsYLo
                      postedAt:
                        timestamp: 1762179735789
                        fullDate: 2025-11-03 14:22:15.00 +0000 UTC
                        relativeDay: 1h
                      engagements:
                        totalReactions: 6
                        commentsCount: 2
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 6
                      mediaContent:
                        - type: video
                          url: >-
                            https://dms.licdn.com/playlist/vid/v2/D4E05AQHuFfVR0WN8Cg/mp4-720p-30fp-crf28/B4EZpKGCtBKoBw-/0/1762179732496?e=1762790400&v=beta&t=rnrh2RHUMD1E_Vhzi89DmSWdj8Aku1ankIlKdtyiCQs
                    - urn: urn:li:activity:7391021240167198720
                      postID: '7391021240167198720'
                      postURL: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7391021240167198720
                      text: >-
                        Hôm qua ngồi vọc Pomelli - AI tạo chiến dịch marketing
                        chỉ từ 1 link website nhờ sao chép và phân tích DNA
                        thương hiệu của bạn của Google vừa ra mắt, Thảo quay
                        sang bảo bạn trong team: "Kiểu này các marketers, chắc
                        khóc thét!"

                        👉 Bài phân tích đầy đủ bên dưới, mời anh em cùng đọc và
                        thử ngay nhé!

                        AI Leaders Vietnam - the first AI Agency in Vietnam

                        #Marketing #AI #GooglePomelli #AIMarketing
                      author:
                        name: Le Uyen Thao
                        headline: >-
                          🇻🇳🌟Innovation Lady | Vice Chair VNIDA| AI Expert
                          |Manus AI Fellow |🏆National Champion at TECHFEST VN
                          2024 | ex-Unilever |ex- Vinamilk | FMCG Expert |
                          Lifelong learner | 150.000 followers
                        urn: ACoAABYrFkMBC7rsx_EOLFLBZrG7-N-IDnL2aCQ
                        id: urn:li:member:371922499
                        url: https://www.linkedin.com/in/le-uyen-thao-b17680a4
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQF05Cqqq2l2Uw/profile-displayphoto-shrink_800_800/B56ZesyiKDH8Ak-/0/1750950618832?e=1763596800&v=beta&t=iTxixaCGTWZK_XIWGmSgkC1xcpDfXSw1-m9fO2NAmiE
                      postedAt:
                        timestamp: 1762156782190
                        fullDate: 2025-11-03 07:59:42.00 +0000 UTC
                        relativeDay: 7h
                      engagements:
                        totalReactions: 14
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 11
                          - reactionType: PRAISE
                            reactionCount: 3
                      mediaContent:
                        - type: article
                          url: >-
                            https://www.linkedin.com/pulse/pomelli-%25C3%25A1t-ch%25E1%25BB%25A7-b%25C3%25A0i-m%25E1%25BB%259Bi-t%25E1%25BB%25AB-google-t%25C3%25A1i-%25C4%2591%25E1%25BB%258Bnh-v%25E1%25BB%258B-vai-tr%25C3%25B2-marketers-thao-4jgdc?trackingId=26MHzve5TjeiG2yEGGgGKQ%3D%3D
                    - urn: urn:li:activity:7391014751109201920
                      postID: '7391014751109201920'
                      postURL: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7391014751109201920
                      text: "HOLY SH*T... These AI Sales Agents do EVERYTHING 🤯\n\nThe same systems agencies charge $12K+ to build all packed inside Airtop.ai\n\nThese AI agents handle it all:\n\n→ Monitoring competitor activities\_\n→ Automating ICP scoring\n→ Scraping news articles straight into Google Sheets\n→ Turning any webpage into social posts\n→ Extracting Instagram profile data\n→ Collecting event speaker info in seconds\n→ …and tons more automations\n\nAll in one plug-and-play template library. \n\nTo customize each agent, just chat with an Airtop’s Agent Builder. \n\nAnyone can do it!\n\nWant free access to Airtop’s Starter Plan?\n\n1️⃣ Like this post\n2️⃣ Comment “SEND” below\n\_(must be connected)\n\nI might not be able to reply to everyone. Repost for priority access.\n\nP.S. No fluff. \n\nThese are real workflows running inside our company \n\nYou can clone them in minutes."
                      author:
                        name: Divyanshi Sharma
                        headline: Your go-to for GTM, AI & Lead gen!
                        urn: ACoAADIWFJcBj5zbsAjb1mDBIFOlmqfumfLSZqs
                        id: urn:li:member:840307863
                        url: https://www.linkedin.com/in/divyanshis-saasleadgen
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQEURyQBRjrvSQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1691938389426?e=1763596800&v=beta&t=_7jCAy4S4XVpaPEP1kdzjxm4sNw5Uso_GPwI1YbooY0
                      postedAt:
                        timestamp: 1762155235078
                        fullDate: 2025-11-03 07:33:55.00 +0000 UTC
                        relativeDay: 8h
                      engagements:
                        totalReactions: 176
                        commentsCount: 389
                        repostsCount: 5
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 155
                          - reactionType: EMPATHY
                            reactionCount: 11
                          - reactionType: PRAISE
                            reactionCount: 6
                          - reactionType: APPRECIATION
                            reactionCount: 2
                          - reactionType: INTEREST
                            reactionCount: 2
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D5622AQH0GLFajWQWGw/feedshare-shrink_2048_1536/B56ZpIn7BuJQA0-/0/1762155126718?e=1763596800&v=beta&t=YJkKbgMf2G58oXXs8-E1B73QOgvlUT2FISybfRCahjI
                    - urn: urn:li:activity:7390792498127851520
                      postID: '7390792498127851520'
                      postURL: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7390792498127851520
                      text: >-
                        We don't need Google Dorks where we're going.


                        I built Feynman because I was tired of piecing together
                        OSINT tools and having a million tabs open, I'm sure
                        boudjenane soufiane can relate so I built my own tool,
                        which was certainly not easy in the beginning. It's
                        intended for targeting and general open source
                        investigations. What started as frustration turned into
                        something I'm actually proud of.


                        The video highlights how fast it is to pivot on publicly
                        available information, this is a simple investigation
                        into a Brazilian business. Watch how fast good tooling
                        moves. This is what happens when programming meets open
                        source intelligence and it's something anyone can
                        achieve. 


                        #OSINT #HackThePlanet #InfoSec #Brazil #SIGINT #AI
                      author:
                        name: Vance Poitier
                        headline: Founder/CTO @ Stratir | Polymath
                        urn: ACoAAB6hvHwBrBg_2-w1P8AKzfllyxbrs-rfEGE
                        id: urn:li:member:513916028
                        url: https://www.linkedin.com/in/vance-poitier
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQG2kraFQoFsbQ/profile-displayphoto-crop_800_800/B4EZmgEdzcKYAM-/0/1759327150979?e=1763596800&v=beta&t=KFM858lYWtgaZ_8T9XWbu_6akGfVwplSdbHZhmB0jhE
                      postedAt:
                        timestamp: 1762102245838
                        fullDate: 2025-11-02 16:50:45.00 +0000 UTC
                        relativeDay: 22h
                      engagements:
                        totalReactions: 101
                        commentsCount: 16
                        repostsCount: 10
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 83
                          - reactionType: INTEREST
                            reactionCount: 8
                          - reactionType: EMPATHY
                            reactionCount: 6
                          - reactionType: PRAISE
                            reactionCount: 3
                          - reactionType: APPRECIATION
                            reactionCount: 1
                      mediaContent:
                        - type: video
                          url: >-
                            https://dms.licdn.com/playlist/vid/v2/D4E05AQELkF89Xhk-Kw/mp4-720p-30fp-crf28/B4EZpFd4R1GUBw-/0/1762102241265?e=1762790400&v=beta&t=XtQ14v8MnzACxYYll8f0rU2PA758a4eIEPoSN8uxQA4
                    - urn: urn:li:activity:7390923173137059840
                      postID: '7390923173137059840'
                      postURL: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7390923173137059840
                      text: >-
                        My kids: “Wait… you typed everything? Word by word? No
                        Google Translate??”


                        Yup. Every. Single. Word.

                        Painfully on Microsoft Word.


                        Then manually translated it into Bahasa.


                        It was my final year project more than 20 years ago —
                        something I’d completely forgotten about until I found
                        the old files today.


                        And guess what it was about?


                        Computer agents that could buy and sell stuff
                        automatically on behalf of humans.

                        Basically… AI Agents before AI Agents were cool.

                        The tech? COM/DCOM, MSMQ — all fossils now.


                        But the concept?


                        Pretty much what I spend my days working on right now

                        Back then it took me months (and probably a few
                        sleepless nights).


                        Today, an AI Agent could probably write the whole thing
                        in five minutes.

                        Wild how life loops back — What a time to be alive🚀
                      author:
                        name: Subash Palani
                        headline: >-
                          Founder of Unstructured | I turn Teams into Startups |
                          Council Member, MBAN
                        urn: ACoAAARClhYBzxLX1q6Qis4gGsPtRPmZ4QzKg8U
                        id: urn:li:member:71472662
                        url: https://www.linkedin.com/in/subash-palani
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQGzRqVW96rwrw/profile-displayphoto-crop_800_800/B56ZmQEtJoJwAI-/0/1759058778864?e=1763596800&v=beta&t=koC3UPS3WtjauvaRyeFoqKw08QPQn11Q5smtheVpVHA
                      postedAt:
                        timestamp: 1762133401188
                        fullDate: 2025-11-03 01:30:01.00 +0000 UTC
                        relativeDay: 14h
                      engagements:
                        totalReactions: 42
                        commentsCount: 22
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 33
                          - reactionType: EMPATHY
                            reactionCount: 3
                          - reactionType: PRAISE
                            reactionCount: 3
                          - reactionType: INTEREST
                            reactionCount: 2
                          - reactionType: ENTERTAINMENT
                            reactionCount: 1
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D5622AQGQNAS07NrotQ/feedshare-shrink_2048_1536/B56ZpE59upJYAw-/0/1762092637636?e=1763596800&v=beta&t=PJJf6P-_NaQM3hWJetBWWv8wLIkjLA8EfwlYcAyU1jw
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D5622AQEnJWCgm-73FQ/feedshare-shrink_1280/B56ZpE59uaJkFk-/0/1762092637608?e=1763596800&v=beta&t=UGrlUoJQNZKHlgYxb3Ayp5qEV-J4W8XVWooyR9NFLpg
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D5622AQHAtw6sL1JEOw/feedshare-shrink_2048_1536/B56ZpE59ufG4Aw-/0/1762092637648?e=1763596800&v=beta&t=FtryG5Efok-ez4MXTEz2F-MInqTZ1qjp45XGMdFMbxs
                    - urn: urn:li:activity:7390964950204297216
                      postID: '7390964950204297216'
                      postURL: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7390964950204297216
                      text: "The biggest startup mistake of 2025:\n\nTrying to \"disrupt\" everything instead of connecting what already works.\n\n(This shift will make or break your startup in 2026)\n\nHere's what I'm seeing:\n\nEvery founder thinks they need to reinvent the wheel.\n\nBut users don't want disruption anymore. They want their 100+ tools to actually talk to each other.\n\nThe winners aren't breaking industries. They're connecting them.\n\n↳ Linear didn't disrupt project management. It made design + engineering + tracking seamless.\n\n↳ Notion didn't kill docs. It connected documents + tasks + databases under one roof.\n\n↳ Perplexity didn't out-build Google. It merged search + AI conversation perfectly.\n\nThe pattern? Coherence beats disruption.\n\nWhy coherence wins:\n\n• Lower friction = faster adoption\n• Deeper integration = higher retention\_\_\n• Network effects through connectivity\n\nDisruption forces behavior change.\nCoherence adapts to existing behavior.\n\nThat's why it scales faster.\n\nIn 2026, ask yourself:\n\n\"What's already working that I can amplify?\"\n\"Where does friction exist between tools?\"\n\"What workflow could I make invisible?\"\n\nThe next unicorns won't shout \"We're different!\"\n\nThey'll whisper \"We work better with everything you already use.\"\n\nStop trying to break things. Start connecting them.\n\n---\n🧠\_Follow me for more AI insights, software, startups.\n\n💬\_DM “startup” for a COMPLETELY FREE evaluation of your startup. Stop building products nobody uses. (or just book a call, link below 👇.)"
                      author:
                        name: Matas Rimkus 🧠
                        headline: >-
                          I help tech startups build products that reach
                          millions of users. | Founder w/ 2 apps sold | AI
                          Automation Wizard | 3 books published | TEDx speaker |
                          DM “startup” for free value
                        urn: ACoAAFJqpQ4BNvU9FxDLjA9C9C4PMTHa7_KVIZc
                        id: urn:li:member:1382720782
                        url: https://www.linkedin.com/in/rimk
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGHGmmBtz5F4A/profile-displayphoto-crop_800_800/B4EZoztX1ZIwAI-/0/1761804125951?e=1763596800&v=beta&t=oqhhpuoS1xraaJW7QpFjP2W1PMGID2k1zA3Cjd0lWz8
                      postedAt:
                        timestamp: 1762143361617
                        fullDate: 2025-11-03 04:16:01.00 +0000 UTC
                        relativeDay: 11h
                      engagements:
                        totalReactions: 7
                        commentsCount: 1
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 6
                          - reactionType: EMPATHY
                            reactionCount: 1
                      mediaContent:
                        - type: article
                          url: >-
                            https://www.linkedin.com/pulse/successful-startups-connect-existing-tools-betterway-matas-rimkus--stwte?trackingId=wruWj8sZTKGquxflwBdNeQ%3D%3D
                    - urn: urn:li:activity:7391106475315589120
                      postID: '7391106475315589120'
                      postURL: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7391106475315589120
                      text: "Your traffic didn’t ghost you. Google’s AI did.\n\nIf your analytics look quieter this month, it’s not your Wi-Fi.\nGoogle quietly changed how travelers find hotels, vacation rentals, and destinations... and the ripple effects are already here.\n\nMeet\_AI Overviews,\_Google’s feature that summarizes entire web pages before anyone clicks a link.\n\nIt scrapes information from multiple sources, compiles an instant answer, and gives travelers what they need right on the results page.\n\nGreat for guests. Brutal for clicks.\n\nHere’s what the data says:\nAhrefs:\_34% lower click-through rate when AI Overviews appear\nAmsive:\_15% CTR drop across 700,000 keywords\nPew Research:\_Users click links just 8% of the time when summaries appear, down from 15%\n\nThat’s not a dip. That’s a search earthquake.\n\nAnd yet — being\_in\_the AI Overview still matters. It means your brand has authority, credibility, and structure strong enough for Google to cite.\n\nSo the new game isn’t just ranking high.\n\nIt’s being referenced first.\n\nHere’s what every hotel, rental, and destination team should know:\nAuthority wins.\_Structured, trustworthy content gets pulled into AI summaries.\nReviews talk.\_Google’s AI now performs sentiment analysis, surfacing themes (good or bad) right inside summaries.\n\nBig brands dominate.\_Smaller operators need backlinks, partnerships, and distinctive local stories to compete.\n\nVisibility ≠ Bookings.\_Impressions still matter, but only if your content and reputation drive action.\n\nThis isn’t the end of SEO.\n\nIt’s the start of search\_interpretation.\n\nAnd in that world, genuine storytelling and credibility are the only ranking factors that never change.\n\nBecause hospitality storytelling, grounded in people and place, is the kind of content AI can’t fake.\n\nCurious where your property stands in this new AI landscape? Link in the comments."
                      author:
                        name: Kay Walten
                        headline: >-
                          AI for Hospitality | Direct Bookings, Guest Experience
                          & Destination Marketing for Indie Hotels + Vacation
                          Rentals
                        urn: ACoAAARbvdEBtYwF5GhOovEJTuzJgM0ancUVS2c
                        id: urn:li:member:73121233
                        url: https://www.linkedin.com/in/kaywalten
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQFRij4igTs9Pw/profile-displayphoto-crop_800_800/B4EZo6o5MVGoAM-/0/1761920392290?e=1763596800&v=beta&t=lYLER_WKY44bZkw8WqvRrVJ839Ao8hOtC-iyNL_k6d4
                      postedAt:
                        timestamp: 1762177103833
                        fullDate: 2025-11-03 13:38:23.00 +0000 UTC
                        relativeDay: 2h
                      engagements:
                        totalReactions: 9
                        commentsCount: 10
                        repostsCount: 1
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 4
                          - reactionType: EMPATHY
                            reactionCount: 4
                          - reactionType: PRAISE
                            reactionCount: 1
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4E22AQGLoE50B3u9Tg/feedshare-shrink_2048_1536/B4EZpJ8LFHHcAw-/0/1762177102620?e=1763596800&v=beta&t=H_IlKcPIm4nDH7LigLmRtE1NnCM4mbgVHt7nyNjSVQs
                    - urn: urn:li:activity:7391087920037888000
                      postID: '7391087920037888000'
                      postURL: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7391087920037888000
                      text: >-
                        What if you could turn your ideas into real, working
                        apps... just by describing them in plain English?


                        That’s exactly what I experienced with Replit!


                        It's a platform where you can vibe code your way from
                        idea → prototype → production-ready app.


                        No setup, no API headaches, no coding barrier.


                        Just type what you want, refine it together, and watch
                        your idea come to life.


                        Here’s what blew my mind 👇


                        ✅ Connect Everything You Use: Dropbox, Google Drive,
                        Notion, Slack — you can plug them into your Replit app
                        instantly with Connectors. No API keys. Just log in and
                        go.


                        ✅ Create Anywhere: Replit has a mobile app on both iOS &
                        Android, so I can literally build or update my project
                        from a café or while traveling.


                        ✅ All-in-One Platform: Code, database, hosting, auth —
                        it’s all baked in.


                        ✅ Built for Real Use: You can actually ship
                        production-grade apps from it.


                        Think of Replit as your creative cofounder — ready 24/7
                        to help you turn a sentence into software.


                        I’ve already started brainstorming small internal tools
                        and client dashboards to build next.


                        If you’ve ever had an app idea sitting in your notes,
                        this might be the sign to finally build it yourself.


                        👉 Start here & grab your $10 bonus:
                        https://lnkd.in/g39hfFPC (Enjoy $10 bonus)
                      author:
                        name: Nayeem Sheikh
                        headline: AI & Tech enthusiast • Founder of The Simplified AI
                        urn: ACoAAA20PTkBhmI87KuT0EyJsb1IhESW_qyof7A
                        id: urn:li:member:229915961
                        url: https://www.linkedin.com/in/heynayeem
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFaQd6myvHpSw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1704368397984?e=1763596800&v=beta&t=aDfCkux3oQZbfrkP_HLGJctm14qi4vkVa_9mDyofdMM
                      postedAt:
                        timestamp: 1762172679910
                        fullDate: 2025-11-03 12:24:39.00 +0000 UTC
                        relativeDay: 3h
                      engagements:
                        totalReactions: 221
                        commentsCount: 29
                        repostsCount: 8
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 197
                          - reactionType: EMPATHY
                            reactionCount: 13
                          - reactionType: PRAISE
                            reactionCount: 9
                          - reactionType: INTEREST
                            reactionCount: 2
                      mediaContent:
                        - type: video
                          url: >-
                            https://dms.licdn.com/playlist/vid/v2/D5605AQGyTxJvEUQU2A/mp4-720p-30fp-crf28/B56ZpJrASfJsBw-/0/1762172674965?e=1762790400&v=beta&t=-uGX5EQTEHXM9C3UWOdhLNItZkR0VhwhG163QE6VKr0
                    - urn: urn:li:activity:7391127041833865217
                      postID: '7391127041833865217'
                      postURL: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7391127041833865217
                      text: "You can always spot an amateur or worse in marketing...\nThey say 'marketeer' 🤦‍♂️.\n\nNo, you are not a musketeer...\nWe had a right royal barney about this in the UK in the early noughties. Common sense and one term prevailed. It was settled.\n\nIt's 𝗺𝗮𝗿𝗸𝗲𝘁𝗲𝗿.\n\nFWIW:\nMarketeer - a person who sells goods or services in a market, aka a 𝘴𝘢𝘭𝘦𝘴 person.\nMarketer - a person that\_promotes something, aka a 𝘮𝘢𝘳𝘬𝘦𝘵𝘪𝘯𝘨 person.\n\nGoogle Trends has spoken.\nGlad that's settled.\nAs you were.\n\nFlippin' amateeurs...\n\n#Marketer #NotMarketeer #LinkedInLeadbetter #UnchainedFriday"
                      author:
                        name: Simon Leadbetter
                        headline: Founder @ We Are Unchained | Mini MBA
                        urn: ACoAAACDlGABHqh0t0pM33qnUSciVNrY_jlWFnA
                        id: urn:li:member:8623200
                        url: https://www.linkedin.com/in/simonleadbetter
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQEK7QIxLPYzhw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1732309288411?e=1763596800&v=beta&t=AAhibkWOJBS7OZES3qXHI4PBpuwt9CVZMfCrqQmn8rw
                      postedAt:
                        timestamp: 1762182007273
                        fullDate: 2025-11-03 15:00:07.00 +0000 UTC
                        relativeDay: 44m
                      engagements:
                        totalReactions: 0
                        commentsCount: 0
                        repostsCount: 0
                        reactions: null
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4E22AQFohHCfpWarjw/feedshare-shrink_1280/B4EZpKJFjXHoAs-/0/1762180488023?e=1763596800&v=beta&t=u5MypjyjwLWgs1HiqR4p5Wq0IuAQRD68o4fveQIDNUw
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4E22AQFFb63E3RX2VA/feedshare-shrink_1280/B4EZpKJFjUGoAs-/0/1762180488013?e=1763596800&v=beta&t=tAFOct_lQ9uez7FjU_EJehjMn6MQko0fjH670fDdGh0
                    - urn: urn:li:activity:7391028665234530304
                      postID: '7391028665234530304'
                      postURL: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7391028665234530304
                      text: >-
                        My BBC interview on whether we should care about
                        #Grokipedia and #ElonMusk and his attempts to rewrite
                        history and the future in his own image? 


                        A lot of people have given up caring about this. 


                        And I think that is the most telling thing. 


                        That people might not care anymore. 


                        About a political #AI rewriting of


                        What the next-generation 


                        Might think about life 😱


                        Wikipedia worked ✅


                        For a reason... 


                        It was ALL of us working on it together ❤️ 


                        Moderated and understood by humans.


                        Unemcumbered by a profit motive.


                        And for all humanity to use... 👍🏾


                        Loved by Google as trusted 💪🏽


                        And verified with backlinks... 


                        And used by us 'all' as true. 


                        Now we have Elon's #AI. 


                        It reminds of what R. Buckminster Fuller said many moons
                        ago... 


                        "Humanity is acquiring all the right technology for all
                        the wrong reasons."


                        Will link to that below.


                        Enjoy the interview.
                      author:
                        name: Dan Södergren
                        headline: >-
                          Equipping leaders to adapt to the world of AI and the
                          future of work | TEDx and keynote speaker and author |
                          Trusted by Kelloggs, Sodexo and more...
                        urn: ACoAAAH4KzwBaukpWo_0t_Lr4ojrmRudyn8Q0JA
                        id: urn:li:member:33041212
                        url: https://www.linkedin.com/in/dan-sodergren-futureofwork
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQEeJS-FIwE8_g/profile-displayphoto-crop_800_800/B4EZm4aE5PKsAI-/0/1759735468909?e=1763596800&v=beta&t=jdWMgGiLuM3QjfYqHMyFrGumJPT2iuruSuHT-81Wy6k
                      postedAt:
                        timestamp: 1762158552464
                        fullDate: 2025-11-03 08:29:12.00 +0000 UTC
                        relativeDay: 7h
                      engagements:
                        totalReactions: 18
                        commentsCount: 5
                        repostsCount: 1
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 13
                          - reactionType: INTEREST
                            reactionCount: 4
                          - reactionType: APPRECIATION
                            reactionCount: 1
                      mediaContent:
                        - type: video
                          url: >-
                            https://dms.licdn.com/playlist/vid/v2/D4E05AQHVZGJVXcshPw/mp4-720p-30fp-crf28/B4EZpI1KanGoBw-/0/1762158535528?e=1762790400&v=beta&t=kzMqdHAYRF-kHBr_37J905pJL-DLnizthYQpGKguEX4
                  total: 249
                  start: 10
                  count: 10
                  hasMore: true
      tags:
        - Search
      description: search Posts (all filters available)
  /api/v1/services/service/details:
    get:
      summary: Get Service
      parameters:
        - name: vanityname
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: 7144683349b511a503
      responses:
        '200':
          description: Get Service
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      service:
                        type: object
                        properties:
                          vanityName:
                            type: string
                          serviceID:
                            type: string
                            format: utc-millisec
                          businessName:
                            type: string
                          provider:
                            type: object
                            properties:
                              firstName:
                                type: string
                              lastName:
                                type: string
                              fullName:
                                type: string
                              publicIdentifier:
                                type: string
                              profilePictureURL:
                                type: string
                                format: uri
                          location:
                            type: object
                            properties:
                              city:
                                type: string
                              availabilityType:
                                type: string
                          pricing:
                            type: object
                            properties:
                              pricingType:
                                type: string
                          servicesProvided:
                            type: array
                            items:
                              type: object
                              properties:
                                name:
                                  type: string
                                urn:
                                  type: string
                                  format: uri
                          requestProposalURL:
                            type: string
                            format: uri
                          shareUrl:
                            type: string
                            format: uri
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  service:
                    vanityName: 0000a8335a78437a53
                    serviceID: '7301183869058273280'
                    businessName: Aaiyna’s Services
                    provider:
                      firstName: Aaiyna
                      lastName: Jairath
                      fullName: Aaiyna Jairath
                      publicIdentifier: aaiyna-jairath-134302285
                      profilePictureURL: >-
                        https://media.licdn.com/dms/image/v2/D4E03AQHFkfeK8IxJYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1692632056442?e=1765411200&v=beta&t=DXmxyt62Dbkr9WLIgkRyAnfdMGt9zToe0dUACmpoCrw
                    location:
                      city: United Kingdom
                      availabilityType: Remote or in person
                    pricing:
                      pricingType: Contact for pricing
                    servicesProvided:
                      - name: Content Marketing
                        urn: urn:li:fsd_standardizedSkill:6182
                      - name: Content Strategy
                        urn: urn:li:fsd_standardizedSkill:5740
                      - name: Social Media Marketing
                        urn: urn:li:fsd_standardizedSkill:2174
                      - name: Digital Marketing
                        urn: urn:li:fsd_standardizedSkill:1836
                      - name: Search Engine Optimization (SEO)
                        urn: urn:li:fsd_standardizedSkill:512
                      - name: Advertising
                        urn: urn:li:fsd_standardizedSkill:69
                      - name: Event Marketing
                        urn: urn:li:fsd_standardizedSkill:2072
                      - name: Market Research
                        urn: urn:li:fsd_standardizedSkill:786
                      - name: Marketing Strategy
                        urn: urn:li:fsd_standardizedSkill:296
                      - name: Performance Marketing
                        urn: urn:li:fsd_standardizedSkill:11011
                    requestProposalURL: >-
                      https://www.linkedin.com/services/page/0000a8335a78437a53/request-proposal
                    shareUrl: https://www.linkedin.com/services/page/0000a8335a78437a53
      tags:
        - Services
      description: Get service details by its VanityName (ID).
  /api/v1/services/service/similar:
    get:
      summary: Similar services
      parameters:
        - name: vanityname
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: 7144683349b511a503
      responses:
        '200':
          description: Similar services
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      showAllUrl:
                        type: string
                        format: uri
                      serviceProviders:
                        type: array
                        items:
                          type: object
                          properties:
                            firstName:
                              type: string
                            lastName:
                              type: string
                            fullName:
                              type: string
                            publicIdentifier:
                              type: string
                            profilePictureURL:
                              type: string
                              format: uri
                            headline:
                              type: string
                            servicePageURL:
                              type: string
                              format: uri
                            serviceVanityName:
                              type: string
                            requestProposalURL:
                              type: string
                              format: uri
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  showAllUrl: >-
                    https://www.linkedin.com/search/results/services/?serviceCategory=%5B%22207%22%2C%22272%22%2C%22764%22%2C%223166%22%5D&trk=service_providers_search_show_all_trk
                  serviceProviders:
                    - firstName: Olusegun
                      lastName: O.
                      fullName: Olusegun O.
                      publicIdentifier: olusegun-o-35635365
                      profilePictureURL: >-
                        https://media.licdn.com/dms/image/v2/D4E03AQFLKanTKH_M1w/profile-displayphoto-shrink_800_800/B4EZPhOr.gGcAg-/0/1734650545050?e=1765411200&v=beta&t=ip8iEHYS8IAsaAzb_3azE79ufP9cV2peyZYkxSoo0YA
                      headline: Director@Hexvista | Technology
                      servicePageURL: >-
                        https://www.linkedin.com/services/page/45762a336793892a19
                      serviceVanityName: 45762a336793892a19
                      requestProposalURL: >-
                        https://www.linkedin.com/services/page/45762a336793892a19/request-proposal
                    - firstName: Alperen
                      lastName: Belgic
                      fullName: Alperen Belgic
                      publicIdentifier: belgic
                      profilePictureURL: >-
                        https://media.licdn.com/dms/image/v2/C5603AQHxVNlxfcpfgA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1630962271050?e=1765411200&v=beta&t=Dvv29GdLBzF2OCv8i9LTJYfyIhfzj4KK-BK8YxWhYQA
                      headline: Software Engineer helping streamline team operations
                      servicePageURL: >-
                        https://www.linkedin.com/services/page/8a82843101a850aa53
                      serviceVanityName: 8a82843101a850aa53
                      requestProposalURL: >-
                        https://www.linkedin.com/services/page/8a82843101a850aa53/request-proposal
                    - firstName: Humera
                      lastName: Shaikh
                      fullName: Humera Shaikh
                      publicIdentifier: humera-shaikh-385279194
                      profilePictureURL: >-
                        https://media.licdn.com/dms/image/v2/D4D03AQGbv2SymCck2g/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1714056997304?e=1765411200&v=beta&t=e4g6wgUn8XkB1-rZgRbR7udhSmF2J7vUHtV6iWwNHhw
                      headline: Software Developer
                      servicePageURL: >-
                        https://www.linkedin.com/services/page/714380329a2a33b076
                      serviceVanityName: 714380329a2a33b076
                      requestProposalURL: >-
                        https://www.linkedin.com/services/page/714380329a2a33b076/request-proposal
                    - firstName: Peter
                      lastName: Davies
                      fullName: Peter Davies
                      publicIdentifier: pkdavies
                      profilePictureURL: >-
                        https://media.licdn.com/dms/image/v2/C4D03AQEX7MXGemE5sw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1612105928572?e=1765411200&v=beta&t=hWjALMunhnTW8GothZr4T3z-Ud807ZksCmrM-ZQNYNM
                      headline: Entrepreneur and Director at the Cyber Defence Service
                      servicePageURL: >-
                        https://www.linkedin.com/services/page/7142943078b1712150
                      serviceVanityName: 7142943078b1712150
                      requestProposalURL: >-
                        https://www.linkedin.com/services/page/7142943078b1712150/request-proposal
                    - firstName: David
                      lastName: Brandon
                      fullName: David Brandon
                      publicIdentifier: davidwilliambrandon
                      profilePictureURL: >-
                        https://media.licdn.com/dms/image/v2/C4E03AQHwJzPMGqzJwg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1644400370231?e=1765411200&v=beta&t=3-dwbMMLypOejoYo7INyfYr-er7K68d-AynbTyx7rZM
                      headline: Co-founder at RotaCloud
                      servicePageURL: >-
                        https://www.linkedin.com/services/page/45476a3137b1527b6b
                      serviceVanityName: 45476a3137b1527b6b
                      requestProposalURL: >-
                        https://www.linkedin.com/services/page/45476a3137b1527b6b/request-proposal
      tags:
        - Services
      description: Get services similar to a given service by its VanityName (ID).
  /api/v1/posts/featured:
    get:
      summary: Featured Posts
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ACoAAAKmquABM0LC0AnA3zMnfEZv2zSWO-gyUdk
      responses:
        '200':
          description: featured
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        url:
                          type: string
                          format: uri
                        imageUrl:
                          type: string
                          format: uri
                        reactions:
                          nullable: true
                        likesCount:
                          type: integer
                        commentsCount:
                          type: integer
                        type:
                          type: string
                        title:
                          type: string
                        text:
                          type: string
                          format: style
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                data:
                  - url: >-
                      https://www.linkedin.com/in/hnaser/details/featured/50064959/single-media-viewer
                    imageUrl: >-
                      https://media.licdn.com/dms/image/v2/C562DAQEZ34GlamOkfw/profile-treasury-image-shrink_800_800/profile-treasury-image-shrink_800_800/0/1601651107572?e=1737043200&v=beta&t=N5gDDBREwT79J9N5xYXJECMR5v1WPG1CicMpzZ8XBwo
                    reactions: null
                    likesCount: 0
                    commentsCount: 0
                    type: Image
                    title: ESRI ArcGIS Server Code Challenge 2007
                    text: >-
                      Award Winner of ArcGIS for Server Code Challenge in 2007,
                      ESRI Developer Summit,
                      http://esricodechallenge.wordpress.com/2007/03/21/and-the-winners-are
                  - url: >-
                      https://www.linkedin.com/pulse/how-become-good-backend-engineer-fundamentals-hussein-nasser-9lxmc
                    imageUrl: >-
                      https://media.licdn.com/dms/image/v2/D5612AQFxQPlDbA5TVw/article-cover_image-shrink_600_2000/article-cover_image-shrink_600_2000/0/1733190636331?e=1741824000&v=beta&t=dkOvpJRBlcHdjN5HgKCn0P_AQ-sm989EVnf4M7DFleM
                    reactions: null
                    likesCount: 0
                    commentsCount: 0
                    type: Article
                    title: How to Become a Good Backend Engineer (Fundamentals)
                    text: >-
                      I have been a backend engineer for over 20 years and I
                      have witness technologies come and go. One thing however,
                      always remains constant: The first principles the tech is
                      built on. I don’t really mean tools, frameworks or even
                      languages. Those evolve and change but the fundamental
                      infrastructure on which the tools are built rarely does.
                      For example knowing how to setup Apache or IIS is one
                      thing, understanding the commonalities and differences
                      between the two web servers is another. In this article I
                      explore some of the fundamentals of backend engineering.
                      that are at the root of everything we use. You may choose
                      to have basic understanding of all these fundamentals and
                      become a jack-of-all-trades backend engineer or go
                      vertical in one at deeper level and become expert in that
                      area. There is no wrong or right, it all depends on what
                      moves you. The way to become a better backend engineer is
                      never clean and straightforward. In fact, it is messy, it
                      is full of trial and errors and experimentations that only
                      you have to experience. There is no book, no course, no
                      YouTube video or a medium article that can teach you
                      everything there is about backend engineering. You have to
                      experience it yourself. If you are a recent graduate
                      interested in backend engineering, you may find one or
                      more of these fundamentals interesting and decide to
                      pursue it. The best way is to get your hands dirty. Let us
                      get started. Communication Protocols Communications
                      protocols link the frontend to the backend. Understanding
                      how protocols work is a good skill to have for an engineer
                      especially if they want to build a resilient backend
                      application. Almost all the protocols we use and love on
                      the backend are either built on top of TCP or UDP.That is
                      why understanding the differences between this two help
                      the engineer make the right choice. For instance, TCP is a
                      stream-based connection-oriented protocol while UDP is a
                      message based and connectionless. TCP provides reliable
                      delivery at a cost of connection setup and retransmission.
                      While UDP starts faster but doesn’t have guaranteed
                      delivery. Anything you build on top of these two protocols
                      must adhere to their fundamental properties. TCP is not
                      better than UDP, and UDP is not better than TCP. It all
                      depends on what you are building. Moving up the stack, the
                      HTTP protocol was originally built on top of TCP because
                      we wanted to send requests and responses reliably. As the
                      web evolved and resources become richer, one connection
                      was not sufficient to concurrently send multiple requests.
                      So browsers started to establish more and more
                      connections, the cost of connection setup for each request
                      became so high. HTTP/2 introduced application level
                      streams so multiple requests can be sent on the same
                      connection. Later HTTP/2 evolved and had to be rewritten
                      on top of UDP with HTTP/3 to solve the TCP head of line
                      problem. There are reasons for everything, the fundamental
                      feature of TCP was the culprit of this move. It doesn’t
                      mean TCP is bad the web has evolved in a way that TCP is
                      no longer suitable. If we didn’t know how TCP works we
                      would not have improved the HTTP protocol. It is also
                      important to know that using any protocol comes with a
                      cost especially while building APIs. Understanding that
                      cost will help you make better informed decisions. For
                      example, using HTTP/2 might give you more HTTP request
                      throughput, but the work the application needs to do to
                      assemble the streams taxes the CPU, something Lucidchart
                      learned the hard way. Sometimes the backend architecture
                      requires real-time Bidirectional communication protocols
                      to build chatting, gaming apps or just communicating
                      between two services. Protocols such as WebSockets, gRPC
                      or just raw TCP/UDP can be used. If you know how a
                      protocol works and what is the strength and weaknesses you
                      will know when to use it. Ultimately, learning
                      communication protocols is important for a backend
                      engineer, and it is possible to go as deep as desired in
                      any protocol. Maybe one day you will write an RFC
                      proposing a new protocol. Web Servers Web servers are
                      becoming increasingly important as backend infrastructure
                      relays on HTTP web communications. Web servers deliver
                      static or dynamic content served on top of the HTTP
                      protocol. If you build a Web API you may spin up your own
                      web server in your language of choice or use a web
                      framework such as Express or Django. Modern web servers
                      support both HTTP/1.1 and HTTP/2. HTTP/3 is slowly getting
                      support as its newer protocol. Configuring your web server
                      with the appropriate protocol is critical for performance
                      and resilience of your backend application; And it all
                      depends on the environment. For example, Do you expect
                      multiple concurrent requests from the same client? or do
                      you expect fewer requests but from many clients? Based on
                      that, you can pick multiplexing HTTP/2 or vanilla simple
                      HTTP/1.1. The internal architecture of web servers can
                      also differ. Web servers can be single or multithreaded.
                      They can have one thread or multiple listener threads.
                      There are many ways client connections can be accepted and
                      distributed among the threads. If you choose an
                      off-the-shelf web server you are stuck with its
                      architecture. If you build your own from scratch you get
                      to choose the architecture that is right for you. I wrote
                      an article going through multiple designs for threading
                      and connection management in backend servers, you may want
                      to check it out. Additionally, web servers can set any
                      where in the stack. For example, a CDN is a web server
                      that acts like a cache and communicate with the origin
                      backend web server to get the content. An API gateway is a
                      web server that authenticate user and serve API responses
                      from backend web servers. Examples of off-the-shelf web
                      servers are Apache Tomcat, Apache httpd, and NGINX. The
                      latter can act as both a web server and a proxy. You may
                      build your own web server in any language by listening on
                      a TCP port and understand how to speak the HTTP protocol,
                      you can of course use an HTTP library that does most of
                      the work for you. Database Engineering Database
                      engineering is a vast field of study. At its core the idea
                      of a database is simple; Allow multiple users to store and
                      retreive data consistently and in a durable fashion. That
                      is why understanding the four properties of ACID:
                      atomicity, consistency, isolation, and durability is
                      fundamental to database engineering. One must understand
                      that nothing is written on stone and following these
                      properties isn’t a must. For example, relational databases
                      are fully ACID and require a schema while MongoDB was
                      built as a document based database, with basic atomicity
                      (document level) and no schema. Redis built a fanstatic
                      high performance cache by sacrificing durability by
                      default. No database system is complete without indexes
                      and at their core B+Trees is the data structure of choice.
                      How data is organized in tables, documents or graphs all
                      end up as file system pages at the end of the day.
                      Understanding how to get most of your disk I/O read is the
                      core of database engineering. If you are interested in
                      database engineering, there are many areas you can
                      specialize in. You can pick one database and know
                      everything about it. You can build a better indexing
                      techniques (LSM is a good example). You can build a new
                      database system specialized in a specific workload. I have
                      been working with databases for 20 years and to this day I
                      learn something new all the time. This field is vast.
                      Proxies Proxies are becoming increasingly popular in the
                      engineering world, especially with the introduction of
                      micro-services. The main purpose of a proxy is it receives
                      requests from a client and forward the requests to backend
                      servers. The proxy hides the network layer identity of the
                      original client from the destination server. There are two
                      levels of proxying: layer 4 and layer 7 proxying. Layer 4
                      proxying works at the transport layer, while layer 7
                      proxying works at the application level. Each layer
                      provides different capabilities and can be used for
                      different purposes. Layer 7 proxying require the proxy to
                      understand the application protocol while layer 4 proxying
                      works with any application protocol because it works at
                      the transport layer (TCP or UDP). You might have heard the
                      forward proxy and reverse proxy used interchangeably. Both
                      the forward proxy and the reverse proxy, receive requests
                      from clients and forward the request to a backend. In the
                      forward proxy, the client explicitly asks for a particular
                      backend server and the proxy fulfills this request.
                      Forward proxies must be configured in the client network
                      proxy section for them to work. In the reverse proxy the
                      client doesn’t know the final backend server, to the
                      client the final destination is the reverse proxy. The
                      client doesn’t know there are more servers on the backend.
                      A common uses cases of proxies are caching, API gateways,
                      authentication, load balancing and much more. For example
                      a content delivery network (CDN) is a reverse proxy that
                      sends request to the origin backends. Fiddler or MITM are
                      proxies configured on the client side and all requests*
                      get sent to them first. Service meshes are essentially a
                      proxy and a reverse proxy. Learn more about proxies here.
                      *I say all requests but in fact only requests that the
                      proxy are configured to support. Mostly here we refer to
                      HTTP proxy, so all HTTP requests get forwarded. Example of
                      proxies are NGINX, HAProxy and Envoy. Proxies are one of
                      the most interesting topics in backend engineering and one
                      can specialize in learning and improving them. Cloudflare
                      recently moved away from NGINX, their primary reverse
                      proxy, and built their own proxy because of certain
                      limitations in NGINX. I discussed that in details in an
                      episode of the backend engineering show. Messaging Systems
                      Messaging systems are becoming increasingly important as
                      we move towards interconnected systems and services. As
                      services start to communicate to each other, coupling and
                      dependencies increase which increases the complexity of
                      building scalable backend applications. Messaging systems
                      are designed to remove this coupling Messaging systems at
                      their core support a feature called publish-subscribe
                      where a client can publish a message and other clients can
                      subscribe to consume this content. The choice of
                      architecting how publishing and consumption is made is up
                      to the messaging system. For example, Kafka use
                      long-polling model while RabbitMQ uses push model, both
                      has pros and cons. Consuming a message also comes with an
                      interesting and hard to solve problem. How do you make
                      sure the consumer reads the message only once? These
                      guarantees complicates the messaging system design.
                      Messaging systems are truly interesting piece of
                      technology that is fundamentals to backend engineering.
                      This field might interest you. Message Formats Message
                      formats go hand in hand with communication protocols; They
                      describe in-wire format of the message being sent. They
                      usually broken down into two types human readable and
                      non-human readable. Examples are XML, JSON and protocol
                      buffers. When a client sends a message to a backend, it
                      needs to serialize the message from the language data
                      structure to the on-wire message format. When the backend
                      receives the message it needs to then deserialize the
                      message from this format to the language data structure.
                      That is why it is absoluity fine to have a Javascript
                      client communicates with a C# backend using JSON as a
                      message format. The native JSON object of javascript will
                      be converted to a JSON byte string in the wire, the C#
                      backend then deserializes the byte string to a C#
                      structure representing a dictionary. It is important to
                      understand the cost associated with serializing and
                      deserializing message format. XML was one of the original
                      message formats designed to be human-readable. However,
                      computers had difficulty dealing with XMLs, so protocol
                      buffers format was created to make the message format
                      smaller and more friendly. Protocol buffers became very
                      popular and were designed to solve the problem of high
                      bandwidth messages. Protocol buffers minimize the payload
                      so fewer bytes can be sent. It also speeds up the
                      serialization and deserialization process. Becoming
                      specialized in message formats is also an option. You may
                      invent the next message format that may become the
                      standard to serve us for the next 50 years. Security
                      Security is an important topic in the field of software
                      engineering. There are many different aspects to security.
                      You can secure communications with encryption or TLS. You
                      can prevent network intrusion with firewall rules and
                      proper network configuration. You can study common
                      software vulnerabilities and protect against denial of
                      service attacks. As a software engineer, it is important
                      to be familiar with the different types of security risks
                      and how to mitigate them. One type of security risk is a
                      man-in-the-middle attack. This is where an attacker
                      intercepts communication between two parties and tries to
                      eavesdrop or modify the data being exchanged. To prevent
                      this type of attack, it is important to encrypt and
                      authenticate the communicated parties using Transport
                      Layer Security (TLS). Another type of security risk is a
                      denial of service attack. This is where an attacker tries
                      to prevent legitimate users from accessing a service by
                      flooding it with requests or through finding a way to
                      crash the backend by sending a special payload. To prevent
                      this type of attack, it is important to have a firewall or
                      a layer 7 DDOS protection layer in place to block
                      illegitimate requests. Cloudflare has great services to
                      detect DDOS traffic. This is of course made possible
                      through layer 7 inspection. Of course its hard to
                      summarize all possible security attacks. There is a client
                      side security attacks such as XSS (cross side scripting),
                      there are server side security attacks such as SQL
                      injection. Security is an important topic in the field of
                      software engineering. There are many aspects to security.
                      As a software engineer, it is important to be familiar
                      with the different types of security risks and how to
                      mitigate them. Conclusion In conclusion, as a backend
                      engineer, it is important to explore different
                      technologies to find what interests you and where your
                      strengths are. Don’t be afraid to experiment and build
                      something cool, even if it’s with a language that may be
                      considered unconventional. What we discussed in this
                      article are what I believe are some of the fundamentals
                      that will always remain here, understanding them makes you
                      a better engineer. As you gain more experience and
                      expertise, focus on deepening your knowledge in a specific
                      area to become known for your skill in that field.
                      Ultimately, it is important to follow your interests to
                      succeed in the rapidly-evolving world of software
                      engineering. Always remember, nothing is written in stone,
                      you can change anything. There is no right and wrong way
                      to design or build applications, it all depends on what
                      you are trying to do. You may run into a situation where
                      the technologies we have today work for you. But you might
                      also reach a dead end and might need to invent something
                      that has never been invented before. Just read the Homa
                      paper, this protocol attempts to completely replaces the
                      fundamental protocol TCP because data centers workloads
                      are completely unsuitable for TCP. I hope you enjoyed this
                      article. I wish you the best in your career. If you are
                      interested to learn more about backend engineering
                      consider getting my Fundamentals of Backend Engineering
                      Udemy course
                  - url: >-
                      https://www.linkedin.com/feed/update/urn:li:activity:6963946536233820161
                    imageUrl: >-
                      https://media.licdn.com/dms/image/v2/C5622AQG15a0QKhyTCg/feedshare-shrink_2048_1536/feedshare-shrink_2048_1536/0/1660334236711?e=1739404800&v=beta&t=gvXo06iRpimyQsfACWnw7P3EFoPQR1kk1jHrFK1PP3g
                    reactions:
                      - reactionType: LIKE
                        reactionCount: 94
                      - reactionType: INTEREST
                        reactionCount: 10
                      - reactionType: EMPATHY
                        reactionCount: 5
                    likesCount: 109
                    commentsCount: 3
                    type: Post
                    title: ''
                    text: "Congestion control is a collection of algorithms that controls the amount of data transmitted in a network by a sender in order to avoid flooding the networks with packets. Middle routers have buffers that hold the packets (segments to be exact) temporarily to be processed and routed to the next destination. When the buffer is filled up new packets will be dropped by those routers which causes an indication by the sender that some packets are getting lost. This signals a congestion of the network (new papers challenge definitions such as the Homa paper but it's outside the scope of this post) when a congestion is detected the congestion control slows down transmission by flipped between several algorithms. We discuss in this post the two major algorithms, the slow start and the congestion avoidance.\n\nThe transmission starts with the slow start algorithm with an initial\_congestion window size of specific value (the CWND controls the congestion), the slow starts increases the CWND with 1 maximum segment size (around 1500 bytes in most cases) for each acknowledgment the sender gets. This continues until the CWND reaches the slow start threshold (SSTHRES) the algorithm then changes to the congestion avoidance. In the congestion avoidance algorithm, the CWND is increased by 1 MSS for each round trip (not each ack), this means if your CWND is 5 segments worth of size, sending 5 segments and getting acknowledgment for the entire 5 segments will get you an increase of 1 MSS to your CWND. This is as opposed to slow start where if you receive 5 acknowledgments you get +5 MSS to your CWND. That is why Slow Start starts slow but increases aggressively. While congestion avoidance increases slowly.\_\n\nWhen congestion is detected , the slow start threshold is reduced by however many unacknowledged\_segments that are in flights (flight size) divided by two (not as commonly mistakenly CWND/2), Flight size is usually lower than CWND. The CWND is also reset to 1 MSS which then kicks back the slow start algorithm again since the CWND is lower than the slow start threshold. This goes on over and over again until the slow start threshold becomes equal or less than the value of 2MSS.\_The lower the slow start threshold the slower the increase of transmission because the slow start will reach the threshold faster and the congestion avoidance will kick in giving us linear increase.\_\n\nIn this video I explain the difference between the two algorithms and how they each take effect in transmission.\n\nIf you enjoyed this post consider grabbing my fundamentals of network engineerings udemy course, I designed specifically for software engineers with top to bottom approach. Head to https://lnkd.in/gF_h7q56 for a discount coupon\n\n#networkengineering #backendwebdevelopment #tcpip"
                  - url: >-
                      https://www.linkedin.com/feed/update/urn:li:activity:6860697305704742912
                    imageUrl: >-
                      https://media.licdn.com/dms/image/v2/C5622AQHao4m1dW_RUg/feedshare-shrink_2048_1536/feedshare-shrink_2048_1536/0/1635717701082?e=1739404800&v=beta&t=Z29Ial2fW5ezi1b_6yrjs1XHOMV235hreJ3lsA16YiI
                    reactions:
                      - reactionType: LIKE
                        reactionCount: 142
                      - reactionType: EMPATHY
                        reactionCount: 20
                      - reactionType: PRAISE
                        reactionCount: 7
                      - reactionType: APPRECIATION
                        reactionCount: 1
                    likesCount: 170
                    commentsCount: 9
                    type: Post
                    title: ''
                    text: >-
                      I added some more content to my Introduction to Database
                      Engineering based on feedback and requests it's now over
                      18 hours of pure database fundamentals, all for just
                      $10.99


                      Head to https://lnkd.in/gYtaXGae which redirects to udemy
                      with the $10.99 coupon already applied.


                      If you enjoy my work, check out my NGINX and python course
                      here


                      https://lnkd.in/gw74zj3k

                      https://lnkd.in/gpN6Szja
                  - url: >-
                      https://www.linkedin.com/in/hnaser/details/featured/1582740105361/single-media-viewer
                    imageUrl: >-
                      https://media.licdn.com/dms/image/sync/v2/C5627AQEvnQY0-XpCUw/articleshare-shrink_800/articleshare-shrink_800/0/1719486656696?e=1737043200&v=beta&t=TzlZ5VC2raaSwtOx1OH6E_OK3sMzgwb8LXDkHEYS7SA
                    reactions: null
                    likesCount: 0
                    commentsCount: 0
                    type: Link
                    title: >-
                      Learn GIS Programming with ArcGIS for Javascript API 4.x
                      and ArcGIS Online: Learn GIS programming by building an
                      engaging web map application works on mobile or the web
                    text: >-
                      Build a web mapping application from scratch using ArcGIS
                      Javascript API and ArcGIS Online. You will build an app
                      that helps users locate landmarks. The app shows the
                      landmarks in a map such as libraries, cafes, restaurants
                      schools and much more. It...
                  - url: >-
                      https://www.linkedin.com/feed/update/urn:li:activity:6962188683345104896
                    imageUrl: >-
                      https://media.licdn.com/dms/image/v2/C5622AQEAFwI-oIlX_Q/feedshare-shrink_2048_1536/feedshare-shrink_2048_1536/0/1659915131917?e=1739404800&v=beta&t=fgQuvPDeGo3TCLZRMBbuLgnA_mPqOHoaU7nbMyrGHO8
                    reactions:
                      - reactionType: LIKE
                        reactionCount: 372
                      - reactionType: INTEREST
                        reactionCount: 29
                      - reactionType: EMPATHY
                        reactionCount: 5
                      - reactionType: MAYBE
                        reactionCount: 4
                      - reactionType: PRAISE
                        reactionCount: 2
                    likesCount: 412
                    commentsCount: 3
                    type: Post
                    title: ''
                    text: >-
                      Index Seek vs Index Scan 


                      While this is mostly a SQL Server terminology, it is
                      applicable to other DBMS platforms. An Index Seek
                      traverses the B+Tree from the root node to look up a
                      single value in a leaf page which causes at least 2 IOs
                      depending on the depth of the B+Tree. An Index Scan
                      however works by scanning the B+tree leaf pages which are
                      ordered and linked, index scans are better suited for
                      range queries or large values that are next to each other
                      while seeks are great for more selective queries. 


                      Index Seek Example

                      Students table ID has a b+tree index. 


                      SELECT * FROM STUDENTS

                      WHERE ID = 1 OR ID = 5003 or ID = 90000


                      That query will probably do 3 index seeks for each of the
                      values on the index on the ID field. 


                      Index Scan Example

                      SELECT * FROM STUDENTS 

                      WHERE ID BETWEEN 1000 and 90000 


                      That query will probably do a seek on the lowest range
                      1000 and then walk the linked leaf pages until we reach
                      the page which has the entry 90000 thats when we the index
                      scan stops. We can do that because we know that the
                      entries in the pages are ordered and the pages linked
                      (each page points to the next, a property of B plus Tree)


                      Using a seek on every single value between 1000 and 90000
                      is probably going to be slower and results in more IO.
                      While in the original example doing a scan from the page
                      which has the value 1 to the page that has 90000 looking
                      for 1, 5003 and 90000 is a complete waste of IO, (we will
                      fetch pages in between that we don’t need ) 



                      Seek or Scan Example

                      Here is where the planner might choose a different plan
                      based on the inner query result


                      SELECT * FROM STUDENTS

                      WHERE ID IN (SELECT ID FROM STUDENTS_GRADES WHERE GRADE >
                      90 ) 


                      The inner query here might return IDs all over the place.
                      It might also return a single value. As a result it might
                      be a scan or a seek. The question here how do you know
                      which is better? The planner tries its best but at the end
                      of the day it may miss and pick the wrong plan. So it is
                      up to us to write our queries in a predictable way if
                      possible. I know that is not always the case but knowing
                      what is happening behind the scenes is the first step. 


                      For those interested to learn more about  fundamentals of
                      database engineering like this one grab a copy of my udemy
                      course and discount coupon here https://lnkd.in/gYtaXGae
                  - url: >-
                      https://www.linkedin.com/feed/update/urn:li:activity:6849751510591635456
                    imageUrl: >-
                      https://media.licdn.com/dms/image/v2/C5622AQEyzcsYdr09eQ/feedshare-shrink_2048_1536/feedshare-shrink_2048_1536/0/1633108021926?e=1739404800&v=beta&t=QBZXHmHIb5fg8OltVoQ9N71cwyYUOggF7bjsjJ_x_aY
                    reactions:
                      - reactionType: LIKE
                        reactionCount: 26
                      - reactionType: EMPATHY
                        reactionCount: 1
                    likesCount: 27
                    commentsCount: 1
                    type: Post
                    title: ''
                    text: >-
                      Microsoft added few more options in IIS binding in the
                      latest update. Will cover them in the next show
                  - url: >-
                      https://www.linkedin.com/in/hnaser/details/featured/1582740326030/single-media-viewer
                    imageUrl: ''
                    reactions: null
                    likesCount: 0
                    commentsCount: 0
                    type: Document
                    title: The !Empathetic Engineer.pdf
                    text: >-
                      Engineers are incredibly smart people. This could be a
                      product of the complex problems they usually work on and
                      the abundance of solutions a given problem can have. This
                      is especially true for software engineering problems. With
                      so many roads leading to Rome, it becomes attractive for
                      engineers to favor the idea they came up with over
                      others. 


                      This book is what you should not strive to be.
                  - url: >-
                      https://www.linkedin.com/pulse/avoid-select-even-single-column-tables-hussein-nasser-cjakc
                    imageUrl: >-
                      https://media.licdn.com/dms/image/v2/D5612AQFjLvDF_2luwQ/article-cover_image-shrink_600_2000/article-cover_image-shrink_600_2000/0/1731535238748?e=1741824000&v=beta&t=bhQfWp6dGU67qCZ2mBuVeMp9MeduSQ66RSlUUeKwNGw
                    reactions: null
                    likesCount: 0
                    commentsCount: 0
                    type: Article
                    title: Avoid SELECT *, even on a single-column tables
                    text: >-
                      Try avoiding SELECT * even on single-column tables. Just
                      keep that in mind even if you disagree. By the end of this
                      article, I might have you contemplate. A story from 2012
                      This is a true story I ran into with a customer backend
                      application over 12 years ago (circa 2012-2013). A backend
                      API that is stable and runs in single digit millisecond.
                      One day users came in to a slow and sluggish user
                      experience. We checked the commits and nothing was
                      obvious, most changes were benign. Just in case we
                      reverted all commits (Some of you might relate to this,
                      you know you are getting desperate if you blame things
                      that don't make sense). However, the app was still slow.
                      Looking at the diagnostics, we noticed API response time
                      is taking from 500 ms to up to 2 seconds at times. Where
                      it used to be single-digit millisecond. We know nothing
                      has changed in the backend that would’ve cause the slow
                      down, but started looking at the database queries. SELECT
                      * on a table that has 3 blob fields are being returned to
                      the backend app, those blob fields has very large
                      documents. It turned out this table had only 2 integer
                      columns, and the API was running a SELECT * to return and
                      use the two fields. But later, the admin added 3 blob
                      fields that are used and populated by another application.
                      While those blob fields were not being returned to the
                      client, the backend API took the hit pulling the extra
                      fields populated by other applications, causing database,
                      network and protocol serialization overhead. How database
                      reads work In a row-store database engine, rows are stored
                      in units called pages. Each page has a fixed header and
                      contains multiple rows, with each row having a record
                      header followed by its respective columns. For instance,
                      consider the following example in PostgreSQL: When the
                      database fetches a page and places it in the shared buffer
                      pool, we gain access to all rows and columns within that
                      page. So, the question arises: if we have all the columns
                      readily available in memory, why would SELECT * be slow
                      and costly? Is it really as slow as people claim it to be?
                      And if so why is it so? In this post, we will explore
                      these questions and more. Kiss Index-Only Scans Goodbye
                      Using SELECT * means that the database optimizer cannot
                      choose index-only scans. For example, let’s say you need
                      the IDs of students who scored above 90, and you have an
                      index on the grades column that includes the student ID as
                      a non-key, this index is perfect for this query. However,
                      since you asked for all fields, the database needs to
                      access the heap data page to get the remaining fields
                      increasing random reads resulting in far more I/Os. In
                      contrast, the database could have only scanned the grades
                      index and returned the IDs if you hadn’t used SELECT *.
                      Deserialization Cost Deserialization, or decoding, is the
                      process of converting raw bytes into data types. This
                      involves taking a sequence of bytes (typically from a
                      file, network communication, or another source) and
                      converting it back into a more structured data format,
                      such as objects or variables in a programming language.
                      When you perform a SELECT * query, the database needs to
                      deserialize all columns, even those you may not need for
                      your specific use case. This can increase the
                      computational overhead and slow down query performance. By
                      only selecting the necessary columns, you can reduce the
                      deserialization cost and improve the efficiency of your
                      queries. Not All Columns Are Inline One significant issue
                      with SELECT queries is that not all columns are stored
                      inline within the page. Large columns, such as text or
                      blobs, may be stored in external tables and only retrieved
                      when requested (Postgres TOAST tables are example). These
                      columns are often compressed, so when you perform a SELECT
                      query with many text fields, geometry data, or blobs, you
                      place an additional load on the database to fetch the
                      values from external tables, decompress them, and return
                      the results to the client. Network Cost Before the query
                      result is sent to the client, it must be serialized
                      according to the communication protocol supported by the
                      database. The more data needs to be serialized, the more
                      work is required from the CPU. After the bytes are
                      serialized, they are transmitted through TCP/IP. The more
                      segments you need to send, the higher the cost of
                      transmission, which ultimately affects network latency.
                      Returning all columns may require deserialization of large
                      columns, such as strings or blobs, that clients may never
                      use. Client Deserialization Once the client receives the
                      raw bytes, the client app must deserialize the data to
                      whatever language the client uses, adding to the overall
                      processing time. The more data is in the pipe the slower
                      this process. Unpredictability Using SELECT on the client
                      side even if you have a single field can introduce
                      unpredictability. Think of this example, you have a table
                      with one or two fields and your app does a SELECT ,
                      blazing fast two integer fields. However, later the admin
                      decided to add an XML field, JSON, blob and other fields
                      that are populated and used by other apps. While your code
                      did not change at all, it will suddenly slow down because
                      it is now picking up all the extra fields that your app
                      didn’t need to begin with. Code Grep Another advantage of
                      explicit SELECT is you can grep the codebase for in
                      columns that are in use columns, so in case if you want to
                      rename or drop a column. This makes database schema DDL
                      changes more approachable. Summary In conclusion, a SELECT
                      query involves many complex processes, so it’s best to
                      only select the fields you need to avoid unnecessary
                      overhead. Keep in mind that if your table has few columns
                      with simple data types, the overhead of a SELECT query
                      might be negligible. However, it’s generally good practice
                      to be selective about the columns you retrieve in your
                      queries. If you enjoyed this article check out my Backend
                      and Database courses, link in bio.
                  - url: >-
                      https://www.linkedin.com/feed/update/urn:li:activity:7208542528852172800
                    imageUrl: >-
                      https://media.licdn.com/dms/image/v2/D5622AQHvO47nFq1YeA/feedshare-shrink_2048_1536/feedshare-shrink_2048_1536/0/1718650466630?e=1739404800&v=beta&t=ZawT9WSSlE4Fbto7Le0B4a9nSqyN1n1lfURR9z3N_Fw
                    reactions:
                      - reactionType: LIKE
                        reactionCount: 324
                      - reactionType: EMPATHY
                        reactionCount: 41
                      - reactionType: INTEREST
                        reactionCount: 7
                      - reactionType: PRAISE
                        reactionCount: 6
                      - reactionType: APPRECIATION
                        reactionCount: 3
                    likesCount: 381
                    commentsCount: 11
                    type: Post
                    title: ''
                    text: |-
                      List of all courses in a single link (with coupons) 

                      The order is optional.

                      (pinned post)

                      https://lnkd.in/gqbKm7kz
                  - url: >-
                      https://www.linkedin.com/feed/update/urn:li:activity:7004607875545272320
                    imageUrl: >-
                      https://media.licdn.com/dms/image/sync/v2/C5627AQGJijX32gdo-g/articleshare-shrink_800/articleshare-shrink_800/0/1711200600470?e=1737043200&v=beta&t=9DWG4IsAAWdVPo8etmZ6lstGbqUfhTkginVahQD4_Qs
                    reactions:
                      - reactionType: LIKE
                        reactionCount: 2160
                      - reactionType: EMPATHY
                        reactionCount: 151
                      - reactionType: INTEREST
                        reactionCount: 139
                      - reactionType: PRAISE
                        reactionCount: 16
                      - reactionType: APPRECIATION
                        reactionCount: 11
                      - reactionType: MAYBE
                        reactionCount: 5
                    likesCount: 2482
                    commentsCount: 34
                    type: Post
                    title: How to Become a Good Backend Engineer (Fundamentals)
                    text: >-
                      How to Become a Good Backend Engineer


                      I have been a backend engineer for over 18 years and I
                      witnessed technologies come and go but one thing always
                      remain constant; The first principals the tech is built
                      on. 


                      I don’t really mean tools, frameworks or even languages.
                      Those evolve and change but the fundamental infrastructure
                      on which these tool are built rarely does.


                      For example knowing how to setup Apache or IIS is one
                      thing, understanding the commonalities and differences
                      between the two web servers is another.


                      In this article I explore some of the fundamentals of
                      backend engineering that are at the root of everything we
                      use. You may choose to have basic understanding of all
                      these fundamentals and become a jack-of-all-trade backend
                      engineer or go vertical in one at deeper level and become
                      expert in that area. There is no wrong or right, it all
                      depends on what moves you.


                      Read full article here

                      https://lnkd.in/gTbiygiQ

                      #engineering #softwaredevelopment #backendwebdevelopment
                  - url: >-
                      https://www.linkedin.com/feed/update/urn:li:activity:6968061048385912832
                    imageUrl: ''
                    reactions: null
                    likesCount: 0
                    commentsCount: 0
                    type: Post
                    title: 7 HTTPS configurations
                    text: >-
                      HTTPS is used to encrypt the communication between th
                      client and server. There are many configurations that
                      HTTPs can be in which affects latency and performance. In
                      this post I explore 7 of the configurations. 


                      1. HTTPS over TCP 1.2

                      Common with HTTP/1.1 and HTTP/2 protocols since those use
                      the TCP transport.  First client establishes a TCP
                      connection with three way handshake (SYN/SYN-ACK/ACK),
                      followed by TLS1.2 handshake which envolves the client
                      providing the server with a buffet of cipher suites
                      options and the key exchanges algorithms in a client hello
                      message, the server responding with the symmetric
                      algorithm and key exchange algorithm plus certificate. The
                      client then prepares private and public key exchange
                      parameters based on the agreed key exchange algorithm and
                      symmetric encryption. shares the public part with the
                      server, the server does the same and both finally have the
                      symmetric key. The client then uses the symmetric key to
                      encrypt the GET request, which the server decrypts with
                      the same key. Server processes the request, produces a
                      response, encrypts it with the key and sends it to the
                      client. 


                      2. HTTPS over TCP with TLS 1.3 

                      Common with HTTP/1.1 and HTTP/2, the server and the client
                      can support TLS 1.3 which allows for a shorter TLS
                      handshake. We still do the TCP 3 way handshake followed by
                      a client hello, in this the client assumes a key exchange
                      algorithm (Elliptic curve for e.g. , generates the
                      parameters and send it , no more buffet of options, the
                      options are limited to secure ciphers. The server receives
                      the key exchange parameters and immediately can generate
                      the symmetric key, it picks a cipher, sends the server
                      hello with certificate for authentication, with the chosen
                      cipher (say AES) and its parts of key exchange. the client
                      now can complete the key and starts sending the GET
                      request encrypted. Saving a whole round trip. 


                      3. HTTPS over TCP with TLS 1.3 and 0RTT

                      Same as 2 but the client uses a preshared key from a prior
                      session to immediately encrypt the communication. No TLS
                      round trip in this case thus 0RTT. Still we had to eat the
                      3 way handshake  for TCP. 


                      4&5. HTTPS over TCP fast open with TLS 1.3 /0RTT 

                      TCP fast open allows client to send data during the SYN if
                      a prior communication did happen with the server which
                      generated a cookie. The client sends the TFO (TCP Fast
                      Open ) cookie with SYN along with the data which can be
                      TLS client hello saving a whole round trip. (P.s never
                      seen this in the wild but I don’t see why they aren’t
                      possible. ) 


                      6&7. HTTPS over QUIC (HTTP/3) /0RTT 

                      We enter HTTP/3 where QUIC as a transport protocol gives
                      you both transport with single round trip encryption. And
                      because it was built from scratch the connection handshake
                      and encryption is done in one round trip. Followed by the
                      encrypted request. QUIC encryption is similar to TLS 1.3. 


                      Hope you enjoyed this post, learn more about fundamentals
                      of network engineering grab my udemy course
                      https://lnkd.in/gF_h7q56
      tags:
        - Posts
      description: Get all featured posts for a user by their URN.
  /api/v1/posts/all:
    get:
      summary: All Posts
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM
        - name: cursor
          in: query
          schema:
            type: string
        - name: start
          in: query
          schema:
            type: integer
          example: '0'
      responses:
        '200':
          description: All
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      cursor:
                        type: string
                      posts:
                        type: array
                        items:
                          type: object
                          properties:
                            text:
                              type: string
                            url:
                              type: string
                              format: uri
                            urn:
                              type: string
                              format: uri
                            author:
                              type: object
                              properties:
                                name:
                                  type: string
                                headline:
                                  type: string
                                urn:
                                  type: string
                                  format: uri
                                url:
                                  type: string
                                  format: uri
                                profilePictureURL:
                                  type: string
                                  format: uri
                            postedAt:
                              type: string
                            edited:
                              type: boolean
                            engagements:
                              type: object
                              properties:
                                totalReactions:
                                  type: integer
                                commentsCount:
                                  type: integer
                                repostsCount:
                                  type: integer
                                reactions:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      reactionType:
                                        type: string
                                      reactionCount:
                                        type: integer
                            mediaContent:
                              type: array
                              items:
                                type: object
                                properties:
                                  type:
                                    type: string
                                  url:
                                    type: string
                                    format: uri
                            resharedPostContent:
                              nullable: true
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                data:
                  cursor: >-
                    dXJuOmxpOmFjdGl2aXR5OjcyNjQxMjM0MjQxNTM3MTg3ODQtMTczMTkwMTk4NTE1OQ==
                  posts:
                    - text: |-
                        How zepto launched in Gorakhpur 😂

                        #zepto #launch #startup #india
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7284419957050789888
                      urn: urn:li:activity:7284419957050789888
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 7h
                      edited: false
                      engagements:
                        totalReactions: 435
                        commentsCount: 46
                        repostsCount: 2
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 297
                          - reactionType: ENTERTAINMENT
                            reactionCount: 130
                          - reactionType: PRAISE
                            reactionCount: 4
                          - reactionType: EMPATHY
                            reactionCount: 3
                          - reactionType: INTEREST
                            reactionCount: 1
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQG9s1fgenoUFQ/feedshare-shrink_2048_1536/B4DZRd1VflHEAo-/0/1736741054273?e=1739404800&v=beta&t=PpPMrRK0wAgDqHD_K7hVTEc7wzDddZdEp3HhjWR9ikg
                      resharedPostContent: null
                    - text: >-
                        When Gukesh won the Chess World Championship last month,
                        it was so heartwarming to see every Indian unite.


                        Irrespective of the state, caste, religion, everyone was
                        happy for him.


                        Even the tax on the cash prize was waived off following
                        the social media support.


                        Similarly, in August 2023, for the Chandrayaan-3 landing
                        on the moon, we had a screening in the Warsaw office in
                        one of our conference rooms.


                        It was beautiful.


                        In CES 2025, which is one of the largest events for tech
                        brands to show innovation, we had a presentation by
                        Noise, as the first ever Indian brand.


                        And this is important because this is how we show the
                        world that we are no less than anyone else!


                        And we are just getting started 🇮🇳


                        #CES2025 #india #innovation #softwareengineering
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7283349550667304960
                      urn: urn:li:activity:7283349550667304960
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 3d
                      edited: false
                      engagements:
                        totalReactions: 791
                        commentsCount: 48
                        repostsCount: 1
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 711
                          - reactionType: EMPATHY
                            reactionCount: 46
                          - reactionType: PRAISE
                            reactionCount: 26
                          - reactionType: APPRECIATION
                            reactionCount: 7
                          - reactionType: ENTERTAINMENT
                            reactionCount: 1
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQEB-0wp0naWjw/feedshare-shrink_2048_1536/B4DZROn0lzHYAo-/0/1736485850153?e=1739404800&v=beta&t=3UIKwhtzCEOpJDlORt_rYCBCCTKzky-qrQLXxIQTors
                      resharedPostContent: null
                    - text: >-
                        𝗣𝗹𝗲𝗮𝘀𝗲 𝗿𝗲𝗮𝗱 𝘁𝗵𝗶𝘀 𝘁𝗶𝗹𝗹 𝘁𝗵𝗲 𝗲𝗻𝗱.


                        A few months ago, I made a post to raise funds for
                        Prashant's father's cancer treatment.


                        Thanks to everyone who helped during that time.


                        The treatments included 20 chemotherapy, 32 radiation,
                        and 15 immunotherapy sessions.


                        Unfortunately, his father is no more with us and lost
                        his life to cancer.


                        Prashant, at this moment is in a lot of debt and I am
                        posting this to raise funds for him to ease the
                        financial burden and to also help his family rebuild
                        their lives.


                        He is the eldest and has to take care of his mother, his
                        son and other members.


                        And we are planning to raise 25 Lakhs. [We already
                        raised 1 Lakh as of posting]


                        You can donate using GPay / PayTM / PhonePe here:
                        9716753980


                        or on Ketto using: https://lnkd.in/ddwF7PXy


                        Any like, comment or repost would be highly appreciated.


                        If you are an influencer, please create a similar post
                        if it's possible for you 🙏 


                        Thank you.


                        #help #cfbr #india #softwareengineering
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7282618381541724160
                      urn: urn:li:activity:7282618381541724160
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 5d
                      edited: false
                      engagements:
                        totalReactions: 1089
                        commentsCount: 91
                        repostsCount: 23
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 836
                          - reactionType: APPRECIATION
                            reactionCount: 230
                          - reactionType: EMPATHY
                            reactionCount: 20
                          - reactionType: PRAISE
                            reactionCount: 2
                          - reactionType: ENTERTAINMENT
                            reactionCount: 1
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQH6hD5aRqnjCg/feedshare-shrink_2048_1536/B4DZREO0jaGkAo-/0/1736311524684?e=1739404800&v=beta&t=u7hpyTwFfQgKyIAuzuWfc1FO5AX2xnSFixJl2q4FXhQ
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQFyleB0WigDsQ/feedshare-shrink_1280/B4DZREO0krG0Ak-/0/1736311524649?e=1739404800&v=beta&t=RZjPV1_u7wqW3qPWUcdE_Sq0tYzGBe47fS5UjevP5jY
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQH00TeOxUNanA/feedshare-shrink_800/B4DZREO0jWHYAk-/0/1736311524186?e=1739404800&v=beta&t=Swol7-UffKbhvSQL5r7bHnpXW-eaw0uvDCfUlQL6vVI
                      resharedPostContent: null
                    - text: >-
                        𝗜𝗳 𝘆𝗼𝘂 𝘁𝗮𝗸𝗲 𝗰𝗮𝗿𝗲 𝗼𝗳 𝘆𝗼𝘂𝗿
                        𝗲𝗺𝗽𝗹𝗼𝘆𝗲𝗲𝘀, 𝘁𝗵𝗲𝘆 𝘄𝗶𝗹𝗹 𝘁𝗮𝗸𝗲 𝗰𝗮𝗿𝗲
                        𝗼𝗳 𝘁𝗵𝗲 𝗰𝗹𝗶𝗲𝗻𝘁𝘀 ❤️ 


                        Did you know that magicpin has launched “𝗛𝗠𝗣𝗩
                        𝗦𝗮𝗳𝗲 𝗗𝗲𝗹𝗶𝘃𝗲𝗿𝘆 𝗞𝗶𝘁𝘀” for their food
                        delivery riders?


                        Each of such actions goes a long way!


                        That being said, I'd also like to add that there is no
                        need to panic since this isn't a new virus and China's
                        foreign ministry spokesperson Mao Ning also said that
                        it's an usual annual occurrence and these infections
                        peak during the winter season.


                        So, nothing to be worried about.


                        Just take care of your hygiene, wash your hands properly
                        with soap, wear a mask in crowded places and see a
                        doctor if you have a fever! 


                        PS: Nhi, koi exams cancel nhi hone wale and WFH bhi nhi
                        milne wala :) 


                        #startup #empathy #india #magicpin #employeefirst
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7282299822156500992
                      urn: urn:li:activity:7282299822156500992
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 6d
                      edited: false
                      engagements:
                        totalReactions: 504
                        commentsCount: 55
                        repostsCount: 2
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 458
                          - reactionType: APPRECIATION
                            reactionCount: 23
                          - reactionType: EMPATHY
                            reactionCount: 15
                          - reactionType: PRAISE
                            reactionCount: 6
                          - reactionType: INTEREST
                            reactionCount: 2
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQEvA576OGyEhg/feedshare-shrink_1280/B4DZQ_s71EHcAs-/0/1736235575091?e=1739404800&v=beta&t=B2mQ9flbe8vBt3Qm1hSBreXc1i917yEHZXLXagx4xqM
                      resharedPostContent: null
                    - text: >-
                        When I was trying to get rid of the gaming addiction, I
                        used to listen to "Not Afraid" by Eminem on repeat.


                        It helped me a lot during that time to keep under
                        control.


                        I was listening to it yesterday after such a long time
                        and couldn't help but just look back in time and wonder
                        how different life would have been if I hadn't quit
                        gaming.


                        I am sharing some lyrics here, in the hope that it helps
                        someone take the initial steps towards whatever stops
                        them.


                        "And I just can't keep living this way

                        So starting today

                        I'm breaking out of this cage

                        I'm standing up, I'ma face my demons

                        I'm manning up, I'ma hold my ground

                        I've had enough, now I'm so fed up

                        Time to put my life back together right now."


                        Happy New Year ❤️ 


                        #NewYear #SoftwareEngineering
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7280105671541374976
                      urn: urn:li:activity:7280105671541374976
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 1w
                      edited: false
                      engagements:
                        totalReactions: 1023
                        commentsCount: 87
                        repostsCount: 2
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 882
                          - reactionType: EMPATHY
                            reactionCount: 105
                          - reactionType: APPRECIATION
                            reactionCount: 21
                          - reactionType: PRAISE
                            reactionCount: 11
                          - reactionType: INTEREST
                            reactionCount: 4
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQHYuzy_0D6rlQ/feedshare-shrink_1280/B4DZQghhyTHwAk-/0/1735712448422?e=1739404800&v=beta&t=j1Cxx70CLYzSmOIsNAzBQjWpXH-y8XLNT08v31hgEDA
                      resharedPostContent: null
                    - text: >-
                        Today morning was special.


                        I thought I’d have my regular croissant and coffee for
                        breakfast from Zepto.


                        When the order came, I had a surprise box! 


                        It had some gifts and the cover says it’s manifesting a
                        fantastic 2025 for me. Well, thanks :))


                        I know I am grownup but I still look forward to such
                        surprises hahah! 


                        Thanks Zepto ❤️


                        #zepto #india #newyear #celebration
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7279027850370838528
                      urn: urn:li:activity:7279027850370838528
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 2w
                      edited: false
                      engagements:
                        totalReactions: 962
                        commentsCount: 56
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 890
                          - reactionType: EMPATHY
                            reactionCount: 59
                          - reactionType: PRAISE
                            reactionCount: 10
                          - reactionType: APPRECIATION
                            reactionCount: 3
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQEqGEx16Czl-w/feedshare-shrink_2048_1536/B4DZQRNO.DHUAo-/0/1735455476117?e=1739404800&v=beta&t=-ydzRsOlTsoi_G1gwM4lJsIbUXWcvy0zco2n3KGhFNc
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQGl5RqiEPCz-w/feedshare-shrink_1280/B4DZQRNO9THUAk-/0/1735455473993?e=1739404800&v=beta&t=lRG6Zqv8bI-sjoRcp7DZrvGN5PuKxrMiYwvMbe0aDo8
                      resharedPostContent: null
                    - text: '#softwareengineering #ai'
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7278619884228403200
                      urn: urn:li:activity:7278619884228403200
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 2w
                      edited: false
                      engagements:
                        totalReactions: 2788
                        commentsCount: 41
                        repostsCount: 39
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 2329
                          - reactionType: ENTERTAINMENT
                            reactionCount: 314
                          - reactionType: APPRECIATION
                            reactionCount: 78
                          - reactionType: EMPATHY
                            reactionCount: 41
                          - reactionType: INTEREST
                            reactionCount: 18
                          - reactionType: PRAISE
                            reactionCount: 8
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQGi3Hil2oXxUA/feedshare-shrink_1280/B4DZQLaNRnHMAk-/0/1735358209311?e=1739404800&v=beta&t=Sg_Gobg5N9-2hEP2swsly06wHScH5dVtX2pFIgY8-4w
                      resharedPostContent: null
                    - text: >-
                        We are hiring for 2025 interns for Waymo.


                        The positions are located out of the Google Warsaw
                        office.


                        1. Backend: https://lnkd.in/diX6CAVQ


                        2. Mobile: https://lnkd.in/d5nk95XP


                        #SoftwareEngineering #LifeAtGoogle #hiring #internship
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7277561336027398146
                      urn: urn:li:activity:7277561336027398146
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 2w
                      edited: false
                      engagements:
                        totalReactions: 1055
                        commentsCount: 61
                        repostsCount: 10
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 1006
                          - reactionType: EMPATHY
                            reactionCount: 23
                          - reactionType: APPRECIATION
                            reactionCount: 21
                          - reactionType: PRAISE
                            reactionCount: 3
                          - reactionType: ENTERTAINMENT
                            reactionCount: 1
                          - reactionType: INTEREST
                            reactionCount: 1
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQFXh5aQdRfQEQ/feedshare-shrink_2048_1536/B4DZP8XXQaHYAo-/0/1735105831898?e=1739404800&v=beta&t=LrZhiRwEP5zXCFrBxr2blLUFTPZ04-AE0UE3rbd3zHw
                      resharedPostContent: null
                    - text: |-
                        Ed Sheeran x Calum Scott! Have a good weekend :)

                        #concert
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7276540078053605377
                      urn: urn:li:activity:7276540078053605377
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 3w
                      edited: false
                      engagements:
                        totalReactions: 450
                        commentsCount: 33
                        repostsCount: 2
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 380
                          - reactionType: EMPATHY
                            reactionCount: 63
                          - reactionType: APPRECIATION
                            reactionCount: 5
                          - reactionType: PRAISE
                            reactionCount: 2
                      mediaContent:
                        - type: video
                          url: >-
                            https://dms.licdn.com/playlist/vid/v2/D5605AQGTpKnOuoaELg/mp4-720p-30fp-crf28/B56ZPt2hX.HoBg-/0/1734862342273?e=1737374400&v=beta&t=unIG_wLxKmYF-DJd3DoNh-e0pmBPwQC-1ZDjoO271oc
                      resharedPostContent: null
                    - text: |-
                        There'll always be someone who cannot see your worth. 

                        Don't let that person be you.

                         - Mel Robbins
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7274636435196903425
                      urn: urn:li:activity:7274636435196903425
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 3w
                      edited: false
                      engagements:
                        totalReactions: 955
                        commentsCount: 68
                        repostsCount: 2
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 789
                          - reactionType: EMPATHY
                            reactionCount: 121
                          - reactionType: APPRECIATION
                            reactionCount: 31
                          - reactionType: INTEREST
                            reactionCount: 9
                          - reactionType: PRAISE
                            reactionCount: 5
                      mediaContent: null
                      resharedPostContent: null
                    - text: >-
                        𝐓𝐨𝐩 𝐫𝐮𝐥𝐞 𝐟𝐨𝐫 𝐥𝐢𝐟𝐞: Every master was a
                        beginner who made a lot of mistakes.


                        Every mistake is a learning opportunity.


                        If we learn from our mistakes, it's called experience
                        and it never goes to vain ;)


                        And not all heroes mine coins—some just learn from their
                        mistakes like Rahul.


                        Keep inspiring smarter crypto moves! 


                        #growth #softwareengineering #ad #india
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7275434644001411072
                      urn: urn:li:activity:7275434644001411072
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 3w
                      edited: false
                      engagements:
                        totalReactions: 229
                        commentsCount: 39
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 211
                          - reactionType: EMPATHY
                            reactionCount: 11
                          - reactionType: APPRECIATION
                            reactionCount: 5
                          - reactionType: PRAISE
                            reactionCount: 2
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQF0uj4GD6MPTg/feedshare-shrink_1280/B4DZPeJHmMGoAk-/0/1734598754739?e=1739404800&v=beta&t=hjKRUOB2PYUlAqb7V7VqkqbDVMeHtoWq0-K58gGalBY
                      resharedPostContent: null
                    - text: >-
                        If you are interviewing with the big tech companies and
                        you performed badly in one of the rounds, it doesn't
                        mean that you'll be rejected straightaway.


                        All the interviews done as part of the onsite interviews
                        (which is usually 4-5 rounds) are looked at as a whole.


                        If they had to reject you for the bad round, they'd do
                        it immediately after the bad round itself but they take
                        the whole set of interviews.


                        I personally know a few people who were rated as No Hire
                        but were eventually hired because they absolutely
                        crushed the other rounds.


                        Good luck! :)


                        #softwareengineering #interviews #faang #offcampus
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7270652344009146368
                      urn: urn:li:activity:7270652344009146368
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 1mo
                      edited: false
                      engagements:
                        totalReactions: 528
                        commentsCount: 55
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 492
                          - reactionType: EMPATHY
                            reactionCount: 17
                          - reactionType: APPRECIATION
                            reactionCount: 9
                          - reactionType: INTEREST
                            reactionCount: 8
                          - reactionType: PRAISE
                            reactionCount: 2
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D5622AQEHxUqNjdkenA/feedshare-shrink_2048_1536/feedshare-shrink_2048_1536/0/1733458599679?e=1739404800&v=beta&t=p_1hkKLVYtUWJIl7lB9-pvKVMRL8hFPusn6ssmF7B8s
                      resharedPostContent: null
                    - text: >-
                        This tip has helped me land offers from the biggest of
                        the tech companies in the world.


                        During the interview, conduct yourself in such a way
                        that after the interview if the interviewer asks
                        themselves ,"Do I see myself working with this person?",
                        the answer should be a definite yes.


                        For sure, you need to do well in the interview but if
                        you leave an impression that you are a good person to
                        work with, it'll make a huge difference.


                        And how do you do it?


                        - Have a positive attitude throughout the interview. No
                        sad face.

                        - Greet the interviewer in the start of the interview
                        and let them know how excited you are to be interviewing
                        for the role.

                        - Ask clarifying questions.

                        - Communicate thoughts clearly.

                        - Take appropriate pauses for thinking. Not all silence
                        is bad.

                        - Accept feedback gracefully and modify solution/answer
                        as needed.

                        - Towards the end of the interview, ask any questions
                        you have about the company.

                        - Before leaving the meeting, thank the interviewer for
                        their time, they are human as well, after all.


                        And most importantly, don't forget that the interviewer
                        is there to help you not to fail you. 


                        They were in your position too a few years ago.


                        So, be positive, be confident and follow the points
                        mentioned above and I can assure you that you'll come
                        out successful in most of the interviews.


                        Lfg :)


                        𝐏𝐒: Do you have any such tips that you'd like to
                        share? Let me know in the comments!


                        #softwareengineering #interviews #hiring #job #placement
                        #offcampus
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7272819960492498944
                      urn: urn:li:activity:7272819960492498944
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 1mo
                      edited: false
                      engagements:
                        totalReactions: 1109
                        commentsCount: 107
                        repostsCount: 1
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 1015
                          - reactionType: EMPATHY
                            reactionCount: 57
                          - reactionType: INTEREST
                            reactionCount: 27
                          - reactionType: APPRECIATION
                            reactionCount: 6
                          - reactionType: PRAISE
                            reactionCount: 4
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQFQhH0nVfDqjw/feedshare-shrink_1280/B4DZO18d1VHMAk-/0/1733924357315?e=1739404800&v=beta&t=EiHjkEfJRGejFnQRkmUJlf2W7niaH1jw8Pt4CiDkLfI
                      resharedPostContent: null
                    - text: >-
                        This post is for recruiters who hire Software Engineers
                        internationally from India.


                        Please help me reach them :)


                        I have noticed that most of the hires that go outside
                        the country are from FAANG and similar companies that
                        have global presence and are very well known.


                        And it makes complete sense to do so.


                        However, there are also a lot of startups and other tech
                        companies in India, which have equally competitive
                        process and have very skilled employees.


                        However, these companies are not known outside India.


                        So, when folks from these companies apply
                        internationally, please don't brush them off. 


                        I am mentioning a list of such companies. Please do
                        consider them when hiring from India! Save this post, if
                        possible :)


                        The list is in no particular order.


                        Myntra

                        Flipkart

                        Cred

                        Zomato

                        Swiggy

                        Zepto

                        Blinkit

                        RazorPay

                        CureFit

                        Udaan

                        PayU

                        MakeMyTrip

                        Unacademy

                        Paytm

                        1mg

                        Groww

                        Ola

                        Boat


                        Please do like, comment or repost to reach more people!


                        #softwareengineering #hiring #jobs #india
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7266659809872027648
                      urn: urn:li:activity:7266659809872027648
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 1mo
                      edited: true
                      engagements:
                        totalReactions: 754
                        commentsCount: 81
                        repostsCount: 6
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 689
                          - reactionType: APPRECIATION
                            reactionCount: 40
                          - reactionType: EMPATHY
                            reactionCount: 16
                          - reactionType: INTEREST
                            reactionCount: 4
                          - reactionType: PRAISE
                            reactionCount: 3
                          - reactionType: ENTERTAINMENT
                            reactionCount: 2
                      mediaContent: null
                      resharedPostContent: null
                    - text: >-
                        Most students don't know that, in the long term, it's
                        good for you if you are not able to join a FAANG company
                        straight out of college.


                        Let me explain.


                        1. All companies have a salary range for each level. For
                        example, salary range for some level 'L' can be between
                        X lpa and (X + 10) lpa.

                        2. The salary difference between lower and higher
                        bracket at higher levels is very high.

                        3. When you get promoted internally, you are usually
                        given the lower bracket salary of the next level but if
                        you were hired externally, you can negotiate and get
                        yourself the higher bracket salary.


                        So, if you have just graduated or yet to graduate and
                        don't have a FAANG offer, don't worry :)


                        There's always an opportunity for higher pay later!


                        All the best :)


                        #softwareengineering #placements #internship #faang
                        #offcampus
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7267752523631861760
                      urn: urn:li:activity:7267752523631861760
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 1mo
                      edited: false
                      engagements:
                        totalReactions: 1209
                        commentsCount: 98
                        repostsCount: 5
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 1125
                          - reactionType: EMPATHY
                            reactionCount: 54
                          - reactionType: INTEREST
                            reactionCount: 23
                          - reactionType: APPRECIATION
                            reactionCount: 5
                          - reactionType: PRAISE
                            reactionCount: 2
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D5622AQE4c3pEsorCdA/feedshare-shrink_1280/feedshare-shrink_1280/0/1732767228985?e=1739404800&v=beta&t=7nVRF99yauZ3J8xZn5Ogf7v0bLTGMPdevz0HCHtBu1Q
                      resharedPostContent: null
                    - text: "How can someone be so cruel? Let's not wait for another such case to raise our voices.\n\nGovernment of India\_I believe both, the judge and her client, must be given the strictest punishment possible. \n\n#india\_#suicide"
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7272243748661583872
                      urn: urn:li:activity:7272243748661583872
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 1mo
                      edited: false
                      engagements:
                        totalReactions: 2459
                        commentsCount: 108
                        repostsCount: 46
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 1812
                          - reactionType: APPRECIATION
                            reactionCount: 612
                          - reactionType: INTEREST
                            reactionCount: 22
                          - reactionType: EMPATHY
                            reactionCount: 9
                          - reactionType: PRAISE
                            reactionCount: 4
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQFuA7eePZ_5vw/feedshare-shrink_800/B4DZOwzJkLG0Ao-/0/1733838019353?e=1739404800&v=beta&t=nZo2CgM_v5v9-CehIplTuEpG97WUVcWHlHmJCeLWaGY
                      resharedPostContent: null
                    - text: >-
                        On Thursday, one of my juniors from the 2026 batch got
                        an internship at a startup that pays 70k per month.


                        And if they convert full time, it'll be 18 lpa.


                        What's most interesting is that this was his first
                        interview ever.


                        And this is the reality of the undergraduate market for
                        internship and new grad roles.


                        Few open roles and much more applications.


                        If you are someone in that boat, you'll need to put
                        energy not just into your preparation but also in
                        getting those interviews.


                        Set aside some time every week to connect with folks
                        from different companies, not just the FAANG ones.


                        Network with them so that when needed, they will be able
                        to help you to at least get an interview.


                        And these small efforts compound.


                        Do not be afraid to start your career from a small
                        company.


                        You'll have plenty of opportunities to switch later.


                        One offer leads to another and then another.


                        We got this! Good luck 🫶


                        #softwareengineering #offcampus #interviews
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7271020456625733635
                      urn: urn:li:activity:7271020456625733635
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 1mo
                      edited: false
                      engagements:
                        totalReactions: 1691
                        commentsCount: 116
                        repostsCount: 5
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 1583
                          - reactionType: EMPATHY
                            reactionCount: 60
                          - reactionType: INTEREST
                            reactionCount: 23
                          - reactionType: PRAISE
                            reactionCount: 15
                          - reactionType: APPRECIATION
                            reactionCount: 10
                      mediaContent: null
                      resharedPostContent: null
                    - text: >-
                        Don't ask anyone what their salary / CTC is.


                        When someone gets placed, the first thing we usually ask
                        is "What's the CTC?" 


                        I've stopped asking now.


                        I've been talking to students on the weekends, mostly
                        new grads and believe me, the market is very bad.


                        So many talented people who haven't given a single
                        interview yet because they never got one. 


                        And so when someone gets an offer, irrespective of how
                        high/low the company pays, I just congratulate them
                        without asking the CTC.


                        Because I know that the efforts that have gone behind
                        that offer are much higher than their CTC.


                        And also if it's low, it can hurt that person and make
                        them feel bad to even say what their CTC is.


                        Because they know they are being judged.


                        There are better questions to be asked.


                        - What did the entire process look like?

                        - What tips would you like to share from your experience
                        of clearing the interviews?

                        - Are there any specific topics which are more important
                        than the others?

                        - Do you know which team you'd be joining?

                        - Do you know the tech stack of the team?

                        - If it's off-campus, can you share who your recruiter
                        was? 

                        - Did the recruiting team explain what the onboarding
                        process would look like?

                        - What's the most thrilling part about the company that
                        you look forward to after joining?


                        These questions come across as genuine and make the
                        candidate feel like you really appreciate their success
                        and efforts.


                        I would also recommend the same to you. 


                        When someone gets an offer, don't ask their CTC. 


                        Congratulate them because an offer is an offer, no
                        matter how high/low the CTC is.


                        #softwareengineering #salary #newgrad #internship
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7264123424153718784
                      urn: urn:li:activity:7264123424153718784
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 1mo
                      edited: false
                      engagements:
                        totalReactions: 4795
                        commentsCount: 182
                        repostsCount: 41
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 4207
                          - reactionType: EMPATHY
                            reactionCount: 284
                          - reactionType: APPRECIATION
                            reactionCount: 241
                          - reactionType: PRAISE
                            reactionCount: 32
                          - reactionType: INTEREST
                            reactionCount: 28
                          - reactionType: ENTERTAINMENT
                            reactionCount: 3
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQEcM-Ip6x22mw/feedshare-shrink_2048_1536/feedshare-shrink_2048_1536/0/1731901983772?e=1739404800&v=beta&t=uvJRicb3-TUyrdylfastlWgIMTHEXB5Ct5OPiCmBtsk
                      resharedPostContent: null
                    - text: >-
                        These are two of the best pieces of advice I got from a
                        43 year old colleague.


                        𝐓𝐢𝐩 𝟏: 𝐀𝐬 𝐰𝐞 𝐠𝐫𝐨𝐰 𝐢𝐧 𝐨𝐮𝐫 𝐜𝐚𝐫𝐞𝐞𝐫,
                        𝐰𝐞 𝐬𝐡𝐨𝐮𝐥𝐝 𝐞𝐯𝐞𝐧𝐭𝐮𝐚𝐥𝐥𝐲 𝐚𝐢𝐦 𝐭𝐨 𝐛𝐞
                        𝐚 𝐓-𝐬𝐡𝐚𝐩𝐞𝐝 𝐞𝐧𝐠𝐢𝐧𝐞𝐞𝐫.


                        What this means is that you should have a deep expertise
                        in a particular area (represented by the vertical bar in
                        T) and should have enough understanding of the other
                        domains so that you understand the whole picture.


                        This makes that person a very special engineer.


                        The domain for expertise could be front-end,
                        backend-end, mobile development, database, AI, Machine
                        Learning, Big Data or even a deep understanding of a
                        particular language like Java.


                        If your domain is AI and Machine Learning, I recommend
                        Simplilearn. Simplilearn has a great collection of
                        resources for AI and ML.


                        I suggest exploring the program details and the syllabus
                        to understand what you'll be learning:
                        https://bit.ly/AIML-Naveen


                        I recommend them because these value-packed courses are
                        in collaboration with world renowned universities and
                        institutions and have also been recommended by Forbes!


                        And Simplilearn's hands-on, real-world projects equip
                        you with the knowledge and expertise to excel in your
                        chosen field by applying cutting-edge technologies.


                        It ensures that you gain valuable experience and
                        prepares you for real-world challenges and keeps you
                        ahead in today's competitive job market.


                        If you have any questions, feel free to ping me :) 


                        𝐓𝐢𝐩 𝟐: 𝐋𝐨𝐨𝐤 𝐚𝐭 𝐞𝐯𝐞𝐫𝐲 𝐜𝐡𝐚𝐥𝐥𝐞𝐧𝐠𝐞
                        𝐚𝐬 𝐚𝐧 𝐨𝐩𝐩𝐨𝐫𝐭𝐮𝐧𝐢𝐭𝐲 𝐭𝐨 𝐥𝐞𝐚𝐫𝐧
                        𝐬𝐨𝐦𝐞𝐭𝐡𝐢𝐧𝐠 𝐧𝐞𝐰.


                        For example, if you have to debug something, instead of
                        being frustrated that you have to debug a system to
                        resolve a bug, think of it as an opportunity to learn
                        more about the system.


                        It has helped me a lot personally and I've realized that
                        it's applicable not just for engineering challenges but
                        life situations too!I hope it helps you too :) 


                        All the best!


                        𝐏𝐒: What advice have you got from your seniors? :)


                        #softwareengineering #ai #simplilearn #partnership #job
                        #genAI #InvestInYourself
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7273182348366528512
                      urn: urn:li:activity:7273182348366528512
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 1mo
                      edited: false
                      engagements:
                        totalReactions: 307
                        commentsCount: 50
                        repostsCount: 1
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 275
                          - reactionType: EMPATHY
                            reactionCount: 16
                          - reactionType: INTEREST
                            reactionCount: 11
                          - reactionType: APPRECIATION
                            reactionCount: 4
                          - reactionType: PRAISE
                            reactionCount: 1
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4D22AQEaMiiflz78pw/feedshare-shrink_2048_1536/B4DZO1ukQyHYAo-/0/1733920707818?e=1739404800&v=beta&t=gcUGbBXw1D0nR6moDSl5YRbFT0m0piWr2SFtvLqvpE8
                      resharedPostContent: null
                    - text: >-
                        Never imagined this! The new era of marketing is here :)
                        Swiggy


                        #marketing #india #latent
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7266304049526833153
                      urn: urn:li:activity:7266304049526833153
                      author:
                        name: Naveen Rawat
                        headline: SWE @ Google | 123k+ @ LinkedIn
                        urn: urn:li:member:845693009
                        url: https://www.linkedin.com/in/naveen-rawat-100
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGB44zd7uZlYw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1695908009708?e=1742428800&v=beta&t=KIB0u_QLwdQQ3eIqXoGGQ-vvdZsnmZNZaxdCQpbAWR4
                      postedAt: 1mo
                      edited: true
                      engagements:
                        totalReactions: 1016
                        commentsCount: 79
                        repostsCount: 4
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 798
                          - reactionType: ENTERTAINMENT
                            reactionCount: 180
                          - reactionType: EMPATHY
                            reactionCount: 17
                          - reactionType: INTEREST
                            reactionCount: 14
                          - reactionType: PRAISE
                            reactionCount: 5
                          - reactionType: APPRECIATION
                            reactionCount: 2
                      mediaContent:
                        - type: video
                          url: >-
                            https://dms.licdn.com/playlist/vid/v2/D4D05AQEcmDmP9YPraQ/mp4-640p-30fp-crf28/mp4-640p-30fp-crf28/0/1732421881209?e=1737374400&v=beta&t=uXBMhz6xtYW7ROwzwhXPBMtp2DPYEkrDXY0yZa4nETs
                      resharedPostContent: null
      tags:
        - Posts
      description: >-
        Get all posts for a user by their URN. The first request returns 100
        posts; subsequent pages return 20 posts each.
  /api/v1/posts/info:
    get:
      summary: Post Info
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: integer
          example: '7430337505431957506'
      responses:
        '200':
          description: Info
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      post:
                        type: object
                        properties:
                          text:
                            type: string
                          textAttributes:
                            type: array
                            items:
                              type: object
                              properties:
                                length:
                                  type: integer
                                text:
                                  type: string
                                type:
                                  type: string
                                urn:
                                  type: string
                                url:
                                  type: string
                                  format: uri
                          url:
                            type: string
                            format: uri
                          urn:
                            type: string
                            format: uri
                          author:
                            type: object
                            properties:
                              name:
                                type: string
                              headline:
                                type: string
                              urn:
                                type: string
                              id:
                                type: string
                                format: uri
                              url:
                                type: string
                                format: uri
                              profilePictureURL:
                                type: string
                                format: uri
                              type:
                                type: string
                          postedAt:
                            type: object
                            properties:
                              timestamp:
                                type: integer
                              fullDate:
                                type: string
                                format: style
                              relativeDay:
                                type: string
                          edited:
                            type: boolean
                          engagements:
                            type: object
                            properties:
                              totalReactions:
                                type: integer
                              commentsCount:
                                type: integer
                              repostsCount:
                                type: integer
                              reactions:
                                type: array
                                items:
                                  type: object
                                  properties:
                                    reactionType:
                                      type: string
                                    reactionCount:
                                      type: integer
                          mediaContent:
                            nullable: true
                          resharedPostContent:
                            type: object
                            properties:
                              text:
                                type: string
                              textAttributes:
                                type: array
                                items:
                                  type: object
                                  properties:
                                    length:
                                      type: integer
                                    text:
                                      type: string
                                    type:
                                      type: string
                                    urn:
                                      type: string
                                      format: utc-millisec
                                    url:
                                      type: string
                                      format: uri
                              url:
                                type: string
                                format: uri
                              urn:
                                type: string
                                format: uri
                              author:
                                type: object
                                properties:
                                  name:
                                    type: string
                                  headline:
                                    type: string
                                  urn:
                                    type: string
                                  id:
                                    type: string
                                    format: uri
                                  url:
                                    type: string
                                    format: uri
                                  profilePictureURL:
                                    type: string
                                    format: uri
                                  type:
                                    type: string
                              postedAt:
                                type: object
                                properties:
                                  timestamp:
                                    type: integer
                                  fullDate:
                                    type: string
                                    format: style
                                  relativeDay:
                                    type: string
                              edited:
                                type: boolean
                              engagements:
                                nullable: true
                              mediaContent:
                                type: array
                                items:
                                  type: object
                                  properties:
                                    type:
                                      type: string
                                    text:
                                      type: string
                              resharedPostContent:
                                nullable: true
                      comments:
                        type: array
                        items:
                          type: object
                          properties:
                            author:
                              type: object
                              properties:
                                name:
                                  type: string
                                headline:
                                  type: string
                                urn:
                                  type: string
                                id:
                                  type: string
                                  format: uri
                                url:
                                  type: string
                                  format: uri
                                profilePictureURL:
                                  type: string
                                  format: uri
                            comment:
                              type: string
                            createdAt:
                              type: integer
                            permalink:
                              type: string
                              format: uri
                            edited:
                              type: boolean
                            engagements:
                              type: object
                              properties:
                                totalReactions:
                                  type: integer
                                commentsCount:
                                  type: integer
                                repostsCount:
                                  type: integer
                                reactions:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      reactionType:
                                        type: string
                                      reactionCount:
                                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  post:
                    text: >-
                      Even though I had over 80 applicants for the leadership
                      role on my team, Andreas Wullrich was the number one
                      choice to partner with me to scale for impact for
                      Microsoft.  I’m excited to bring great success to our
                      customers who have partnered with us in Euorope and the
                      Middle East.  Let’s go!!!
                    textAttributes:
                      - length: 16
                        text: Andreas Wullrich
                        type: profileMention
                        urn: ACoAAAFJa9cB-AzxaFxrvdqTB6jSXjRycvVT7zI
                        url: >-
                          https://www.linkedin.com/in/ACoAAAFJa9cB-AzxaFxrvdqTB6jSXjRycvVT7zI
                      - length: 9
                        text: Microsoft
                        type: companyMention
                        urn: '1035'
                        url: https://www.linkedin.com/company/microsoft/
                    url: >-
                      https://www.linkedin.com/feed/update/urn:li:activity:7430337505431957506
                    urn: urn:li:activity:7430337505431957506
                    author:
                      name: Carol S. Scott
                      headline: >-
                        Global AI Growth Leader @ Microsoft | Award-Winning AI
                        Speaker | Cultivating Courageous Leadership in an
                        AI-First World | AWS + Deloitte | London | EMEA
                      urn: ACoAAABndxkB6Xdp0bFXD5zOt9Oa28yw7OaP1Yw
                      id: urn:li:member:6780697
                      url: https://www.linkedin.com/in/carolsscott
                      profilePictureURL: >-
                        https://media.licdn.com/dms/image/v2/D4E03AQH1E3FT9X6HXQ/profile-displayphoto-shrink_800_800/B4EZd.lzliHYAg-/0/1750175530421?e=1773878400&v=beta&t=PZttFrL2HIrPL7ERAMgrGOBKJqrN1O2luk8fZfA7u3c
                      type: PERSON
                    postedAt:
                      timestamp: 1771530510290
                      fullDate: 2026-02-19 19:48:30.00 +0000 UTC
                      relativeDay: 1w
                    edited: false
                    engagements:
                      totalReactions: 20
                      commentsCount: 2
                      repostsCount: 0
                      reactions:
                        - reactionType: LIKE
                          reactionCount: 11
                        - reactionType: PRAISE
                          reactionCount: 9
                    mediaContent: null
                    resharedPostContent:
                      text: >-
                        After 5.5 years away, I’m excited to have boomeranged
                        back to Microsoft and it truly feels like coming home!


                        This week I joined as a CSAM Manager, focusing on
                        supporting customers across Northern Europe by
                        partnering closely to realize value at scale, empowering
                        high‑performing teams, and turning strategy into
                        meaningful outcomes with AI as an increasingly important
                        (and practical) part of that journey.


                        A big thanks to Mattias Ageheim for the referral and to
                        Carol S. Scott for a great and professional process.


                        Grateful for the warm welcome and energized by what’s
                        ahead. If you’re curious about my new role, customer
                        success, or what’s changed (and what hasn’t) at
                        Microsoft I’m more than happy to connect and chat.
                      textAttributes:
                        - length: 9
                          text: Microsoft
                          type: companyMention
                          urn: '1035'
                          url: https://www.linkedin.com/company/microsoft/
                        - length: 15
                          text: Mattias Ageheim
                          type: profileMention
                          urn: ACoAAAAFhnQBuCVcSSvnJMQfGjw5zyGKPPiaYz0
                          url: >-
                            https://www.linkedin.com/in/ACoAAAAFhnQBuCVcSSvnJMQfGjw5zyGKPPiaYz0
                        - length: 14
                          text: Carol S. Scott
                          type: profileMention
                          urn: ACoAAABndxkB6Xdp0bFXD5zOt9Oa28yw7OaP1Yw
                          url: >-
                            https://www.linkedin.com/in/ACoAAABndxkB6Xdp0bFXD5zOt9Oa28yw7OaP1Yw
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7430330172223971328
                      urn: urn:li:activity:7430330172223971328
                      author:
                        name: Andreas Wullrich
                        headline: >-
                          Leading Professional Services Growth with focus on
                          Customer Success in Cloud and SaaS environment |
                          ex-COO | ex-Workday | Microsoft-boomeranger
                        urn: ACoAAAFJa9cB-AzxaFxrvdqTB6jSXjRycvVT7zI
                        id: urn:li:member:21588951
                        url: https://www.linkedin.com/in/andreaswullrich
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGCn4WxpQKDaw/profile-displayphoto-shrink_800_800/B4DZagf9tyHQAc-/0/1746449456465?e=1773878400&v=beta&t=w9NQgys6NP1VrxWpEvuu6kbo8BmbtZpokJhC2WQyYwo
                        type: PERSON
                      postedAt:
                        timestamp: 1771528761917
                        fullDate: 2026-02-19 19:19:21.00 +0000 UTC
                        relativeDay: 1w
                      edited: false
                      engagements: null
                      mediaContent:
                        - type: celebration
                          text: Starting a New Position
                      resharedPostContent: null
                  comments:
                    - author:
                        name: Francesca Condoluci
                        headline: >-
                          Supervisor Customer Care EMEA/UK SMB @ PayPal | Global
                          Customer Care Expert, Behavioral Coach and Yoga
                          Instructor
                        urn: ACoAABsOG5UBujSxjQsbtmHpPUdXXKcSQcgYo6w
                        id: urn:li:member:453909397
                        url: >-
                          https://www.linkedin.com/in/francesca-condoluci-07101b108
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGhCLL8Qi2SvQ/profile-displayphoto-shrink_800_800/B4EZS3Ww2DHcAc-/0/1738242986124?e=1773878400&v=beta&t=DUAcmlectWOdqfxTVdaApLhvAfHXB8aMky2_8gtspf8
                      comment: >-
                        Wishing you and your team all the success! You truly
                        inspire others to be their best selves, Carol!
                      createdAt: 1771579108466
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:7430337504530120704?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A7430337504530120704%2C7430541340951691265%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287430541340951691265%2Curn%3Ali%3AugcPost%3A7430337504530120704%29
                      edited: false
                      engagements:
                        totalReactions: 1
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 1
                    - author:
                        name: Andreas Wullrich
                        headline: >-
                          Leading Professional Services Growth with focus on
                          Customer Success in Cloud and SaaS environment |
                          ex-COO | ex-Workday | Microsoft-boomeranger
                        urn: ACoAAAFJa9cB-AzxaFxrvdqTB6jSXjRycvVT7zI
                        id: urn:li:member:21588951
                        url: https://www.linkedin.com/in/andreaswullrich
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGCn4WxpQKDaw/profile-displayphoto-shrink_800_800/B4DZagf9tyHQAc-/0/1746449456465?e=1773878400&v=beta&t=w9NQgys6NP1VrxWpEvuu6kbo8BmbtZpokJhC2WQyYwo
                      comment: >-
                        Thanks, Carol S. Scott for the warm welcoming! You made
                        it super-easy to accept and take the opportunity to be
                        working together with the team and partnering with the
                        most exciting customers and partners in EMEA. 
                      createdAt: 1771875845092
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:7430337504530120704?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A7430337504530120704%2C7431785944569200641%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287431785944569200641%2Curn%3Ali%3AugcPost%3A7430337504530120704%29
                      edited: false
                      engagements:
                        totalReactions: 0
                        commentsCount: 0
                        repostsCount: 0
                        reactions: null
      tags:
        - Posts
      description: Get detailed information for a post by its URN.
  /api/v1/posts/comments:
    get:
      summary: Post's Comments
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: integer
          example: '6860588340517838849'
        - name: start
          in: query
          schema:
            type: integer
          example: '0'
        - name: count
          in: query
          schema:
            type: integer
          example: '10'
        - name: cursor
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Comments
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      comments:
                        type: array
                        items:
                          type: object
                          properties:
                            author:
                              type: object
                              properties:
                                name:
                                  type: string
                                headline:
                                  type: string
                                  format: style
                                urn:
                                  type: string
                                id:
                                  type: string
                                  format: uri
                                url:
                                  type: string
                                  format: uri
                                profilePictureURL:
                                  type: string
                                  format: uri
                            comment:
                              type: string
                            createdAt:
                              type: integer
                            permalink:
                              type: string
                              format: uri
                            edited:
                              type: boolean
                            engagements:
                              type: object
                              properties:
                                totalReactions:
                                  type: integer
                                commentsCount:
                                  type: integer
                                repostsCount:
                                  type: integer
                                reactions:
                                  nullable: true
                      cursor:
                        type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  comments:
                    - author:
                        name: Juan Sanson, Jr.
                        headline: >-
                          IT PMO Lead | Oracle Cloud Optimization | Public
                          Sector Innovator | Army Veteran | Project Management
                          Mentor | Digital Creator | Champion of RATS: Results.
                          Actions. Tasks. Situation.
                        urn: ACoAAAwxwuYB6YYnc9J8MhtMWO_BlV13KqUbti4
                        id: urn:li:member:204587750
                        url: https://www.linkedin.com/in/juansansonjr
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQF4Z9VpTnZIhg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1715573805289?e=1763596800&v=beta&t=rmmpCuKfZz-y5xPSr5k_IxwIrHh_v6bpQg78rcL7mJI
                      comment: >-
                        Juan Sanson, Jr. This projects by product is carbon
                        black. Great for the efforts to provide clean energy
                        from thr sun.
                      createdAt: 1718303111781
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7167352642728255488%29&replyUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7207085614951780354%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287167352642728255488%2Curn%3Ali%3AugcPost%3A6860588340165541888%29&dashReplyUrn=urn%3Ali%3Afsd_comment%3A%287207085614951780354%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 0
                        commentsCount: 0
                        repostsCount: 0
                        reactions: null
                    - author:
                        name: Dr. KAVITHA ANDIAPPAN
                        headline: >-
                          StartupTN mentor -Circular economy, Associate
                          professor at Chennai institute of technology/
                          Annauniversity guideship on inorganic chemistry
                        urn: ACoAADBRY-kB7irOzcU6D3Cc0Z07J_XremrwfSg
                        id: urn:li:member:810640361
                        url: >-
                          https://www.linkedin.com/in/dr-kavitha-andiappan-6b55941a7
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFKx1OE_FD2pg/profile-displayphoto-crop_800_800/B56ZegGSg5HUAM-/0/1750737693411?e=1763596800&v=beta&t=C4grl8Pm0HmjfwWBHG73bqEYuvE3h1oFdYUHpT5QHYY
                      comment: Good for suatainability
                      createdAt: 1708926167721
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7167755860977332225%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287167755860977332225%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 3
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 3
                    - author:
                        name: Juan Sanson, Jr.
                        headline: >-
                          IT PMO Lead | Oracle Cloud Optimization | Public
                          Sector Innovator | Army Veteran | Project Management
                          Mentor | Digital Creator | Champion of RATS: Results.
                          Actions. Tasks. Situation.
                        urn: ACoAAAwxwuYB6YYnc9J8MhtMWO_BlV13KqUbti4
                        id: urn:li:member:204587750
                        url: https://www.linkedin.com/in/juansansonjr
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQF4Z9VpTnZIhg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1715573805289?e=1763596800&v=beta&t=rmmpCuKfZz-y5xPSr5k_IxwIrHh_v6bpQg78rcL7mJI
                      comment: >-
                        Mr. Gates, there is project that I think needs
                        consideration in much more r&d. It's a way to turn our
                        waste to clean fuel. Green gas producers to clean fuel
                        or energy. Landfills to parks or forests again. Anyone
                        here can DM me on this, I really would like to hear Mr.
                        Gate's thoughts on this.
                      createdAt: 1708830033000
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7167352642728255488%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287167352642728255488%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 2
                        commentsCount: 1
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 2
                    - author:
                        name: Carolina Queuer
                        headline: Clinical embryologist at Tanner-Gomez
                        urn: ACoAADl6HCoBVViM7oalvwImk_-mgadiZb1MK1w
                        id: urn:li:member:964303914
                        url: https://www.linkedin.com/in/carolina-queuer-2b6b3a22a
                      comment: Keep up the good work!
                      createdAt: 1643882666884
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C6894943645238448128%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%286894943645238448128%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 3
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 3
                    - author:
                        name: Turatsinze Jr
                        headline: >-
                          Zhejiang University Scholar | United Nations Bank
                          Scholar|MEngr in Industrial Design Engineering
                        urn: ACoAAClSPX8BLJvOs66wv-4Ca4JEgXX3_DsgG5I
                        id: urn:li:member:693255551
                        url: >-
                          https://www.linkedin.com/in/turatsinze-junior-%E5%BC%B5%E5%88%A9-msc-67b205174
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGcWh9VeWmxpg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1721563393723?e=1763596800&v=beta&t=nz8zsXjDynh_gWvYpmEBhsFHrI8tfogcldLwM5z0P-g
                      comment: Turatsinze Jr
                      createdAt: 1653546061558
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C6935474860169007104%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%286935474860169007104%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 1
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 1
                    - author:
                        name: JOEY OAXACA MARTINEZ THE ADJUTANT GENERAL DOCTRINE
                        headline: boss...
                        urn: ACoAABFCr4kBz_sSXiKrOzmn4wQuiojKpmZeTZc
                        id: urn:li:member:289582985
                        url: >-
                          https://www.linkedin.com/in/joey-oaxaca-martinez-the-adjutant-general-doctrine-8b5b9280
                      comment: "Bill Gates, be you LL General Army Title Executive Senator. Bill Gates. As been knowing as they claim to my presence in a holding facility. Microsoft Windows 10 account\_ 10 as x also ."
                      createdAt: 1761219772621
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7387091137183981568%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287387091137183981568%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 0
                        commentsCount: 1
                        repostsCount: 0
                        reactions: null
                    - author:
                        name: JOEY OAXACA MARTINEZ THE ADJUTANT GENERAL DOCTRINE
                        headline: boss...
                        urn: ACoAABFCr4kBz_sSXiKrOzmn4wQuiojKpmZeTZc
                        id: urn:li:member:289582985
                        url: >-
                          https://www.linkedin.com/in/joey-oaxaca-martinez-the-adjutant-general-doctrine-8b5b9280
                      comment: "Waz up with FCC title 15 rule trying to use my CEO title v and 15 th century 1519. But I am told I go back further then this. As why the government in City tease me with can't believe how much spent and not one dime given straight forward. As why I agree with them in there plan to erase the\_ whole family from existence. As today seeing the current map to said where lived is no longer the street. As seeing also public notice of proposal of permit to projects\_ having to do with been I posted to government\_"
                      createdAt: 1761220390897
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7387093730417291264%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287387093730417291264%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 0
                        commentsCount: 0
                        repostsCount: 0
                        reactions: null
                    - author:
                        name: Shuvo Mahmmud
                        headline: >-
                          --Cybersecurity Specialist | Mitigating Digital Risks
                          and Safeguarding Critical Assets with Advanced
                          Solutions
                        urn: ACoAAEO2zx4BoRNm8Gus0aSkPqOtWx0gM_-EB4A
                        id: urn:li:member:1136054046
                        url: https://www.linkedin.com/in/shuvo-mahmmud
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHEzNTA9zo5-g/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1686578452134?e=1763596800&v=beta&t=T299L7umEOvMOz297_i5l3pulnTiEG0DUEGosPQfnz8
                      comment: >-
                        This is incredibly exciting! The "America's Clean
                        Industrial Revolution" bill is a significant step
                        towards a sustainable future. Kudos to Congress for
                        taking the lead. 👏♻️ #Sustainability #CleanEnergy
                        #FutureForward
                      createdAt: 1686038168373
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7071756633760026624%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287071756633760026624%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 3
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 2
                          - reactionType: LIKE
                            reactionCount: 1
                    - author:
                        name: Nicholas F. Krol
                        headline: Polymath, Global Ambassador
                        urn: ACoAAACubS0BuBYfmyQFIVRs5dLqxxWxda-ARa4
                        id: urn:li:member:11431213
                        url: https://www.linkedin.com/in/nicholas-f-krol-3519b33
                      comment: "Walter Reed Army Institute of Research\_(WRAIR)\_has emerged as a world leader in HIV vaccine research and development. https://www.hivresearch.org/"
                      createdAt: 1638779105766
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C6873537758426611712%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%286873537758426611712%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 1
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 1
                    - author:
                        name: Jane A.
                        headline: >-
                          CEO OF SAGITTARIUS PUBLISHING. SONGWRITER AT ACM
                          RECORDS. FENG SHUI CONSULTANT NYC.
                        urn: ACoAAAceXiMBFujqibWdwMLt8DtOG5kX-cuGiMk
                        id: urn:li:member:119430691
                        url: https://www.linkedin.com/in/jane-a-b97bb633
                      comment: Please explain climate change?
                      createdAt: 1648962015970
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C6916247979427258368%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%286916247979427258368%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 4
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 3
                          - reactionType: LIKE
                            reactionCount: 1
                    - author:
                        name: Mamoune Ndiaye
                        headline: Secrétaire général chez DEM DEM
                        urn: ACoAADVgaxgByDn6NExfNpGc_BSdwcLT1h7bATE
                        id: urn:li:member:895511320
                        url: https://www.linkedin.com/in/mamoune-ndiaye-874aa320b
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E35AQFMQQQYbxwCZQ/profile-framedphoto-shrink_800_800/profile-framedphoto-shrink_800_800/0/1632926851128?e=1762866000&v=beta&t=p35Yka8gDy-mAc4IFvgil5xPn-xK-Df860SCw0HhgG0
                      comment: >-
                        #DemDem# west africa Senegal millions of young people
                        are dying taking boats to go to Europe. 
                        #Raiseheresuccesshere
                      createdAt: 1638821474229
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C6873715464644685824%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%286873715464644685824%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 3
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 3
                    - author:
                        name: JOEY OAXACA MARTINEZ THE ADJUTANT GENERAL DOCTRINE
                        headline: boss...
                        urn: ACoAABFCr4kBz_sSXiKrOzmn4wQuiojKpmZeTZc
                        id: urn:li:member:289582985
                        url: >-
                          https://www.linkedin.com/in/joey-oaxaca-martinez-the-adjutant-general-doctrine-8b5b9280
                      comment: >-
                        So what's the deal. As San Jose being the one to that
                        not of I distributed denial of services. As just cause I
                        represent San Jose one way you can't be doesn't justify
                        any right.
                      createdAt: 1761220034173
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7387091137183981568%29&replyUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7387092234208362496%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287387091137183981568%2Curn%3Ali%3AugcPost%3A6860588340165541888%29&dashReplyUrn=urn%3Ali%3Afsd_comment%3A%287387092234208362496%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 0
                        commentsCount: 0
                        repostsCount: 0
                        reactions: null
                  cursor: 1005239957-1762258381900-988a7f771ad4b1b4588ab817986df94b
      tags:
        - Posts
      description: Get all comments for a given post by its URN.
  /api/v1/posts/likes:
    get:
      summary: Post's likes
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: integer
          example: '7259185939057438720'
        - name: start
          in: query
          required: false
          deprecated: false
          schema:
            type: integer
          example: '0'
      responses:
        '200':
          description: likes
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      currentPage:
                        type: integer
                      likes:
                        type: array
                        items:
                          type: object
                          properties:
                            actor:
                              type: object
                              properties:
                                name:
                                  type: string
                                headline:
                                  type: string
                                urn:
                                  type: string
                                id:
                                  type: string
                                  format: utc-millisec
                                url:
                                  type: string
                                  format: uri
                                profilePictureURL:
                                  type: string
                                  format: uri
                            reactionType:
                              type: string
                      pages:
                        type: integer
                      totalLikes:
                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  currentPage: 1
                  likes:
                    - actor:
                        name: Siddhartha Pande
                        headline: .
                        urn: ACoAAAF-u6EB9gSgNLWi6MuWxAxahDO3bf1DLKw
                        id: '25082785'
                        url: >-
                          https://www.linkedin.com/in/ACoAAAF-u6EB9gSgNLWi6MuWxAxahDO3bf1DLKw
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5103AQGz3SqDcvmplg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1584374124006?e=1743033600&v=beta&t=Wjb8QhRaKvMoDYng-97BDca2cR-gRXO6c0R5qwycKUQ
                      reactionType: LIKE
                    - actor:
                        name: Rajiv Jha
                        headline: >-
                          Sr Manager at Tektronix India (P) Limited/Ex Cisco
                          Systems
                        urn: ACoAAACk-LEBRRKV7GXNPiAeC-UmNnVSomLSxfA
                        id: '10811569'
                        url: >-
                          https://www.linkedin.com/in/ACoAAACk-LEBRRKV7GXNPiAeC-UmNnVSomLSxfA
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQF0SVCmn63ZzQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516318818498?e=1743033600&v=beta&t=kCQ1C9Ikr0Msk89yMcFCDVbu1gxb1oM7TxVpaLbdjpE
                      reactionType: LIKE
                    - actor:
                        name: Sanjeev Tripurari
                        headline: Co-Founder BintyByte Technologies
                        urn: ACoAAAEdvgcBzkNGW5-m8sKOsHmmUG9rR-TPisc
                        id: '18726407'
                        url: >-
                          https://www.linkedin.com/in/ACoAAAEdvgcBzkNGW5-m8sKOsHmmUG9rR-TPisc
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQFiT7zS_QOceg/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1517679276634?e=1743033600&v=beta&t=MPJWxCaSiTM4J5vVMdK7wNkzmHXwMWTCeO6K7s8_SXU
                      reactionType: LIKE
                    - actor:
                        name: Balu Kappala
                        headline: Attended SV College of Engineering
                        urn: ACoAAFMxbOkBHPcLwj4rSAK6xgZLeNyNNXoEdCQ
                        id: '1395748073'
                        url: >-
                          https://www.linkedin.com/in/ACoAAFMxbOkBHPcLwj4rSAK6xgZLeNyNNXoEdCQ
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGvqA_rbPOIGw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1727242645014?e=1743033600&v=beta&t=I94p2b5G9BVcxGdi_NMWUX8eGh2NZZxeNg-PINluw5c
                      reactionType: LIKE
                    - actor:
                        name: Rahul Kumar
                        headline: >-
                          100xDevs coz 10x ain't Enough | CSE @ VIT Bhopal '26
                          🎓 | DSA in C++ | Web Dev Enthusiast 💻
                        urn: ACoAADTM3lABMWuRnO6Gs2XZuUbzX2vki0ViUnQ
                        id: '885841488'
                        url: >-
                          https://www.linkedin.com/in/ACoAADTM3lABMWuRnO6Gs2XZuUbzX2vki0ViUnQ
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGwM01oAjuxPg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1730047876347?e=1743033600&v=beta&t=5E0XNvOEKiw365eBLp-SLW-BhGpaqCfEDpdL-C56hng
                      reactionType: LIKE
                    - actor:
                        name: BRAJRAJ MISHRA
                        headline: >-
                          CSD @MITS-DU'26 || DSA Enthusiast || Full Stack ||
                          React.js || Node.js || Express.js || MongoDB || IOT ||
                          c++ || python || AI/ML Enthusiast 📱 🤖 President of
                          Innovation and DIY club@MITS DU
                        urn: ACoAAD8EINwBX0iVy01TRYvaZ5XqzGOsTW4pNFA
                        id: '1057235164'
                        url: >-
                          https://www.linkedin.com/in/ACoAAD8EINwBX0iVy01TRYvaZ5XqzGOsTW4pNFA
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQFLc2F-jmO0Ow/profile-displayphoto-shrink_800_800/B4DZP38DKqGkAg-/0/1735031536736?e=1743033600&v=beta&t=Cy_7yyuUTX0r3J1NZA8qslRVzevIOLnqya_72bqHuew
                      reactionType: LIKE
                    - actor:
                        name: Arun Philip
                        headline: Staff Technical Program Manager at Walmart
                        urn: ACoAAAhXTDYBAgCt90enxneRLMRAD9qZe-hZqgs
                        id: '139938870'
                        url: >-
                          https://www.linkedin.com/in/ACoAAAhXTDYBAgCt90enxneRLMRAD9qZe-hZqgs
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQGXIdsjor8Sdw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1516858489426?e=1743033600&v=beta&t=SkLxuTMVMPI_rwFjzKePStQQZcLfRqypwqR3Un6UGzg
                      reactionType: LIKE
                    - actor:
                        name: Vivek Sharma
                        headline: C/C++ || DSA || MERN-Stack Developer
                        urn: ACoAADeGlHIBIfqER9vBrmFgl9OJZx4RYhddO94
                        id: '931566706'
                        url: >-
                          https://www.linkedin.com/in/ACoAADeGlHIBIfqER9vBrmFgl9OJZx4RYhddO94
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5635AQFqdG5E27M9bQ/profile-framedphoto-shrink_800_800/profile-framedphoto-shrink_800_800/0/1724261352136?e=1738054800&v=beta&t=iyjCsuCyfuARwcJ5DBuNIDhaapOkUH8mYVKNLNyTPTA
                      reactionType: LIKE
                    - actor:
                        name: Vikram Dutta
                        headline: Manager at Technicolor
                        urn: ACoAAAJPf80BMUCRRubnFo237tH1Nkjz7gv6i2U
                        id: '38764493'
                        url: >-
                          https://www.linkedin.com/in/ACoAAAJPf80BMUCRRubnFo237tH1Nkjz7gv6i2U
                        profilePictureURL: ''
                      reactionType: LIKE
                    - actor:
                        name: Kavitha Siddegowda PMP®
                        headline: >-
                          Lead Technical Project Manager at Synamedia |
                          Entrepreneurial | Creative | Customer Success |
                          Software Delivery | Design Thinking | RYS - 200 Yoga
                          Certified | Mindfulness Advocate
                        urn: ACoAAAGVuqkBiD9fcE0eRQLeeb339xFf5gYCOsw
                        id: '26589865'
                        url: >-
                          https://www.linkedin.com/in/ACoAAAGVuqkBiD9fcE0eRQLeeb339xFf5gYCOsw
                        profilePictureURL: ''
                      reactionType: LIKE
                  pages: 4
                  totalLikes: 36
      tags:
        - Posts
      description: Get all people who reacted to a post by its URN.
  /api/v1/articles/all:
    get:
      summary: All
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ACoAAA8BYqEBCGLg_vT_ca6mMEqkpp9nVffJ3hc
        - name: start
          in: query
          schema:
            type: integer
          example: '0'
      responses:
        '200':
          description: All
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      articles:
                        type: array
                        items:
                          type: object
                          properties:
                            urn:
                              type: string
                              format: utc-millisec
                            navigationUrl:
                              type: string
                              format: uri
                            title:
                              type: string
                            description:
                              type: string
                            duration:
                              type: string
                            coverImage:
                              type: object
                              properties:
                                url:
                                  type: string
                                  format: uri
                      paging:
                        type: object
                        properties:
                          count:
                            type: integer
                          start:
                            type: integer
                          total:
                            type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  articles:
                    - urn: '6859977638061068288'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/time-congress-launch-americas-clean-industrial-revolution-bill-gates
                      title: >-
                        Time for Congress to launch America’s clean industrial
                        revolution
                      description: >-
                        Right now, I’m heading to the international climate
                        conference in Glasgow, known as COP26, where delegates
                        will talk about how to cut greenhouse gas e
                      duration: 4 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4D12AQFEcKBY2fCl0g/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1635566387395?e=1763596800&v=beta&t=H1SaFyQ5Dv9QOLJc_Evfg6pm_R8vea8HGCamuzp6hCI
                    - urn: '6717489330295709696'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/powerful-tool-understanding-clean-energy-climate-change-bill-gates
                      title: >-
                        A powerful tool for understanding clean energy and
                        climate change
                      description: >-
                        Over the past several years, I’ve been making the case
                        that we have to eliminate global carbon emissions. To
                        avoid the worst effects of climate change
                      duration: 5 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4D12AQET-m5EVucIhg/article-cover_image-shrink_600_2000/article-cover_image-shrink_600_2000/0/1601574260909?e=1763596800&v=beta&t=a6YDPOEZd6I2GzEmdU-l1Cz_23n1itL5e2fAN31ZPA0
                    - urn: '6699503942818123776'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/how-help-students-get-college-covid-era-bill-gates
                      title: How to help students get to college in the COVID era
                      description: >-
                        These three organizations help make sure no one’s dream
                        is denied. There’s one set of questions on the mind of
                        everyone in the education world right n
                      duration: 6 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4D12AQHZ54ir6-GeXQ/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1597286219445?e=1763596800&v=beta&t=tkOFZKg7DK1arRhcPOxP1wigKt0sSqA5Kop2Gp5zDGw
                    - urn: '6644281913563500545'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/focusing-my-time-bill-gates
                      title: Focusing My Time
                      description: >-
                        I have made the decision to step down from both of the
                        public boards on which I serve – Microsoft and Berkshire
                        Hathaway – to dedicate more time to ph
                      duration: 2 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4E12AQF4tMZ5wZdosg/article-cover_image-shrink_600_2000/article-cover_image-shrink_600_2000/0/1584126474599?e=1763596800&v=beta&t=ng5OjVv_nhXM5HxG1RcEl4K_h83l7vtDz_mEW-KHGbk
                    - urn: '6632494715872825344'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/why-we-swing-fences-bill-gates
                      title: Why we swing for the fences
                      description: >-
                        Twenty years after starting our foundation, we’re just
                        as optimistic about the power of innovation to drive
                        progress. When we started our foundation 2
                      duration: 4 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4E12AQHEUHiZLeX54A/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1581309964832?e=1763596800&v=beta&t=mo_a8IBYFxJ82MYKHPBL2fQ0br1Fv-s9E33bi5AY24U
                    - urn: '6605194760724508672'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates
                      title: Manufacturing opportunity
                      description: >-
                        This auto parts maker is producing great results for
                        Tennessee students. I put on safety glasses and ear
                        plugs before stepping onto the factory floor.
                      duration: 3 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4E12AQFftuPi0UiqWA/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1574801149114?e=1763596800&v=beta&t=TsybXxC70yWDLsWRfmOK46oirOian4ktOaA1viZJ0BM
                    - urn: '6604590387300495360'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/i-love-schools-energy-bill-gates
                      title: I love this school’s energy!
                      description: >-
                        Fueled by community support, a struggling Tennessee high
                        school is beginning its turnaround. Melinda and I often
                        say that of all the issues our founda
                      duration: 5 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4E12AQFU25SJLAyGKA/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1574657139678?e=1763596800&v=beta&t=eN1szmK0r7ZoMkKZpq8thngVpDauXfkRlK94MO6qyKQ
                    - urn: '6597623749284114433'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/how-you-can-help-fight-alzheimers-bill-gates
                      title: How you can help fight Alzheimer’s
                      description: >-
                        I’ve been learning about (and funding) work on
                        Alzheimer’s Disease for a few years now. In a wrap-up
                        blog post at the end of last year, I wrote about 
                      duration: 5 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C5612AQEKcSr_MqtzZw/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1572996079285?e=1763596800&v=beta&t=EVEUpEjn7lDfCcqviEx__JyUdtjJ1SzUpcuDwIsg1-k
                    - urn: '6595031499895029760'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/buildings-bad-climate-bill-gates
                      title: Buildings are bad for the climate
                      description: >-
                        Buildings are bad for the climate: here’s what we can do
                        about it Besides the traffic and the weather, we
                        Seattleites love to talk about all the const
                      duration: 5 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4E12AQFdAmb0OF1GPA/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1572378038033?e=1763596800&v=beta&t=gNqud4QD-Ht7wAPWwyf6ygemJBqc3BLmxWCmp1tivLI
                    - urn: '6591088608755671040'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/tuning-up-photosynthesis-feed-world-bill-gates
                      title: Tuning up photosynthesis to feed the world
                      description: >-
                        At some point in school, you probably learned about
                        photosynthesis—how plants use energy from sunlight to
                        convert carbon dioxide and water into food. 
                      duration: 4 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4E12AQHBkzwRWRg6JQ/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1571438010155?e=1763596800&v=beta&t=h5YtBQ9Ptb3AE_7LRqon5nM0CXqYW0wnSKhr3vqaEkg
                    - urn: '6585199996642082817'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/how-i-cemented-my-friendship-aliko-dangote-bill-gates
                      title: How I cemented my friendship with Aliko Dangote
                      description: >-
                        Have you ever met someone new and immediately felt like
                        you could talk to them for hours? That happened the
                        first time I met Aliko Dangote. A couple y
                      duration: 3 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4E12AQEXuXfixsfsPQ/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1570034069252?e=1763596800&v=beta&t=B1PZeHI5sE7oUbG3W0EYF21HYdyPV8IYcUGGtFcJQ7s
                    - urn: '6575913544989097984'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/whats-like-live-less-than-2-day-bill-gates
                      title: What’s it like to live on less than $2 a day?
                      description: >-
                        It’s the lack of shoes that I remember most. It was
                        1993. Melinda and I were traveling through Kenya,
                        Tanzania, and Zaire (now the Democratic Republic
                      duration: 4 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4E12AQHzfh1pjskpZA/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1567819962628?e=1763596800&v=beta&t=gZA97Jt9YgMus6GmuxcTeeYd7Iq_Loj8dJoe0Mha8cA
                    - urn: '6572191951553130496'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/heres-question-you-should-ask-every-climate-change-plan-bill-gates
                      title: >-
                        Here’s a question you should ask about every climate
                        change plan
                      description: >-
                        I get to learn about lots of different plans for dealing
                        with climate change. It’s part of my job—climate change
                        is the focus of my work with the inve
                      duration: 6 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4E12AQEgeHvALZs2yQ/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1566937271170?e=1763596800&v=beta&t=mblzs-eqkykstnap5Xi3WrWwIOiqzF4XPNgfGe-3z9Y
                    - urn: '6567091241631256577'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/how-bbq-chicken-can-prepare-you-life-after-high-school-bill-gates
                      title: >-
                        How BBQ chicken can prepare you for life after high
                        school
                      description: >-
                        I never really learned how to cook. Other than
                        scrambling eggs over a fire during Boy Scout camping
                        trips, it just wasn’t something I was taught growi
                      duration: 4 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4E12AQFjd1N0n1-EdQ/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1565727376782?e=1763596800&v=beta&t=AvEGdfV8yzLUO8ZxHLZjT2fFZh9Z2TeVBKqod_SWyck
                    - urn: '6564211257702965248'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/hidden-costs-unreliable-electricity-bill-gates
                      title: The hidden costs of unreliable electricity
                      description: >-
                        Think back to the last time you experienced a power
                        outage. It probably wasn’t a great memory. Maybe it
                        involved spending the evening in the dark with
                      duration: 3 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4E12AQEvwyjDskLgtA/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1565029982281?e=1763596800&v=beta&t=ne3-McZV60Mnj6kJVkXxLxz7INWlmvbWePsppgJFJwg
                    - urn: '6559528976828768256'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/can-romance-improve-your-odds-survival-bill-gates
                      title: Can romance improve your odds of survival?
                      description: >-
                        Why do I love my wife, Melinda? The sociologist Nicholas
                        Christakis would probably give way more practical
                        answers than I would. He’d argue that our e
                      duration: 4 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C5612AQEkpot0ss25eQ/article-cover_image-shrink_600_2000/article-cover_image-shrink_600_2000/0/1563913577192?e=1763596800&v=beta&t=K2Do5URObhv_vG3C5XlJw3yd_U5Jde7VOfWWact_v8E
                    - urn: '6557664451976314880'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/how-obscure-organization-feeding-our-future-bill-gates
                      title: How this obscure organization is feeding our future
                      description: >-
                        What’s for dinner? It’s a question asked every day in
                        homes around the world. No other organization has done
                        as much to ensure families—especially the
                      duration: 4 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4E12AQFoJ1E0W-jkXg/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1563469092467?e=1763596800&v=beta&t=kMbwSPCCutnHZJN0asACM5ukkGbvbmTeuITgn6DK8aI
                    - urn: '6550064968451051521'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/side-paul-allen-i-wish-more-people-knew-bill-gates
                      title: The side of Paul Allen I wish more people knew about
                      description: >-
                        Paul Allen was one of the most intellectually curious
                        people I’ve ever known. Ever since we were kids, he
                        seemed to be interested in just about everyt
                      duration: 7 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C4E12AQHm85BLkJInrg/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1561662458483?e=1763596800&v=beta&t=dMB4gTwwZ2ZBJopUdIHBi3ptNtTf8WPYQGYXfpbHAcM
                    - urn: '6545367123571597312'
                      navigationUrl: >-
                        https://www.linkedin.com/pulse/heres-one-great-way-use-your-tech-skills-bill-gates
                      title: Here’s one great way to use your tech skills
                      description: >-
                        These days I spend a lot of my time thinking about how
                        technology can help the poorest people in the world
                        improve their lives. It’s been a big focus 
                      duration: 4 min read
                      coverImage:
                        url: >-
                          https://media.licdn.com/dms/image/v2/C5612AQHZ2HDR9FWnRw/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1560877994889?e=1763596800&v=beta&t=YoK_EGPrc0UoCQJb_xO0ZyRBhwti9uGBmY3i2eenCoU
                  paging:
                    count: 20
                    start: 0
                    total: 19
      tags:
        - Articles
      description: Get all articles for a user by their URN.
  /api/v1/articles/article/info:
    get:
      summary: Info
      parameters:
        - name: url
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: >-
            https://www.linkedin.com/pulse/time-congress-launch-americas-clean-industrial-revolution-bill-gates/
      responses:
        '200':
          description: Info
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      article:
                        type: object
                        properties:
                          urn:
                            type: string
                            format: utc-millisec
                          title:
                            type: string
                          contentHtml:
                            type: string
                            format: style
                          author:
                            type: object
                            properties:
                              isInfluencer:
                                type: boolean
                              followerCount:
                                type: integer
                              name:
                                type: string
                              headline:
                                type: string
                              urn:
                                type: string
                                format: uri
                              id:
                                type: string
                                format: uri
                              url:
                                type: string
                                format: uri
                              profilePictureURL:
                                type: string
                                format: uri
                          publishedAt:
                            type: integer
                          state:
                            type: string
                          permalink:
                            type: string
                            format: uri
                          coverImage:
                            type: object
                            properties:
                              url:
                                type: string
                                format: uri
                          activityUrn:
                            type: string
                            format: uri
                          threadUrn:
                            type: string
                            format: uri
                          engagements:
                            type: object
                            properties:
                              totalReactions:
                                type: integer
                              commentsCount:
                                type: integer
                              repostsCount:
                                type: integer
                              reactions:
                                type: array
                                items:
                                  type: object
                                  properties:
                                    reactionType:
                                      type: string
                                    reactionCount:
                                      type: integer
                      comments:
                        type: array
                        items:
                          type: object
                          properties:
                            author:
                              type: object
                              properties:
                                name:
                                  type: string
                                headline:
                                  type: string
                                urn:
                                  type: string
                                id:
                                  type: string
                                  format: uri
                                url:
                                  type: string
                                  format: uri
                            comment:
                              type: string
                            createdAt:
                              type: integer
                            permalink:
                              type: string
                              format: uri
                            edited:
                              type: boolean
                            engagements:
                              type: object
                              properties:
                                totalReactions:
                                  type: integer
                                commentsCount:
                                  type: integer
                                repostsCount:
                                  type: integer
                                reactions:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      reactionType:
                                        type: string
                                      reactionCount:
                                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  article:
                    urn: '6859977638061068288'
                    title: >-
                      Time for Congress to launch America’s clean industrial
                      revolution
                    contentHtml: >-
                      <p>Right now, I’m heading to the&nbsp;international
                      climate conference in Glasgow, known as COP26, where
                      delegates will talk about how to cut greenhouse gas
                      emissions from roughly 51 billion tons per year to zero by
                      2050. On my way out the door, I’m hearing news that makes
                      me even more optimistic that the world can accomplish this
                      extraordinarily difficult task: The U.S. is on the verge
                      of making a historic investment in clean technologies
                      through the Build Back Better Act and the Infrastructure
                      Investment and Jobs Act.&nbsp;This package of legislation
                      has many important provisions, from health to education,
                      that we need to make progress on.&nbsp;But because I’m on
                      my way to COP26, I want to write about the climate
                      provisions. </p><p>Technological innovation is the only
                      way the world can get to zero. So many of the processes of
                      daily life currently emit carbon—flying on airplanes,
                      building houses, eating hamburgers—so we need to invent
                      new ways of doing them that are green. Then, after we
                      invent them in the lab, we need to “commercialize”
                      them—that is, make them effective, reliable, and cheap
                      enough that people want to and can afford to buy
                      them.</p><p>If the Congress passes these bills, the United
                      States will be at the vanguard of powering a clean
                      industrial revolution. To realize this version of the
                      future, we need to do things like update the electric grid
                      so it can carry more clean energy to more places, rethink
                      how we create things like liquid fuels, and accelerate the
                      time from lab to market for early-stage climate
                      technologies. When I say accelerate, I mean by a lot. In
                      the past, energy transitions have taken as long as a
                      century. For the sake of a livable future, we need to do
                      it in a decade or two.</p><p>That’s what these bills will
                      do. Earlier this summer, the Department of Energy and
                      Breakthrough Energy Catalyst, a brand-new program led by
                      the network of climate initiatives I support, announced a
                      collaboration to accelerate the adoption of next
                      generation clean technologies. These two bills will
                      supercharge our partnership allowing us to invest billions
                      of dollars in projects across the country, but our
                      partnership is just one piece of the puzzle. The public
                      sector investment in these bills will mobilize not just
                      the resources Breakthrough Energy has committed, but
                      billions of dollars in private capital into U.S. clean
                      energy projects.&nbsp;That translates to jobs across the
                      country while ensuring that the U.S. stays competitive as
                      the global economy decarbonizes.</p><p>As I point out in
                      <a
                      href="https://www.gatesnotes.com/Energy/This-is-how-we-build-a-zero-emissions-economy?WT.mc_id=20211029000000_net-zero-economy_BG-LI_&amp;WT.tsrc=BGLI"
                      target="_blank" rel="nofollow noopener">this piece</a> I
                      wrote in the run up to COP26, these types of investments
                      will create three kinds of jobs for
                      communities.&nbsp;First, they mean immediate construction
                      jobs and research jobs.&nbsp;Second, they mean jobs in the
                      long term – when you build a sustainable aviation fuel
                      refinery, or a steel plant powered by clean hydrogen you
                      are building an industrial base in a community for
                      decades.&nbsp;Finally, they create economic opportunities
                      and jobs because the first communities to build these
                      things will end up teaching the rest of the world how to
                      do it.&nbsp;</p><p>Combined, the bills Congress is
                      considering would invest <strong>more than $650 billion
                      into clean energy solutions. This would represent the
                      largest effort to combat the climate crisis in American
                      history, and it’s our best shot to avoid a climate
                      disaster.</strong></p><p>While the legislation is not
                      final, here’s what I’ve seen in both bills that will speed
                      up innovation to reach net-zero emissions before
                      2050:</p><ul><li><strong>$320 billion in tax credits for
                      clean technologies</strong>, especially clean hydrogen,
                      clean jet fuel, long duration energy storage, carbon
                      capture/direct air capture, transmission, and clean
                      manufacturing. Ten years of tax credits, with “direct
                      pay,” will unlock the capital to build commercial
                      demonstration projects. </li><li><strong>$40 billion in
                      expanded financing authority for the Loan Programs Office
                      and $3.6 billion in funding to reduce costs to applicants,
                      </strong>which will help more clean energy projects and
                      transmission get built at scale. </li><li><strong>$43
                      billion for research, development, and demonstration
                      (RD&amp;D) programs,</strong> including $9.5 billion to
                      build Hydrogen Hubs, $1 billion to lower the cost of
                      electrolytic hydrogen production, $505 million to energy
                      storage demonstration projects (including long-duration
                      energy technologies), $3.2 billion for the Advanced
                      Reactor Demonstration Program, and $500 million to
                      industrial decarbonization
                      demonstrations.</li><li><strong>$7.5 billion for clean
                      manufacturing grants </strong>for clean industrial
                      technology or retrofits to current facilities and domestic
                      production of low carbon vehicles.</li><li><strong>$9.7
                      billion for the procurement of low carbon materials,
                      </strong>including a significant increase in the
                      Environmental Product Declaration program that quantifies
                      carbon emissions for products like steel and cement. This
                      includes new funding to some federal agencies for low
                      carbon goods procurement, as well as authority to ensure
                      funding for the purchase of low carbon materials in the
                      wake of a national disaster.</li><li><strong>$14 billion
                      for electric transmission </strong>including Department of
                      Energy grant and loan capacity for new transmission
                      construction and upgrades, support for transmission siting
                      and planning processes, and research and development for
                      advanced transmission and electricity storage and
                      distribution technologies.</li></ul><p>Although the Build
                      Back Better Act will be passed in a partisan way through
                      budget reconciliation, it includes many policies that have
                      received bipartisan support in the past, like clean energy
                      tax credits, that will benefit red and blue states alike.
                      I am encouraged that several Republicans voted with their
                      Democratic colleagues to pass the Infrastructure
                      Investment and Jobs Act through the Senate, and I hope to
                      see some House Republicans join Democrats as well when the
                      House takes a vote on the infrastructure
                      bill.&nbsp;Building the foundation for America’s
                      industrial leadership isn’t a partisan thing. </p><p>I
                      hope Congress passes these bills fast.&nbsp;We can’t wait
                      another moment. </p>
                    author:
                      isInfluencer: true
                      followerCount: 39171897
                      name: Bill Gates
                      headline: Chair, Gates Foundation and Founder, Breakthrough Energy
                      urn: >-
                        urn:li:fsd_profile:ACoAAA8BYqEBCGLg_vT_ca6mMEqkpp9nVffJ3hc
                      id: urn:li:member:251749025
                      url: https://www.linkedin.com/in/williamhgates
                      profilePictureURL: >-
                        https://media.licdn.com/dms/image/v2/D5603AQF-RYZP55jmXA/profile-displayphoto-shrink_800_800/B56ZRi8g.aGsAc-/0/1736826818808?e=1763596800&v=beta&t=YpnxOdxeCDLEqaajH25vBq-EX3aRxmYZx2kns7jsUuM
                    publishedAt: 1635691724000
                    state: PUBLISHED
                    permalink: >-
                      https://www.linkedin.com/pulse/time-congress-launch-americas-clean-industrial-revolution-bill-gates
                    coverImage:
                      url: >-
                        https://media.licdn.com/dms/image/v2/C4D12AQFEcKBY2fCl0g/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1635566387395?e=1763596800&v=beta&t=H1SaFyQ5Dv9QOLJc_Evfg6pm_R8vea8HGCamuzp6hCI
                    activityUrn: urn:li:activity:6860588340517838849
                    threadUrn: urn:li:ugcPost:6860588340165541888
                    engagements:
                      totalReactions: 7410
                      commentsCount: 652
                      repostsCount: 257
                      reactions:
                        - reactionType: LIKE
                          reactionCount: 7028
                        - reactionType: PRAISE
                          reactionCount: 136
                        - reactionType: APPRECIATION
                          reactionCount: 114
                        - reactionType: EMPATHY
                          reactionCount: 87
                        - reactionType: MAYBE
                          reactionCount: 32
                        - reactionType: INTEREST
                          reactionCount: 13
                  comments:
                    - author:
                        name: Carolina Queuer
                        headline: Clinical embryologist at Tanner-Gomez
                        urn: ACoAADl6HCoBVViM7oalvwImk_-mgadiZb1MK1w
                        id: urn:li:member:964303914
                        url: https://www.linkedin.com/in/carolina-queuer-2b6b3a22a
                      comment: Keep up the good work!
                      createdAt: 1643882666884
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C6894943645238448128%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%286894943645238448128%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 3
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 3
                    - author:
                        name: Turatsinze Jr
                        headline: >-
                          Zhejiang University Scholar | United Nations Bank
                          Scholar|MEngr in Industrial Design Engineering
                        urn: ACoAAClSPX8BLJvOs66wv-4Ca4JEgXX3_DsgG5I
                        id: urn:li:member:693255551
                        url: >-
                          https://www.linkedin.com/in/turatsinze-junior-%E5%BC%B5%E5%88%A9-msc-67b205174
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGcWh9VeWmxpg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1721563393723?e=1763596800&v=beta&t=nz8zsXjDynh_gWvYpmEBhsFHrI8tfogcldLwM5z0P-g
                      comment: Turatsinze Jr
                      createdAt: 1653546061558
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C6935474860169007104%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%286935474860169007104%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 1
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 1
                    - author:
                        name: JOEY OAXACA MARTINEZ THE ADJUTANT GENERAL DOCTRINE
                        headline: boss...
                        urn: ACoAABFCr4kBz_sSXiKrOzmn4wQuiojKpmZeTZc
                        id: urn:li:member:289582985
                        url: >-
                          https://www.linkedin.com/in/joey-oaxaca-martinez-the-adjutant-general-doctrine-8b5b9280
                      comment: "Bill Gates, be you LL General Army Title Executive Senator. Bill Gates. As been knowing as they claim to my presence in a holding facility. Microsoft Windows 10 account\_ 10 as x also ."
                      createdAt: 1761219772621
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7387091137183981568%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287387091137183981568%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 0
                        commentsCount: 1
                        repostsCount: 0
                        reactions: null
                    - author:
                        name: JOEY OAXACA MARTINEZ THE ADJUTANT GENERAL DOCTRINE
                        headline: boss...
                        urn: ACoAABFCr4kBz_sSXiKrOzmn4wQuiojKpmZeTZc
                        id: urn:li:member:289582985
                        url: >-
                          https://www.linkedin.com/in/joey-oaxaca-martinez-the-adjutant-general-doctrine-8b5b9280
                      comment: "Waz up with FCC title 15 rule trying to use my CEO title v and 15 th century 1519. But I am told I go back further then this. As why the government in City tease me with can't believe how much spent and not one dime given straight forward. As why I agree with them in there plan to erase the\_ whole family from existence. As today seeing the current map to said where lived is no longer the street. As seeing also public notice of proposal of permit to projects\_ having to do with been I posted to government\_"
                      createdAt: 1761220390897
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7387093730417291264%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287387093730417291264%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 0
                        commentsCount: 0
                        repostsCount: 0
                        reactions: null
                    - author:
                        name: Nicholas F. Krol
                        headline: Polymath, Global Ambassador
                        urn: ACoAAACubS0BuBYfmyQFIVRs5dLqxxWxda-ARa4
                        id: urn:li:member:11431213
                        url: https://www.linkedin.com/in/nicholas-f-krol-3519b33
                      comment: "Walter Reed Army Institute of Research\_(WRAIR)\_has emerged as a world leader in HIV vaccine research and development. https://www.hivresearch.org/"
                      createdAt: 1638779105766
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C6873537758426611712%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%286873537758426611712%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 1
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 1
                    - author:
                        name: Mamoune Ndiaye
                        headline: Secrétaire général chez DEM DEM
                        urn: ACoAADVgaxgByDn6NExfNpGc_BSdwcLT1h7bATE
                        id: urn:li:member:895511320
                        url: https://www.linkedin.com/in/mamoune-ndiaye-874aa320b
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E35AQFMQQQYbxwCZQ/profile-framedphoto-shrink_800_800/profile-framedphoto-shrink_800_800/0/1632926851128?e=1762862400&v=beta&t=_RyvlAbNvgPan8aXgBBJsGcCVod-7mr-POXHQxM0y4g
                      comment: >-
                        #DemDem# west africa Senegal millions of young people
                        are dying taking boats to go to Europe. 
                        #Raiseheresuccesshere
                      createdAt: 1638821474229
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C6873715464644685824%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%286873715464644685824%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 3
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 3
                    - author:
                        name: JOEY OAXACA MARTINEZ THE ADJUTANT GENERAL DOCTRINE
                        headline: boss...
                        urn: ACoAABFCr4kBz_sSXiKrOzmn4wQuiojKpmZeTZc
                        id: urn:li:member:289582985
                        url: >-
                          https://www.linkedin.com/in/joey-oaxaca-martinez-the-adjutant-general-doctrine-8b5b9280
                      comment: >-
                        So what's the deal. As San Jose being the one to that
                        not of I distributed denial of services. As just cause I
                        represent San Jose one way you can't be doesn't justify
                        any right.
                      createdAt: 1761220034173
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7387091137183981568%29&replyUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7387092234208362496%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287387091137183981568%2Curn%3Ali%3AugcPost%3A6860588340165541888%29&dashReplyUrn=urn%3Ali%3Afsd_comment%3A%287387092234208362496%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 0
                        commentsCount: 0
                        repostsCount: 0
                        reactions: null
                    - author:
                        name: Juan Sanson, Jr.
                        headline: >-
                          IT PMO Lead | Oracle Cloud Optimization | Public
                          Sector Innovator | Army Veteran | Project Management
                          Mentor | Digital Creator | Champion of RATS: Results.
                          Actions. Tasks. Situation.
                        urn: ACoAAAwxwuYB6YYnc9J8MhtMWO_BlV13KqUbti4
                        id: urn:li:member:204587750
                        url: https://www.linkedin.com/in/juansansonjr
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQF4Z9VpTnZIhg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1715573805289?e=1763596800&v=beta&t=rmmpCuKfZz-y5xPSr5k_IxwIrHh_v6bpQg78rcL7mJI
                      comment: >-
                        Juan Sanson, Jr. This projects by product is carbon
                        black. Great for the efforts to provide clean energy
                        from thr sun.
                      createdAt: 1718303111781
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7167352642728255488%29&replyUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7207085614951780354%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287167352642728255488%2Curn%3Ali%3AugcPost%3A6860588340165541888%29&dashReplyUrn=urn%3Ali%3Afsd_comment%3A%287207085614951780354%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 0
                        commentsCount: 0
                        repostsCount: 0
                        reactions: null
                    - author:
                        name: Dr. KAVITHA ANDIAPPAN
                        headline: >-
                          StartupTN mentor -Circular economy, Associate
                          professor at Chennai institute of technology/
                          Annauniversity guideship on inorganic chemistry
                        urn: ACoAADBRY-kB7irOzcU6D3Cc0Z07J_XremrwfSg
                        id: urn:li:member:810640361
                        url: >-
                          https://www.linkedin.com/in/dr-kavitha-andiappan-6b55941a7
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFKx1OE_FD2pg/profile-displayphoto-crop_800_800/B56ZegGSg5HUAM-/0/1750737693411?e=1763596800&v=beta&t=C4grl8Pm0HmjfwWBHG73bqEYuvE3h1oFdYUHpT5QHYY
                      comment: Good for suatainability
                      createdAt: 1708926167721
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7167755860977332225%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287167755860977332225%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 3
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 3
                    - author:
                        name: Juan Sanson, Jr.
                        headline: >-
                          IT PMO Lead | Oracle Cloud Optimization | Public
                          Sector Innovator | Army Veteran | Project Management
                          Mentor | Digital Creator | Champion of RATS: Results.
                          Actions. Tasks. Situation.
                        urn: ACoAAAwxwuYB6YYnc9J8MhtMWO_BlV13KqUbti4
                        id: urn:li:member:204587750
                        url: https://www.linkedin.com/in/juansansonjr
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQF4Z9VpTnZIhg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1715573805289?e=1763596800&v=beta&t=rmmpCuKfZz-y5xPSr5k_IxwIrHh_v6bpQg78rcL7mJI
                      comment: >-
                        Mr. Gates, there is project that I think needs
                        consideration in much more r&d. It's a way to turn our
                        waste to clean fuel. Green gas producers to clean fuel
                        or energy. Landfills to parks or forests again. Anyone
                        here can DM me on this, I really would like to hear Mr.
                        Gate's thoughts on this.
                      createdAt: 1708830033000
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7167352642728255488%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287167352642728255488%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 2
                        commentsCount: 1
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 2
                    - author:
                        name: Shuvo Mahmmud
                        headline: >-
                          --Cybersecurity Specialist | Mitigating Digital Risks
                          and Safeguarding Critical Assets with Advanced
                          Solutions
                        urn: ACoAAEO2zx4BoRNm8Gus0aSkPqOtWx0gM_-EB4A
                        id: urn:li:member:1136054046
                        url: https://www.linkedin.com/in/shuvo-mahmmud
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQHEzNTA9zo5-g/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1686578452134?e=1763596800&v=beta&t=T299L7umEOvMOz297_i5l3pulnTiEG0DUEGosPQfnz8
                      comment: >-
                        This is incredibly exciting! The "America's Clean
                        Industrial Revolution" bill is a significant step
                        towards a sustainable future. Kudos to Congress for
                        taking the lead. 👏♻️ #Sustainability #CleanEnergy
                        #FutureForward
                      createdAt: 1686038168373
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C7071756633760026624%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287071756633760026624%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 3
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 2
                          - reactionType: LIKE
                            reactionCount: 1
                    - author:
                        name: Jane A.
                        headline: >-
                          CEO OF SAGITTARIUS PUBLISHING. SONGWRITER AT ACM
                          RECORDS. FENG SHUI CONSULTANT NYC.
                        urn: ACoAAAceXiMBFujqibWdwMLt8DtOG5kX-cuGiMk
                        id: urn:li:member:119430691
                        url: https://www.linkedin.com/in/jane-a-b97bb633
                      comment: Please explain climate change?
                      createdAt: 1648962015970
                      permalink: >-
                        https://www.linkedin.com/feed/update/urn:li:ugcPost:6860588340165541888?commentUrn=urn%3Ali%3Acomment%3A%28ugcPost%3A6860588340165541888%2C6916247979427258368%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%286916247979427258368%2Curn%3Ali%3AugcPost%3A6860588340165541888%29
                      edited: false
                      engagements:
                        totalReactions: 4
                        commentsCount: 0
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 3
                          - reactionType: LIKE
                            reactionCount: 1
      tags:
        - Articles
      description: Get an article using its URL.
  /api/v1/articles/article/reactions:
    get:
      summary: Reactions
      parameters:
        - name: urn
          in: query
          required: true
          description: the thread Urn get it from articles info endpoint
          deprecated: false
          schema:
            type: string
          example: '6860588340165541888'
        - name: start
          in: query
          schema:
            type: integer
          example: '0'
      responses:
        '200':
          description: Reactions
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      currentPage:
                        type: integer
                      pages:
                        type: integer
                      reactions:
                        type: array
                        items:
                          type: object
                          properties:
                            actor:
                              type: object
                              properties:
                                name:
                                  type: string
                                headline:
                                  type: string
                                urn:
                                  type: string
                                id:
                                  type: string
                                  format: utc-millisec
                                url:
                                  type: string
                                  format: uri
                                profilePictureURL:
                                  type: string
                                  format: uri
                            reactionType:
                              type: string
                      totalReactions:
                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  currentPage: 1
                  pages: 741
                  reactions:
                    - actor:
                        name: Davina Dugnas
                        headline: >-
                          🎨 Award-Winning Independent Digital Artist @ Rock
                          Water Gallery 🌊 | Singer and songwriter music creator
                          selling accessible prints original pieces 🌍 |
                          Committed to eco-friendly practices inspiring through
                          art.
                        urn: ACoAADib1hQB5MpuTBKg3irN6n403JCt4lKyaG4
                        id: '949736980'
                        url: >-
                          https://www.linkedin.com/in/ACoAADib1hQB5MpuTBKg3irN6n403JCt4lKyaG4
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFeiZgj64IgrA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1706693855612?e=1763596800&v=beta&t=e_KPHOgia657UgIX-kddf-h4gm7Tw1YjmHkwHmZQkK8
                      reactionType: APPRECIATION
                    - actor:
                        name: Yulia Gusarova
                        headline: QA Engineer
                        urn: ACoAAEdMcQoB9mGy2mWnH-rWgRa8MR8FDL9CoAE
                        id: '1196192010'
                        url: >-
                          https://www.linkedin.com/in/ACoAAEdMcQoB9mGy2mWnH-rWgRa8MR8FDL9CoAE
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQGxHM4YK_QPvg/profile-displayphoto-crop_800_800/B4DZeHM3R3GUAI-/0/1750319987824?e=1763596800&v=beta&t=Xap_DCRurt6nGvWDa0MwrmwxKMCedeLKAqemdUQsMgE
                      reactionType: LIKE
                    - actor:
                        name: Sharmila Tapkir
                        headline: '--'
                        urn: ACoAADljZgsBVeVBJ9z77iyNNDSjIQjidaP-IR8
                        id: '962815499'
                        url: >-
                          https://www.linkedin.com/in/ACoAADljZgsBVeVBJ9z77iyNNDSjIQjidaP-IR8
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQF25uJlOlzT4w/profile-displayphoto-shrink_800_800/B4DZVvCedUHAAc-/0/1741324676231?e=1763596800&v=beta&t=mazpUMWKvMx-TZVsysBOHvUcXItOlW-_h9l9I0e_1yw
                      reactionType: LIKE
                    - actor:
                        name: Muhammad Faisal Haroon
                        headline: >-
                          I help people grow their wealth through systematic
                          trading that aims to produce exceptional risk adjusted
                          returns. I am a Computer scientist, a quantitative
                          trader, AI/ML data science researcher, and a lifelong
                          learner.
                        urn: ACoAAAEp6LUBxoJV1Vftxve2XBriHb4JHTbsHoQ
                        id: '19523765'
                        url: >-
                          https://www.linkedin.com/in/ACoAAAEp6LUBxoJV1Vftxve2XBriHb4JHTbsHoQ
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D5603AQFbfljNQle7dQ/profile-displayphoto-crop_800_800/B56ZiZVgFaH0AI-/0/1754919207658?e=1763596800&v=beta&t=0FJgrNZusifsA6mHhjo3pOsHl4qkGrp5ynyfYZSHUI8
                      reactionType: LIKE
                    - actor:
                        name: Lookup Contact
                        headline: 24 followers
                        urn: ''
                        id: '103837923'
                        url: https://www.linkedin.com/company/lookupcontact/
                      reactionType: LIKE
                    - actor:
                        name: 謝佳芬
                        headline: '--'
                        urn: ACoAADMaKoABZ-AfGSi4u1ZLnU1AVcI3GF6oQic
                        id: '857352832'
                        url: >-
                          https://www.linkedin.com/in/ACoAADMaKoABZ-AfGSi4u1ZLnU1AVcI3GF6oQic
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGAU-8uiLZfgQ/profile-displayphoto-shrink_800_800/B4EZTN42jSGYAg-/0/1738621021171?e=1763596800&v=beta&t=tN4wd3msRJtjgWy4J6JY421Em3zSqhvoaUEyE3DYmGs
                      reactionType: LIKE
                    - actor:
                        name: Aureliusz Lubomski
                        headline: '--'
                        urn: ACoAAF67CzUBR8VM2KMHn8yJMeenyQldJ3RO08g
                        id: '1589316405'
                        url: >-
                          https://www.linkedin.com/in/ACoAAF67CzUBR8VM2KMHn8yJMeenyQldJ3RO08g
                      reactionType: LIKE
                    - actor:
                        name: Fealty Giroux
                        headline: Business Specialist at Microsoft
                        urn: ACoAAFvNCwcBv9FSgpp3gRYPXz3Trh_Po7hPceI
                        id: '1540164359'
                        url: >-
                          https://www.linkedin.com/in/ACoAAFvNCwcBv9FSgpp3gRYPXz3Trh_Po7hPceI
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4D03AQEZD89Vle_n-w/profile-displayphoto-crop_800_800/B4DZhaH.NUG8AM-/0/1753858697897?e=1763596800&v=beta&t=yKTgu6smDQTUND3YcfWXEOrxKzLtj6nP3PllHhRkJbk
                      reactionType: LIKE
                    - actor:
                        name: Beau Bennett MBA
                        headline: >-
                          📈 Startup Business Expert | 3x Founder | Vice
                          President | United Nations Speaker | International
                          Business Trainer | Swiss Army Knife | 🏃 Ran 26 miles
                          in 24 hours.
                        urn: ACoAABeky1ABIscJO1Pyb1Gp4SdLJllScKNVIGI
                        id: '396675920'
                        url: >-
                          https://www.linkedin.com/in/ACoAABeky1ABIscJO1Pyb1Gp4SdLJllScKNVIGI
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGFeIrwdiXCfQ/profile-displayphoto-shrink_800_800/B4EZY.hecZGYAc-/0/1744805686189?e=1763596800&v=beta&t=SlDC7fg6p_31ybOy41j4WlaeadfMz6aJGwTOIq_M8BQ
                      reactionType: LIKE
                    - actor:
                        name: Olga Borzova
                        headline: >-
                          SERVICES (REST, SOAP), SQL, SWIFT, FIXML, Financial
                          Markets
                        urn: ACoAAAq1bIMB6CKNiPmWiLte5i4xO-ChYA67Bb8
                        id: '179661955'
                        url: >-
                          https://www.linkedin.com/in/ACoAAAq1bIMB6CKNiPmWiLte5i4xO-ChYA67Bb8
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQH3sZUZBGY8VA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1676146135230?e=1763596800&v=beta&t=28AjmixduFjzxUTjaAnLY72_nPS_cj7WuehaE6b2i9c
                      reactionType: LIKE
                  totalReactions: 7410
      tags:
        - Articles
      description: Get all reactions for an article by its URN.
  /api/v1/comments/all:
    get:
      summary: All Comments
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ACoAAAHT6VYBz_yVpo-jE-Or8WNKjArXMd-S6KM
        - name: cursor
          in: query
          schema:
            type: string
      responses:
        '200':
          description: All
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      comments:
                        type: array
                        items:
                          type: object
                          properties:
                            header:
                              type: string
                            text:
                              type: string
                            url:
                              type: string
                              format: uri
                            urn:
                              type: string
                              format: uri
                            author:
                              type: object
                              properties:
                                name:
                                  type: string
                                headline:
                                  type: string
                                urn:
                                  type: string
                                id:
                                  type: string
                                  format: uri
                                url:
                                  type: string
                                  format: uri
                            postedAt:
                              type: object
                              properties:
                                timestamp:
                                  type: integer
                                fullDate:
                                  type: string
                                  format: style
                                relativeDay:
                                  type: string
                            edited:
                              type: boolean
                            engagements:
                              type: object
                              properties:
                                totalReactions:
                                  type: integer
                                commentsCount:
                                  type: integer
                                repostsCount:
                                  type: integer
                                reactions:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      reactionType:
                                        type: string
                                      reactionCount:
                                        type: integer
                            mediaContent:
                              type: array
                              items:
                                type: object
                                properties:
                                  type:
                                    type: string
                                  url:
                                    type: string
                                    format: uri
                            resharedPostContent:
                              nullable: true
                            Comment:
                              type: object
                              properties:
                                author:
                                  type: object
                                  properties:
                                    name:
                                      type: string
                                    headline:
                                      type: string
                                    urn:
                                      type: string
                                    id:
                                      type: string
                                      format: uri
                                    url:
                                      type: string
                                      format: uri
                                    profilePictureURL:
                                      type: string
                                      format: uri
                                comment:
                                  type: string
                                  format: style
                                createdAt:
                                  type: integer
                                permalink:
                                  type: string
                                  format: uri
                                edited:
                                  type: boolean
                                engagements:
                                  type: object
                                  properties:
                                    totalReactions:
                                      type: integer
                                    commentsCount:
                                      type: integer
                                    repostsCount:
                                      type: integer
                                    reactions:
                                      nullable: true
                      cursor:
                        type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  comments:
                    - header: Seasoned Code commented on this
                      text: |-
                        Hiring!!

                        Backend Developer, Remote, $135k ✨

                        Reply if interested
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7151832408143626240
                      urn: urn:li:activity:7151832408143626240
                      author:
                        name: CrackedDevs.com
                        headline: 27,492 followers
                        urn: ''
                        id: urn:li:company:100187062
                        url: https://www.linkedin.com/company/crackeddevs/posts
                      postedAt:
                        timestamp: 1705129720722
                        fullDate: 2024-01-13 07:08:40.00 +0000 UTC
                        relativeDay: 1yr
                      edited: false
                      engagements:
                        totalReactions: 161
                        commentsCount: 301
                        repostsCount: 3
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 157
                          - reactionType: EMPATHY
                            reactionCount: 4
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D4E10AQF-MgVhO9e3LQ/image-shrink_1280/image-shrink_1280/0/1705079397677?e=1742817600&v=beta&t=XqU-RC00INzaGaGX2XiyblKQDsvZOua7qNKaUcrHZkE
                      resharedPostContent: null
                      Comment:
                        author:
                          name: Seasoned Code
                          headline: Software engineer & Ethical hacker
                          urn: ACoAADvqvpUBQNmOpFV4gGBY_Hy7rDSfifRDdxw
                          id: urn:li:member:1005239957
                          url: https://www.linkedin.com/in/seasonedcode
                          profilePictureURL: >-
                            https://media.licdn.com/dms/image/v2/D4E35AQFNQSry_ozLMw/profile-framedphoto-shrink_800_800/profile-framedphoto-shrink_800_800/0/1715750634698?e=1742817600&v=beta&t=KGoHMV3UAfkW598PU2zUXgAOiO7DYAWPOejw8GchL8Y
                        comment: Great opportunity I'm interested :)
                        createdAt: 1705129713822
                        permalink: >-
                          https://www.linkedin.com/feed/update/urn:li:activity:7151621394462568448?commentUrn=urn%3Ali%3Acomment%3A%28activity%3A7151621394462568448%2C7151832379202969600%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287151832379202969600%2Curn%3Ali%3Aactivity%3A7151621394462568448%29
                        edited: false
                        engagements:
                          totalReactions: 0
                          commentsCount: 0
                          repostsCount: 0
                          reactions: null
                    - header: Seasoned Code commented on this
                      text: |-
                        #everyone Assalamualaikom
                        Jumma Mubarak 💕
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7146396179969318912
                      urn: urn:li:activity:7146396179969318912
                      author:
                        name: Israt Jahan
                        headline: Attended Satkania M.U fazil madrasha
                        urn: ACoAAEW2zLEBF2P8EyyWkYr971Q99C7sSibAPP8
                        id: urn:li:member:1169607857
                        url: https://www.linkedin.com/in/israt-jahan-495848287
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E03AQGzhzzibr_dtw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1691765417095?e=1747872000&v=beta&t=-ztBEntXHTnisFWLM4ZShdlNkpaJAox6Cq--xnvE-vc
                      postedAt:
                        timestamp: 1703833622925
                        fullDate: 2023-12-29 07:07:02.00 +0000 UTC
                        relativeDay: 1yr
                      edited: false
                      engagements:
                        totalReactions: 3
                        commentsCount: 3
                        repostsCount: 0
                        reactions:
                          - reactionType: EMPATHY
                            reactionCount: 3
                      mediaContent: null
                      resharedPostContent: null
                      Comment:
                        author:
                          name: Seasoned Code
                          headline: Software engineer & Ethical hacker
                          urn: ACoAADvqvpUBQNmOpFV4gGBY_Hy7rDSfifRDdxw
                          id: urn:li:member:1005239957
                          url: https://www.linkedin.com/in/seasonedcode
                          profilePictureURL: >-
                            https://media.licdn.com/dms/image/v2/D4E35AQFNQSry_ozLMw/profile-framedphoto-shrink_800_800/profile-framedphoto-shrink_800_800/0/1715750634698?e=1742817600&v=beta&t=KGoHMV3UAfkW598PU2zUXgAOiO7DYAWPOejw8GchL8Y
                        comment: Jumma Mubarak too thanks :)
                        createdAt: 1703833612611
                        permalink: >-
                          https://www.linkedin.com/feed/update/urn:li:activity:7146365533330812928?commentUrn=urn%3Ali%3Acomment%3A%28activity%3A7146365533330812928%2C7146396136709242881%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287146396136709242881%2Curn%3Ali%3Aactivity%3A7146365533330812928%29
                        edited: false
                        engagements:
                          totalReactions: 1
                          commentsCount: 1
                          repostsCount: 0
                          reactions:
                            - reactionType: EMPATHY
                              reactionCount: 1
                    - header: Seasoned Code commented on this
                      text: >-
                        Did you know, you can use <kbd> tags in your Markdown on
                        GitHub to make text appear like a button. It's perfect
                        for documenting things like keyboard shortcuts and game
                        controls in your READMEs, wikis and issues.
                      url: >-
                        https://www.linkedin.com/feed/update/urn:li:activity:7146217506456686592
                      urn: urn:li:activity:7146217506456686592
                      author:
                        name: GitHub
                        headline: 4,702,521 followers
                        urn: ''
                        id: urn:li:company:1418841
                        url: https://www.linkedin.com/company/github/posts
                      postedAt:
                        timestamp: 1703791023840
                        fullDate: 2023-12-28 19:17:03.00 +0000 UTC
                        relativeDay: 1yr
                      edited: false
                      engagements:
                        totalReactions: 3596
                        commentsCount: 62
                        repostsCount: 119
                        reactions:
                          - reactionType: LIKE
                            reactionCount: 3086
                          - reactionType: INTEREST
                            reactionCount: 357
                          - reactionType: EMPATHY
                            reactionCount: 119
                          - reactionType: PRAISE
                            reactionCount: 27
                          - reactionType: APPRECIATION
                            reactionCount: 6
                          - reactionType: ENTERTAINMENT
                            reactionCount: 1
                      mediaContent:
                        - type: image
                          url: >-
                            https://media.licdn.com/dms/image/v2/D5610AQF8YWupvdP3mQ/image-shrink_1280/image-shrink_1280/0/1703781003938?e=1742817600&v=beta&t=x8gP9Sw9TEGoEyyeDNGo2YsO6QBFSmKwMisdBZ5OxvE
                      resharedPostContent: null
                      Comment:
                        author:
                          name: Seasoned Code
                          headline: Software engineer & Ethical hacker
                          urn: ACoAADvqvpUBQNmOpFV4gGBY_Hy7rDSfifRDdxw
                          id: urn:li:member:1005239957
                          url: https://www.linkedin.com/in/seasonedcode
                          profilePictureURL: >-
                            https://media.licdn.com/dms/image/v2/D4E35AQFNQSry_ozLMw/profile-framedphoto-shrink_800_800/profile-framedphoto-shrink_800_800/0/1715750634698?e=1742817600&v=beta&t=KGoHMV3UAfkW598PU2zUXgAOiO7DYAWPOejw8GchL8Y
                        comment: Love this :)
                        createdAt: 1703791018952
                        permalink: >-
                          https://www.linkedin.com/feed/update/urn:li:activity:7146175481602580481?commentUrn=urn%3Ali%3Acomment%3A%28activity%3A7146175481602580481%2C7146217485950746624%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287146217485950746624%2Curn%3Ali%3Aactivity%3A7146175481602580481%29
                        edited: false
                        engagements:
                          totalReactions: 0
                          commentsCount: 0
                          repostsCount: 0
                          reactions: null
                  cursor: >-
                    dXJuOmxpOmFjdGl2aXR5OjcxNDYyMTc1MDY0NTY2ODY1OTItMTcwMzc5MTAxODk1MQ==
      tags:
        - Comments
      description: Get all comments made by a user using their URN.
  /api/v1/comments/likes:
    get:
      summary: Comment's Likes
      parameters:
        - name: urn
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: 7366111065878716416,7366148912597852160
        - name: start
          in: query
          schema:
            type: string
          example: '0'
      responses:
        '200':
          description: Comment's Likes
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      currentPage:
                        type: integer
                      likes:
                        type: array
                        items:
                          type: object
                          properties:
                            actor:
                              type: object
                              properties:
                                name:
                                  type: string
                                headline:
                                  type: string
                                urn:
                                  type: string
                                id:
                                  type: string
                                  format: utc-millisec
                                url:
                                  type: string
                                  format: uri
                                profilePictureURL:
                                  type: string
                                  format: uri
                            reactionType:
                              type: string
                      pages:
                        type: integer
                      totalLikes:
                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  currentPage: 1
                  likes:
                    - actor:
                        name: Nate Hedglin
                        headline: Lead Software Engineer
                        urn: ACoAAAvcxBkB2L3d4YiHfFwxPkGA7vyID3MhuIs
                        id: '199017497'
                        url: >-
                          https://www.linkedin.com/in/ACoAAAvcxBkB2L3d4YiHfFwxPkGA7vyID3MhuIs
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C5603AQHPXKUrU-8MvQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1657655108694?e=1759363200&v=beta&t=Jejb-Xxfax7irxQKF3G70aTtxlCDRU00jMuAP0Uqee4
                      reactionType: LIKE
                    - actor:
                        name: Mamoudou SYLLA
                        headline: Software Engineer | C/C++ | JAVA | PYTHON
                        urn: ACoAAB55N70BPD5UTDLXoSel0adPZUlpNECriYA
                        id: '511260605'
                        url: >-
                          https://www.linkedin.com/in/ACoAAB55N70BPD5UTDLXoSel0adPZUlpNECriYA
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/C4E03AQFC4LWL3g-8pA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1582395677393?e=1759363200&v=beta&t=_XxfUTx3BmJ59s_Z-iGBlmvoajzPoVMRnEn6Kli65g0
                      reactionType: LIKE
                    - actor:
                        name: Karl Nicholas
                        headline: Java Enterprise Developer
                        urn: ACoAABTenTgBUOU6MNmX9iLvvrvc-vDh4Av1BSM
                        id: '350133560'
                        url: >-
                          https://www.linkedin.com/in/ACoAABTenTgBUOU6MNmX9iLvvrvc-vDh4Av1BSM
                        profilePictureURL: >-
                          https://media.licdn.com/dms/image/v2/D4E35AQE__yAg9AoIjQ/profile-framedphoto-shrink_800_800/B4EZVhdtfvHcAg-/0/1741096933804?e=1757070000&v=beta&t=wDfxhn1GZz9GlG7142KUmgA7K89LH0_lGWE4MMAyUoo
                      reactionType: LIKE
                  pages: 1
                  totalLikes: 3
      tags:
        - Comments
      description: Get all likes for a comment using its URN.
  /api/v1/geos/name-lookup:
    get:
      summary: Geo Look up
      parameters:
        - name: query
          in: query
          required: true
          description: the search query it can be 1 char or multiple
          deprecated: false
          schema:
            type: string
          example: Washington
      responses:
        '200':
          description: Geo Look up
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      geoIds:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: utc-millisec
                            type:
                              type: string
                            displayName:
                              type: string
                      query:
                        type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  geoIds:
                    - id: '104383890'
                      type: GEO
                      displayName: Washington, District of Columbia, United States
                    - id: '104116203'
                      type: GEO
                      displayName: Seattle, Washington, United States
                    - id: '106549849'
                      type: GEO
                      displayName: Washington, Pennsylvania, United States
                    - id: '119500900'
                      type: GEO
                      displayName: Washington, England, United Kingdom
                    - id: '101655364'
                      type: GEO
                      displayName: Washington, Michigan, United States
                    - id: '104145663'
                      type: GEO
                      displayName: Redmond, Washington, United States
                    - id: '107126158'
                      type: GEO
                      displayName: Washington, Missouri, United States
                    - id: '104583862'
                      type: GEO
                      displayName: Washington, North Carolina, United States
                    - id: '107079254'
                      type: GEO
                      displayName: Washington, Illinois, United States
                    - id: '105749350'
                      type: GEO
                      displayName: Washington, Utah, United States
                  query: Washington
      tags:
        - Geos Look up
      description: >-
        Search locations and get their Geo IDs. This is a lookup endpoint that
        provides suggestions based on your query.
  /api/v1/g/title-skills-lookup:
    get:
      summary: Skills & Titles lookup
      parameters:
        - name: query
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: software
      responses:
        '200':
          description: Skills & Titles lookup
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      results:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: color
                            type:
                              type: string
                            displayName:
                              type: string
                      query:
                        type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  results:
                    - id: '242'
                      type: SKILL
                      displayName: Software
                    - id: '9'
                      type: TITLE
                      displayName: Software Engineer
                    - id: '602'
                      type: SKILL
                      displayName: Software Development
                    - id: '2130'
                      type: SKILL
                      displayName: Software Development Life Cycle (SDLC)
                    - id: '2157'
                      type: SKILL
                      displayName: Software Project Management
                    - id: '1989'
                      type: SKILL
                      displayName: Enterprise Software
                    - id: '39'
                      type: TITLE
                      displayName: Senior Software Engineer
                    - id: '3096'
                      type: SKILL
                      displayName: Software Documentation
                    - id: '2326'
                      type: SKILL
                      displayName: Software as a Service (SaaS)
                    - id: '366'
                      type: SKILL
                      displayName: Microsoft Office
                  query: software
      tags:
        - Skills & Services & industries Lookup
      description: >-
        Lookup a keyword to get relevant skills and job titles with their IDs.
        This is a suggestion-style endpoint for query autocomplete and
        filtering.
  /api/v1/g/services-lookup:
    get:
      summary: Services Lookup
      parameters:
        - name: query
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: software
      responses:
        '200':
          description: Services Lookup
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      results:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: utc-millisec
                            urn:
                              type: string
                              format: uri
                            name:
                              type: string
                            title:
                              type: string
                      query:
                        type: string
                      count:
                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  results:
                    - id: '50321'
                      urn: urn:li:fsd_standardizedSkill:50321
                      name: Software Testing
                      title: Software Testing
                    - id: '68'
                      urn: urn:li:fsd_standardizedSkill:68
                      name: Technical Support
                      title: Technical Support
                    - id: '2265'
                      urn: urn:li:fsd_standardizedSkill:2265
                      name: Cybersecurity
                      title: Cybersecurity
                    - id: '3166'
                      urn: urn:li:fsd_standardizedSkill:3166
                      name: Custom Software Development
                      title: Custom Software Development
                    - id: '50304'
                      urn: urn:li:fsd_standardizedSkill:50304
                      name: Mobile Application Development
                      title: Mobile Application Development
                    - id: '1383'
                      urn: urn:li:fsd_standardizedSkill:1383
                      name: Application Development
                      title: Application Development
                  query: software
                  count: 20
      tags:
        - Skills & Services & industries Lookup
      description: >-
        Lookup a keyword to get relevant services with their IDs. This is a
        suggestion-style endpoint for query autocomplete and filtering.
  /status:
    get:
      summary: LinkdAPI status
      responses:
        '200':
          description: LinkdAPI status
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    nullable: true
              example:
                success: true
                statusCode: 200
                message: LinkdAPI service running without any issues
                errors: null
                data: null
      tags:
        - LinkdAPI Service
      description: status of LinkdAPI service
  /api/v1/jobs/job/details-v2:
    get:
      summary: Job Details V2
      parameters:
        - name: jobId
          in: query
          required: true
          description: 'Job ID, all jobs status supported '
          deprecated: false
          schema:
            type: integer
          example: '4335513720'
      responses:
        '200':
          description: Job Details V2
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      jobDetails:
                        type: object
                        properties:
                          id:
                            type: string
                            format: utc-millisec
                          title:
                            type: string
                          description:
                            type: string
                            format: style
                          State:
                            type: string
                          listedAt:
                            type: integer
                          createdAt:
                            type: integer
                          originalListedAt:
                            type: integer
                          closedAt:
                            type: integer
                          expireAt:
                            type: integer
                          jobFunctions:
                            type: array
                            items:
                              type: string
                          companyApplyUrl:
                            type: string
                            format: uri
                          repostedJob:
                            type: boolean
                          contractorJob:
                            type: boolean
                          role:
                            type: object
                            properties:
                              id:
                                type: string
                                format: utc-millisec
                              name:
                                type: string
                          employmentStatus:
                            type: string
                          industries:
                            type: array
                            items:
                              type: object
                              properties:
                                id:
                                  type: string
                                  format: utc-millisec
                                name:
                                  type: string
                      company:
                        type: object
                        properties:
                          name:
                            type: string
                          id:
                            type: string
                            format: utc-millisec
                          universalName:
                            type: string
                          url:
                            type: string
                            format: uri
                          logo:
                            type: string
                            format: uri
                      location:
                        type: object
                        properties:
                          id:
                            type: string
                            format: utc-millisec
                          countryISOCode:
                            type: string
                          defaultLocalizedName:
                            type: string
                          abbreviatedLocalizedName:
                            type: string
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  jobDetails:
                    id: '4090994054'
                    title: Senior Software Engineer - Go
                    description: >-
                      What do we do?


                      Paddle offers SaaS companies a completely different
                      approach to their payment infrastructure. Instead of
                      assembling and maintaining a complex stack of
                      payments-related apps and services, we’re a Merchant of
                      Record for our customers. That means we take away 100% of
                      the pain of payment fragmentation. It’s faster, safer,
                      cheaper, and, above all, way better.


                      We’re backed by investors including KKR, FTV Capital,
                      Kindred, Notion, and 83North and serve over 3000 software
                      sellers in 245 territories globally.


                      The role: 


                      As a Senior Software Engineer in our Payments and Checkout
                      Group, you’ll be developing features, testing hypotheses
                      and rolling out changes to improve payment acceptance and
                      checkout conversion. Working closely with your team, you
                      will impact how our Payments and Checkout technologies
                      perform for our customers.


                      You’ll get to collaborate with multiple teams, alongside
                      engineers, product managers, and designers. Getting
                      involved in a wide range of areas which will provide you
                      with plenty of opportunities to develop your own skills
                      and ultimately grow your career as a valued member of the
                      engineering team.


                      What you'll do: 


                      Be a part of our Payments and Checkout group, working on
                      projects that aim to improve payment acceptance, checkout
                      conversion, global compliance and local acquiring. Using
                      data, you’ll have the opportunity to directly influence
                      the team's success.Contribute high-quality Go code in a
                      large codebase, in both existing and brand new
                      servicesCollaborate on features to a high standard from
                      initial concept and planning, right through to rollout,
                      with other engineers and non-technical colleagues, and
                      with excellent written and verbal communicationLevel-up
                      the team’s engineering practices through mentoring other
                      engineers, and by leading the technical planning of team
                      initiativesHelp to continuously improve the reliability
                      and scalability of Paddle’s high-traffic event-driven
                      systemImprove the team’s software quality by implementing
                      automated tests, and also by having an eye for edge-cases
                      and system designPractise DevOps: you’re responsible for
                      getting your code to production, supporting and monitoring
                      its performance, and helping to keep our AWS
                      infrastructure efficient


                      We'd love to hear from you if you:


                      Have a solid development background with GoHave experience
                      designing and building systems to handle high traffic at
                      scale in a cloud-based environment in AWSAre someone who
                      enjoys collaborating with our technical and non-technical
                      departmentsHave a proactive attitude towards finding ways
                      to improve the code and team processesA strong
                      understanding of the development process - from design
                      through to deployment, maintenance, and what that means
                      for day-to-day developmentAre someone who takes pride in
                      what you buildAre interested in what new tools and
                      techniques you could introduce to us!


                      Everyone is welcome at Paddle


                      At Paddle, we’re committed to removing invisible barriers,
                      both for our customers and within our own teams. We
                      recognise and celebrate that every Paddler is unique and
                      we welcome every individual perspective. As an inclusive
                      employer, we don’t care if, or where, you studied, what
                      you look like or where you’re from. We’re more interested
                      in your craft, curiosity, passion for learning and what
                      you’ll add to our culture. We encourage you to apply even
                      if you don’t match every part of the job ad, especially if
                      you’re part of an underrepresented group.


                      Please let us know if there’s anything we can do to better
                      support you through the application process and in the
                      workplace. We will do everything we can to support any
                      accommodations needed. We’re committed to building a
                      diverse team where everyone feels safe to be their
                      authentic self. Let’s grow together.


                      Why you’ll love working at Paddle


                      We are a diverse, growing group of Paddlers across the
                      globe who pride ourselves on our transparent,
                      collaborative and respectful culture.


                      We live and breathe our values, which are:


                      Paddle For Others


                      Paddle together


                      Paddle simply


                      We offer a full suite of benefits, including attractive
                      salaries, stock options, retirement plans, private
                      healthcare and well-being initiatives.


                      We are a ‘digital-first’ company, which means you can work
                      remotely, from one of our stylish hubs, or even a bit of
                      both! We offer all team members unlimited holidays and
                      enhanced parental leave. We invest in learning and will
                      help you with your personal development via constant
                      exposure to new challenges, an annual learning fund, and
                      regular internal and external training.
                    State: CLOSED
                    listedAt: 1737542467000
                    createdAt: 1733409408000
                    originalListedAt: 1733409408000
                    closedAt: 1738267307000
                    expireAt: 1740947449000
                    jobFunctions:
                      - ENG
                      - IT
                    companyApplyUrl: >-
                      https://jobs.ashbyhq.com/paddle/64e57282-634f-4f5e-96b9-0da99ab59853?utm_source=LinkedIn
                    repostedJob: true
                    contractorJob: false
                    role:
                      id: '39'
                      name: Senior Software Engineer
                    employmentStatus: Full-time
                    industries:
                      - id: '4'
                        name: Software Development
                  company:
                    name: Paddle
                    id: '2695021'
                    universalName: paddle
                    url: https://www.linkedin.com/company/paddle/
                    logo: >-
                      https://media.licdn.com/dms/image/v2/D4E0BAQH14BCfSkjbGA/company-logo_400_400/B4EZWP76iEHcAY-/0/1741876603367/paddle_logo?e=1770249600&v=beta&t=f5KwKgNqBdery31y7hUg6JG7lBKtZcfhP9bJRihdph8
                  location:
                    id: '101165590'
                    countryISOCode: GB
                    defaultLocalizedName: United Kingdom
                    abbreviatedLocalizedName: United Kingdom
      tags:
        - Jobs
      description: >-
        Get job details by jobId using V2. This endpoint supports both open and
        closed jobs.
  /api/v1/search/jobs:
    get:
      summary: Search Jobs V2
      parameters:
        - name: keyword
          in: query
          description: Search keyword
          schema:
            type: string
        - name: start
          in: query
          description: 'Pagination offset for results (default: 0) incr by ${count}'
          schema:
            type: integer
          example: '0'
        - name: sortBy
          in: query
          description: 'Sort results by: "relevance" (default) or "date_posted"             '
          schema:
            type: string
        - name: datePosted
          in: query
          description: 'Filter jobs posted within: "24h", "1week", or "1month"'
          schema:
            type: string
        - name: experience
          in: query
          description: >-
            Required experience level (comma-separated): internship,
            entry_level, associate, mid_senior, director, executive
          schema:
            type: string
        - name: jobTypes
          in: query
          description: >-
            Employment type (comma-separated): full_time, part_time, contract,
            temporary, internship, volunteer, other
          schema:
            type: string
        - name: workplaceTypes
          in: query
          description: 'Work arrangement (comma-separated): onsite, remote, hybrid'
          schema:
            type: string
        - name: salary
          in: query
          description: >-
            Minimum annual salary threshold: 20k, 30k, 40k, 50k, 60k, 70k, 80k,
            90k, 100k
          schema:
            type: string
        - name: companies
          in: query
          description: Filter by company IDs (comma-separated, e.g., 1441,1337)
          schema:
            type: string
          example: 1441,1337
        - name: industries
          in: query
          description: Filter by industry IDs (comma-separated)
          schema:
            type: string
        - name: locations
          in: query
          description: |-
            LinkedIn's internal geographic identifier (optional)
            Examples: 103644278,102571732
          schema:
            type: string
        - name: functions
          in: query
          description: Filter by job function codes (comma-separated, e.g., "it,sales,eng")
          schema:
            type: string
        - name: titles
          in: query
          description: Filter by job title IDs (comma-separated)
          schema:
            type: string
        - name: Benefits
          in: query
          description: >-
            Filter by benefits offered (comma-separated): medical_ins,
            dental_ins, vision_ins, 401k, pension, paid_maternity,     
              paid_paternity, commuter, student_loan, tuition, disability_ins
          schema:
            type: string
        - name: commitments
          in: query
          description: >-
            Filter by company values (comma-separated): dei, environmental,
            work_life, social_impact, career_growth
          schema:
            type: string
        - name: easyApply
          in: query
          description: Show only LinkedIn Easy Apply jobs (true/false)
          schema:
            type: boolean
          example: 'true'
        - name: verifiedJob
          in: query
          description: Show only verified job postings (true/false)
          schema:
            type: boolean
        - name: under10Applicants
          in: query
          description: Show jobs with fewer than 10 applicants (true/false)
          schema:
            type: boolean
        - name: fairChance
          in: query
          description: >-
            Show jobs from employers who consider applicants with criminal
            records (true/false)
          schema:
            type: boolean
        - name: count
          in: query
          schema:
            type: integer
          example: '25'
      responses:
        '200':
          description: Search Jobs V2
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      jobs:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: utc-millisec
                            url:
                              type: string
                              format: uri
                            title:
                              type: string
                            companyName:
                              type: string
                            companyLogo:
                              type: string
                              format: uri
                            location:
                              type: string
                            listedAt:
                              type: integer
                            isPromoted:
                              type: boolean
                            isEasyApply:
                              type: boolean
                      total:
                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  jobs:
                    - id: '4386925432'
                      url: https://www.linkedin.com/jobs/view/4386925432
                      title: Data Entry Clerk (Virtual Work)
                      companyName: Houston Graduate School of Theology
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C4D0BAQGjJyYM3s9Njg/company-logo_400_400/company-logo_400_400/0/1630483466513/houston_graduate_school_of_theology_logo?e=1775088000&v=beta&t=uTAjimx95yhTVRQz3h9vB1iryUl29WrE_mlQk1NoFVU
                      location: United States (Remote)
                      listedAt: 1773765000000
                      isPromoted: false
                      isEasyApply: false
                    - id: '4385939324'
                      url: https://www.linkedin.com/jobs/view/4385939324
                      title: General Labour
                      companyName: Pivotal Temporary Staffing
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D560BAQG-ob4AwdJFxw/company-logo_400_400/B56Zbu28jJG4AY-/0/1747764103879/pivotal_temporary_staffing_logo?e=1775088000&v=beta&t=SNaINpsHu3wsVR74AabU7y7KVcPxtex-ovuZcYBCgZQ
                      location: Richmond Hill, ON (On-site)
                      listedAt: 1773764280000
                      isPromoted: false
                      isEasyApply: true
                      insightText: Company review time is typically 1 week
                    - id: '4386917572'
                      url: https://www.linkedin.com/jobs/view/4386917572
                      title: Remote Live Chat Specialist
                      companyName: SysCom, Co
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C4D0BAQEKS-52y3fPzg/company-logo_400_400/company-logo_400_400/0/1631333343734?e=1775088000&v=beta&t=S-eWBsKp_H7xRfETxg86Zgy758izCl2UjfEEpbbjCdk
                      location: United States (Remote)
                      listedAt: 1773765015000
                      isPromoted: false
                      isEasyApply: false
                    - id: '4385929754'
                      url: https://www.linkedin.com/jobs/view/4385929754
                      title: "Associate Program Manager Job\_ "
                      companyName: Elm Company
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D4D0BAQHY-WqwzWXrew/company-logo_400_400/company-logo_400_400/0/1736050175521/elm_logo?e=1775088000&v=beta&t=1NgAnCpT0xD0YfTh2Y-7Kzx03eb8iMSaScpPZw1IC-c
                      location: Riyadh, Riyadh, Saudi Arabia (On-site)
                      listedAt: 1773763088000
                      isPromoted: false
                      isEasyApply: false
                    - id: '4384492473'
                      url: https://www.linkedin.com/jobs/view/4384492473
                      title: Remote Customer Service
                      companyName: HK Kommunal
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C4E0BAQGA3SHe5K3FDg/company-logo_400_400/company-logo_400_400/0/1630608391826/hk_kommunal_logo?e=1775088000&v=beta&t=cXhC6DRvtHp4ZVXI64TTcRkc6UtMvfafU8Cuy8BYfzc
                      location: United Arab Emirates (Remote)
                      listedAt: 1773764197000
                      isPromoted: false
                      isEasyApply: true
                    - id: '4386732860'
                      url: https://www.linkedin.com/jobs/view/4386732860
                      title: Atención al Cliente
                      companyName: Palma Aquarium
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C4D0BAQHKCTzIOkLYAg/company-logo_400_400/company-logo_400_400/0/1630576142725/palma_aquarium_logo?e=1775088000&v=beta&t=W_jvqRwS7U_dEFO6YWERrM7Icnr_48PhCK0mTI4Y6UY
                      location: Palma, Balearic Islands, Spain (On-site)
                      listedAt: 1773764522000
                      isPromoted: true
                      isEasyApply: true
                    - id: '4385257433'
                      url: https://www.linkedin.com/jobs/view/4385257433
                      title: Customer Success Executive
                      companyName: Peko
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D4D0BAQHPi7IhtuRYIA/company-logo_400_400/company-logo_400_400/0/1731341724136/pekoit_logo?e=1775088000&v=beta&t=xgwBbBPOwb7yXJwqkVoz8fVBneyeIxaa4ZsjX5yk6kA
                      location: India (Remote)
                      listedAt: 1773764901000
                      isPromoted: false
                      isEasyApply: true
                    - id: '4385812281'
                      url: https://www.linkedin.com/jobs/view/4385812281
                      title: "Recruiter - Sourcer\_ "
                      companyName: Steadily Insurance Company
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D560BAQFRxAnRJOgJEw/company-logo_400_400/company-logo_400_400/0/1734646438168/steadily_logo?e=1775088000&v=beta&t=1gdGcZVUwumM_j3pWOUtbBIjVb66wxMmTxBhLQiT6o0
                      location: Overland Park, KS
                      listedAt: 1773762753000
                      isPromoted: false
                      isEasyApply: false
                    - id: '4386908979'
                      url: https://www.linkedin.com/jobs/view/4386908979
                      title: Project Administrator
                      companyName: Lime Dishy
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D4E0BAQHn3JYnJevC1A/company-logo_400_400/B4EZzNA.xRIMAY-/0/1772966112696/bleekifylimited_logo?e=1775088000&v=beta&t=jh-akA5OtXh1RVXjgwug2eUyORUEJ9rOztFA-NGtqxM
                      location: United Kingdom (Remote)
                      listedAt: 1773764970000
                      isPromoted: false
                      isEasyApply: true
                    - id: '4384496286'
                      url: https://www.linkedin.com/jobs/view/4384496286
                      title: "Influencer Talent Manager\_ "
                      companyName: Grail Talent
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C4D0BAQEzwKlelrclcg/company-logo_400_400/company-logo_400_400/0/1655397266054/grail_talent_logo?e=1775088000&v=beta&t=dvPFVoG77NIs44MXb0Ap6GcNMjprEHxsy6gdwXn3U48
                      location: Ottawa, ON (Remote)
                      listedAt: 1773763269000
                      isPromoted: false
                      isEasyApply: false
                    - id: '4384481958'
                      url: https://www.linkedin.com/jobs/view/4384481958
                      title: >-
                        Event Coordinator - Paderborn (Working
                        Student/Freelancer Part-Time)
                      companyName: Fever
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C4D0BAQGZ34Z5Azy0Qw/company-logo_400_400/company-logo_400_400/0/1630556337246/fever_inc_logo?e=1775088000&v=beta&t=9IpgL4EIZhMuLkwjs8_gpQTjLt-FLZ8Bu66jc1296ns
                      location: Paderborn, North Rhine-Westphalia, Germany (On-site)
                      listedAt: 1773763362000
                      isPromoted: true
                      isEasyApply: false
                    - id: '4386907809'
                      url: https://www.linkedin.com/jobs/view/4386907809
                      title: Human Resources Intern
                      companyName: City of Plymouth
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C4E0BAQFJOm60aHz0NQ/company-logo_400_400/company-logo_400_400/0/1630580618274/city_of_plymouth_logo?e=1775088000&v=beta&t=lDyNvypY5OFuN6R0qW0T2PJmWrnSpFtupsOfnc0oLjs
                      location: Plymouth, MN (On-site)
                      listedAt: 1773763453000
                      isPromoted: false
                      isEasyApply: false
                    - id: '4385935567'
                      url: https://www.linkedin.com/jobs/view/4385935567
                      title: Freelance Social Media Manager (Remote)
                      companyName: PrimeRishta.com
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D560BAQHECDe8lzimcA/company-logo_400_400/company-logo_400_400/0/1727857127259/prime_rishta_logo?e=1775088000&v=beta&t=5o7sMt10MFWXwbYYcBZKBRNHvDnK94XJRRQfYCcgMB4
                      location: India (Remote)
                      listedAt: 1773764519000
                      isPromoted: false
                      isEasyApply: true
                      insightText: Company review time is typically 1 week
                    - id: '4386925364'
                      url: https://www.linkedin.com/jobs/view/4386925364
                      title: Recepcionista en H10 Croma Málaga
                      companyName: H10 Hotels
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D4D0BAQFFVC7qAwPPFw/company-logo_400_400/B4DZXcKa4VHwAY-/0/1743155474339/h10_hotels_logo?e=1775088000&v=beta&t=NPnqNgucl4GWDa_VLaPo798p8hMt27Tl8EquhtEyIJo
                      location: Málaga, Andalusia, Spain (On-site)
                      listedAt: 1773764433000
                      isPromoted: false
                      isEasyApply: false
                    - id: '4386919351'
                      url: https://www.linkedin.com/jobs/view/4386919351
                      title: "Team Leader Nike (Responsable d’équipe) – H / F CDI\_ "
                      companyName: Nike
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D560BAQHJk7IdfuV1Dw/company-logo_400_400/company-logo_400_400/0/1732131503851/nike_logo?e=1775088000&v=beta&t=6DYmNFnh8H8n2kDAunN-XTE4eMMe1zw3ZrJlrddieiU
                      location: Mulhouse, Grand Est, France (On-site)
                      listedAt: 1773763650000
                      isPromoted: true
                      isEasyApply: false
                    - id: '4386911251'
                      url: https://www.linkedin.com/jobs/view/4386911251
                      title: "Customer Happiness Hero (Remote)\_ "
                      companyName: Lensa
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D4D0BAQEkHa-0Aki9XQ/company-logo_400_400/B4DZaKylu7GsAY-/0/1746085240184/lensa_logo?e=1775088000&v=beta&t=FiLz0zZLSHJlWEL05YsQ0C04LiPINgtD-6ZTSMt8UAg
                      location: Detroit, MI (Remote)
                      listedAt: 1773764889000
                      isPromoted: false
                      isEasyApply: false
                    - id: '4384487668'
                      url: https://www.linkedin.com/jobs/view/4384487668
                      title: "Store Associate (Mobile)\_ "
                      companyName: Landmark Group
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D4D0BAQFCZ8godwrqiQ/company-logo_400_400/company-logo_400_400/0/1736320079855/landmark_group_logo?e=1775088000&v=beta&t=JasRhl3YZJ7EQ5qvQ4D7jV9jtaWiea3tNBptlnZfxnY
                      location: Dubai, United Arab Emirates (On-site)
                      listedAt: 1773762849000
                      isPromoted: false
                      isEasyApply: true
                    - id: '4386092404'
                      url: https://www.linkedin.com/jobs/view/4386092404
                      title: "신세계명동DF SC 채용\_ "
                      companyName: SWAROVSKI
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D4D0BAQHKf63-nVw74w/company-logo_400_400/B4DZz7ca.zIkAY-/0/1773745058119/swarovski_logo?e=1775088000&v=beta&t=W7oqohYSzkgakwJEqOhXlvMUSpZSrR2fZRY-udBUmb8
                      location: Seoul Incheon Metropolitan Area
                      listedAt: 1773763328000
                      isPromoted: false
                      isEasyApply: false
                    - id: '4386913864'
                      url: https://www.linkedin.com/jobs/view/4386913864
                      title: "Recruitment Coordinator\_ "
                      companyName: Korn Ferry
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D560BAQHruq7Wq8U5Mw/company-logo_400_400/B56ZUpzb1UGoAY-/0/1740163104457/kornferry_logo?e=1775088000&v=beta&t=RgnGAfpoNlRl4dKLfZ0Bld3CDtk0SXrON7lB460eOoE
                      location: United States (Remote)
                      listedAt: 1773764631000
                      isPromoted: false
                      isEasyApply: false
                    - id: '4385929740'
                      url: https://www.linkedin.com/jobs/view/4385929740
                      title: "First at FENDI Internship Program - Human Resources UK\_ "
                      companyName: Fendi
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D4D0BAQFFvhXhBhLJRQ/company-logo_400_400/B4DZx_crCgJYAY-/0/1771664749368/fendi_logo?e=1775088000&v=beta&t=1lmmTcPp5w-i1Cwu6kP1Y7avawFxL6fJ42PkWt5LfKo
                      location: London, England, United Kingdom
                      listedAt: 1773762987000
                      isPromoted: false
                      isEasyApply: false
                    - id: '4385942230'
                      url: https://www.linkedin.com/jobs/view/4385942230
                      title: Human Resource Coordinator
                      companyName: Summit Talent Solutions Inc.com
                      location: Canada (Remote)
                      listedAt: 1773763764000
                      isPromoted: false
                      isEasyApply: true
                    - id: '4384490712'
                      url: https://www.linkedin.com/jobs/view/4384490712
                      title: "Office Administrative Assistant\_ "
                      companyName: AMH
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D560BAQGkPaBXVTao1A/company-logo_400_400/company-logo_400_400/0/1696443954125/amhliving_logo?e=1775088000&v=beta&t=ZbWpJ4emdeXLkkS5BVk4DtGeZMch0vDnpUxafM16JnU
                      location: Los Angeles County, CA (Remote)
                      listedAt: 1773765178000
                      isPromoted: false
                      isEasyApply: true
                    - id: '4386911861'
                      url: https://www.linkedin.com/jobs/view/4386911861
                      title: "Asistente Atracción e Integración de Talento\_ "
                      companyName: Banco BHD
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C560BAQGaOfXR66waAQ/company-logo_400_400/company-logo_400_400/0/1656644930947/bancobhd_logo?e=1775088000&v=beta&t=UlpehdBwIKtKS3Yif2iOHnPQ34Hwipz0n8E3X2bX558
                      location: Santiago, Dominican Republic (On-site)
                      listedAt: 1773764080000
                      isPromoted: false
                      isEasyApply: false
                    - id: '4384702235'
                      url: https://www.linkedin.com/jobs/view/4384702235
                      title: Asistente de Reclutamiento y Selección IT
                      companyName: Empresa Confidencial
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/D4D0BAQE5LKe2moMnHg/company-logo_400_400/company-logo_400_400/0/1736630274411/empresa_confidencial_logo?e=1775088000&v=beta&t=0F4-QqqoeCQUg2kUJD6n9pgbdxCwiF1jQ0QveEYoCyo
                      location: Lima, Peru (Remote)
                      listedAt: 1773764644000
                      isPromoted: false
                      isEasyApply: false
                    - id: '4385946040'
                      url: https://www.linkedin.com/jobs/view/4385946040
                      title: "Relationship Manager\_ "
                      companyName: Axis Bank
                      companyLogo: >-
                        https://media.licdn.com/dms/image/v2/C510BAQGLnroiQh32ng/company-logo_400_400/company-logo_400_400/0/1630567599182/axis_bank_logo?e=1775088000&v=beta&t=XYaAfIUrL6YivL5Q8Q0yqFIAJsz5CZAy1A1ftK0mvnU
                      location: Lucknow, Uttar Pradesh, India (On-site)
                      listedAt: 1773762598000
                      isPromoted: false
                      isEasyApply: true
                  total: 25
      tags:
        - Search
      description: >-
        Search jobs using all available filters (V2). This is the most reliable
        and accurate version.
  /api/v1/jobs/funcs/lookup:
    get:
      summary: Job Function Lookup
      parameters:
        - name: query
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: engineering
      responses:
        '200':
          description: Job Function Lookup
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      results:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                            urn:
                              type: string
                              format: uri
                            name:
                              type: string
                            title:
                              type: string
                      query:
                        type: string
                      count:
                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  results:
                    - id: eng
                      urn: urn:li:jobFunction:eng
                      name: Engineering
                      title: Engineering
                  query: engineering
                  count: 1
      tags:
        - Jobs
      description: >-
        Look up job functions by query. This provides suggestions for a given
        search term, which can be used as filters in the Search Jobs endpoint
        and other features.
  /api/v1/g/industry-lookup:
    get:
      summary: industries Lookup
      parameters:
        - name: query
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: software
      responses:
        '200':
          description: industries Lookup
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      results:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: utc-millisec
                            urn:
                              type: string
                              format: uri
                            name:
                              type: string
                            title:
                              type: string
                      query:
                        type: string
                      count:
                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  results:
                    - id: '4'
                      urn: urn:li:industry:4
                      name: Software Development
                      title: Software Development
                    - id: '3130'
                      urn: urn:li:industry:3130
                      name: Data Security Software Products
                      title: Data Security Software Products
                    - id: '3102'
                      urn: urn:li:industry:3102
                      name: IT System Custom Software Development
                      title: IT System Custom Software Development
                    - id: '3101'
                      urn: urn:li:industry:3101
                      name: Desktop Computing Software Products
                      title: Desktop Computing Software Products
                    - id: '3100'
                      urn: urn:li:industry:3100
                      name: Mobile Computing Software Products
                      title: Mobile Computing Software Products
                    - id: '3099'
                      urn: urn:li:industry:3099
                      name: Embedded Software Products
                      title: Embedded Software Products
                  query: software
                  count: 6
      tags:
        - Skills & Services & industries Lookup
      description: >-
        Lookup a keyword to get relevant industries with their IDs. This is a
        suggestion-style endpoint for query autocomplete and filtering.
  /api/v1/companies/company/info-v2:
    get:
      summary: Get Company Details V2
      parameters:
        - name: id
          in: query
          required: true
          description: 'company ID '
          deprecated: false
          schema:
            type: integer
          example: '1441'
      responses:
        '200':
          description: Get Company Details V2
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      company:
                        type: object
                        properties:
                          id:
                            type: string
                            format: utc-millisec
                          name:
                            type: string
                          universalName:
                            type: string
                          linkedinUrl:
                            type: string
                            format: uri
                          description:
                            type: string
                          type:
                            type: string
                          images:
                            type: object
                            properties:
                              logo:
                                type: string
                                format: uri
                              cover:
                                type: string
                                format: uri
                          isClaimable:
                            type: boolean
                          backgroundCoverImages:
                            type: array
                            items:
                              type: object
                              properties:
                                url:
                                  type: string
                                  format: uri
                                width:
                                  type: integer
                                height:
                                  type: integer
                          logos:
                            type: array
                            items:
                              type: object
                              properties:
                                url:
                                  type: string
                                  format: uri
                                width:
                                  type: integer
                                height:
                                  type: integer
                          staffCount:
                            type: integer
                          headquarter:
                            type: object
                            properties:
                              countryCode:
                                type: string
                              geographicArea:
                                type: string
                              country:
                                type: string
                              city:
                                type: string
                              postalCode:
                                type: string
                                format: utc-millisec
                              headquarter:
                                type: boolean
                              line1:
                                type: string
                          locations:
                            type: array
                            items:
                              type: object
                              properties:
                                countryCode:
                                  type: string
                                geographicArea:
                                  type: string
                                country:
                                  type: string
                                city:
                                  type: string
                                postalCode:
                                  type: string
                                headquarter:
                                  type: boolean
                                line1:
                                  type: string
                          industriesV2:
                            type: array
                            items:
                              type: string
                          industriesLegacy:
                            type: array
                            items:
                              type: string
                          specialities:
                            type: array
                            items:
                              type: string
                          website:
                            type: string
                            format: uri
                          founded:
                            type: object
                            properties:
                              year:
                                type: integer
                              month:
                                type: integer
                              day:
                                type: integer
                          callToAction:
                            type: object
                            properties:
                              type:
                                type: string
                              displayText:
                                type: string
                              visible:
                                type: boolean
                              url:
                                type: string
                                format: uri
                          followerCount:
                            type: integer
                          staffCountRange:
                            type: string
                          topOrganizationListing:
                            type: object
                            properties:
                              rank:
                                type: integer
                              listName:
                                type: string
                              articleUrl:
                                type: string
                                format: uri
                              text:
                                type: string
                          pageVerification:
                            type: object
                            properties:
                              verified:
                                type: boolean
                              lastModifiedAt:
                                type: integer
                          availabeTabs:
                            type: array
                            items:
                              type: object
                              properties:
                                name:
                                  type: string
                                tabType:
                                  type: string
                      peopleAlsoFollow:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: utc-millisec
                            name:
                              type: string
                            industry:
                              type: string
                            followerCount:
                              type: integer
                            Url:
                              type: string
                              format: uri
                            logos:
                              type: array
                              items:
                                type: object
                                properties:
                                  url:
                                    type: string
                                    format: uri
                                  width:
                                    type: integer
                                  height:
                                    type: integer
                      affiliatedByJobs:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: utc-millisec
                            name:
                              type: string
                            industry:
                              type: string
                            followerCount:
                              type: integer
                            Url:
                              type: string
                              format: uri
                            logos:
                              type: array
                              items:
                                type: object
                                properties:
                                  url:
                                    type: string
                                    format: uri
                                  width:
                                    type: integer
                                  height:
                                    type: integer
                      affiliatedByEmployees:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: utc-millisec
                            name:
                              type: string
                            industry:
                              type: string
                            followerCount:
                              type: integer
                            Url:
                              type: string
                              format: uri
                            logos:
                              type: array
                              items:
                                type: object
                                properties:
                                  url:
                                    type: string
                                    format: uri
                                  width:
                                    type: integer
                                  height:
                                    type: integer
                      affiliatedByShowcases:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: utc-millisec
                            name:
                              type: string
                            industry:
                              type: string
                            followerCount:
                              type: integer
                            Url:
                              type: string
                              format: uri
                            logos:
                              type: array
                              items:
                                type: object
                                properties:
                                  url:
                                    type: string
                                    format: uri
                                  width:
                                    type: integer
                                  height:
                                    type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  company:
                    id: '1441'
                    name: Google
                    universalName: google
                    linkedinUrl: https://www.linkedin.com/company/google/
                    description: >-
                      A problem isn't truly solved until it's solved for all.
                      Googlers build products that help create opportunities for
                      everyone, whether down the street or across the globe.
                      Bring your insight, imagination and a healthy disregard
                      for the impossible. Bring everything that makes you
                      unique. Together, we can build for everyone.


                      Check out our career opportunities at goo.gle/3DLEokh
                    type: COMPANY
                    images:
                      logo: >-
                        https://media.licdn.com/dms/image/v2/D4E0BAQGv3cqOuUMY7g/company-logo_400_400/B4EZmhegXHGcAc-/0/1759350753990/google_logo?e=1770854400&v=beta&t=klcqmC9IZt0JWh4VOaUKvUHgxMJX_pbnLuAotYC921g
                      cover: >-
                        https://media.licdn.com/dms/image/v2/D4E1BAQGAn5jeEAjVoA/company-background_400/B4EZvC.IgyHoAY-/0/1768502626812/google_cover?e=1769706000&v=beta&t=WQEUnxFfPalAagjpJG3RuHy2bFxWTtt127OkTeORIn0
                    isClaimable: false
                    backgroundCoverImages:
                      - url: >-
                          https://media.licdn.com/dms/image/v2/D4E1BAQGAn5jeEAjVoA/company-background_400/B4EZvC.IgyHoAY-/0/1768502626812/google_cover?e=1769706000&v=beta&t=WQEUnxFfPalAagjpJG3RuHy2bFxWTtt127OkTeORIn0
                        width: 400
                        height: 67
                      - url: >-
                          https://media.licdn.com/dms/image/v2/D4E1BAQGAn5jeEAjVoA/company-background_200/B4EZvC.IgyHoAc-/0/1768502626812/google_cover?e=1769706000&v=beta&t=AO36BZVpfbh4XRKQfa5NfpLoXzE3XWCSDPZRFJOqgMY
                        width: 200
                        height: 33
                      - url: >-
                          https://media.licdn.com/dms/image/v2/D4E1BAQGAn5jeEAjVoA/company-background_10000/B4EZvC.IgyHoAU-/0/1768502626812/google_cover?e=1769706000&v=beta&t=lCZ2sY4PpCDSg27uel7ScoEpYmuJdtW0M9zfxQLH14k
                        width: 1692
                        height: 287
                    logos:
                      - url: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQGv3cqOuUMY7g/company-logo_100_100/B4EZmhegXHGcAU-/0/1759350753990/google_logo?e=1770854400&v=beta&t=jPInRVHsgb5Ft3E46aI9dCAL57GSVvxMn_5NZ4BgRYc
                        width: 100
                        height: 100
                      - url: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQGv3cqOuUMY7g/company-logo_400_400/B4EZmhegXHGcAc-/0/1759350753990/google_logo?e=1770854400&v=beta&t=klcqmC9IZt0JWh4VOaUKvUHgxMJX_pbnLuAotYC921g
                        width: 400
                        height: 400
                      - url: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQGv3cqOuUMY7g/company-logo_200_200/B4EZmhegXHGcAM-/0/1759350753990/google_logo?e=1770854400&v=beta&t=R4t5i_Njv2v5WHufj5k9hcgx38w7dM_2MOMOKscsK80
                        width: 200
                        height: 200
                    staffCount: 330875
                    headquarter:
                      countryCode: US
                      geographicArea: CA
                      country: US
                      city: Mountain View
                      postalCode: '94043'
                      headquarter: true
                      line1: 1600 Amphitheatre Parkway
                    locations:
                      - countryCode: GB
                        geographicArea: England
                        country: GB
                        city: London
                        postalCode: WC2H 8AG
                        headquarter: false
                        line1: St Giles High Street
                      - countryCode: IE
                        geographicArea: County Dublin
                        country: IE
                        city: Dublin
                        headquarter: false
                        line1: Barrow Street
                      - countryCode: CO
                        geographicArea: Bogota, D.C.
                        country: CO
                        city: Bogota
                        postalCode: '110221'
                        headquarter: false
                        line1: Carrera 11A 94-45
                      - countryCode: SG
                        geographicArea: Singapore
                        country: SG
                        city: Singapore
                        postalCode: '118484'
                        headquarter: false
                        line1: 3 Pasir Panjang Rd
                      - countryCode: MX
                        geographicArea: CDMX
                        country: MX
                        city: Miguel Hidalgo
                        postalCode: '11000'
                        headquarter: false
                        line1: Montes Urales
                      - countryCode: IL
                        geographicArea: Tel Aviv
                        country: IL
                        city: Tel Aviv-Yafo
                        postalCode: '67891'
                        headquarter: false
                        line1: Yigal Allon 98
                      - countryCode: CA
                        geographicArea: 'ON'
                        country: CA
                        city: Toronto
                        postalCode: M5H 2G4
                        headquarter: false
                        line1: 111 Richmond St W
                      - countryCode: CA
                        geographicArea: 'ON'
                        country: CA
                        city: Kitchener
                        postalCode: N2H 5G5
                        headquarter: false
                        line1: 51 Breithaupt St
                      - countryCode: CL
                        geographicArea: Santiago Metropolitan
                        country: CL
                        city: Las Condes
                        postalCode: '7550000'
                        headquarter: false
                        line1: Avenida Costanera Sur
                      - countryCode: IT
                        geographicArea: Lomb.
                        country: IT
                        city: Milan
                        postalCode: '20124'
                        headquarter: false
                        line1: Via Federico Confalonieri, 4
                      - countryCode: PH
                        geographicArea: National Capital Region
                        country: PH
                        city: Taguig City
                        headquarter: false
                        line1: 5th Ave
                      - countryCode: AU
                        geographicArea: NSW
                        country: AU
                        city: Sydney
                        postalCode: '2009'
                        headquarter: false
                        line1: 48 Pirrama Rd
                      - countryCode: AU
                        geographicArea: VIC
                        country: AU
                        city: Melbourne
                        postalCode: '3000'
                        headquarter: false
                        line1: 90 Collins St
                      - countryCode: CH
                        geographicArea: ZH
                        country: CH
                        city: Zurich
                        postalCode: '8002'
                        headquarter: false
                        line1: Brandschenkestrasse 110
                      - countryCode: FR
                        geographicArea: IdF
                        country: FR
                        city: Paris
                        postalCode: '75009'
                        headquarter: false
                        line1: 8 Rue de Londres
                      - countryCode: AR
                        geographicArea: Buenos Aires Autonomous City
                        country: AR
                        city: Buenos Aires City
                        postalCode: '1107'
                        headquarter: false
                        line1: Avenida Alicia Moreau de Justo 350
                      - countryCode: DE
                        geographicArea: HH
                        country: DE
                        city: Hamburg
                        postalCode: '20354'
                        headquarter: false
                        line1: ABC-Strasse 19
                      - countryCode: DE
                        geographicArea: BE
                        country: DE
                        city: Berlin
                        postalCode: '10117'
                        headquarter: false
                        line1: Unter den Linden 14
                      - countryCode: DE
                        geographicArea: BY
                        country: DE
                        city: Munich
                        postalCode: '80636'
                        headquarter: false
                        line1: Erika-Mann-Strasse 33
                      - countryCode: PL
                        geographicArea: MA
                        country: PL
                        city: Warsaw
                        postalCode: 00-125
                        headquarter: false
                        line1: ulica Emilii Plater 53
                      - countryCode: NL
                        geographicArea: North Holland
                        country: NL
                        city: Amsterdam
                        postalCode: 1082 MD
                        headquarter: false
                        line1: Claude Debussylaan 34
                      - countryCode: ES
                        geographicArea: Community of Madrid
                        country: ES
                        city: Madrid
                        postalCode: '28046'
                        headquarter: false
                        line1: Plaza Pablo Ruiz Picasso
                      - countryCode: ES
                        geographicArea: Community of Madrid
                        country: ES
                        city: Madrid
                        postalCode: '28020'
                        headquarter: false
                        line1: Plaza Pablo Ruiz Picasso
                      - countryCode: US
                        geographicArea: GA
                        country: US
                        city: Atlanta
                        postalCode: '30309'
                        headquarter: false
                        line1: 10 10th St NE
                      - countryCode: US
                        geographicArea: MA
                        country: US
                        city: Cambridge
                        postalCode: '02142'
                        headquarter: false
                        line1: 355 Main St
                      - countryCode: US
                        geographicArea: CA
                        country: US
                        city: Mountain View
                        postalCode: '94043'
                        headquarter: true
                        line1: 1600 Amphitheatre Parkway
                      - countryCode: US
                        geographicArea: CA
                        country: US
                        city: San Bruno
                        postalCode: '94066'
                        headquarter: false
                        line1: 901 Cherry Ave
                      - countryCode: US
                        geographicArea: CA
                        country: US
                        city: San Francisco
                        postalCode: '94105'
                        headquarter: false
                        line1: 345 Spear St
                      - countryCode: US
                        geographicArea: TX
                        country: US
                        city: Austin
                        postalCode: '78759'
                        headquarter: false
                        line1: 9606 N Mopac Expy
                      - countryCode: US
                        geographicArea: CA
                        country: US
                        city: Irvine
                        postalCode: '92612'
                        headquarter: false
                        line1: 19510 Jamboree Rd
                      - countryCode: US
                        geographicArea: CA
                        country: US
                        city: Los Angeles
                        postalCode: '90291'
                        headquarter: false
                        line1: 340 Main St
                      - countryCode: US
                        geographicArea: IL
                        country: US
                        city: Chicago
                        postalCode: '60607'
                        headquarter: false
                        line1: 320 N Morgan St
                      - countryCode: US
                        geographicArea: CO
                        country: US
                        city: Boulder
                        postalCode: '80302'
                        headquarter: false
                        line1: 2590 Pearl St
                      - countryCode: US
                        geographicArea: TX
                        country: US
                        city: Frisco
                        postalCode: '75034'
                        headquarter: false
                        line1: 6175 Main St
                      - countryCode: US
                        geographicArea: MI
                        country: US
                        city: Ann Arbor
                        postalCode: '48105'
                        headquarter: false
                        line1: 2300 Traverwood Dr
                      - countryCode: US
                        geographicArea: DC
                        country: US
                        city: Washington
                        postalCode: '20001'
                        headquarter: false
                        line1: 25 Massachusetts Ave NW
                      - countryCode: US
                        geographicArea: VA
                        country: US
                        city: Reston
                        postalCode: '20190'
                        headquarter: false
                        line1: 1875 Explorer St
                      - countryCode: US
                        geographicArea: WA
                        country: US
                        city: Kirkland
                        postalCode: '98033'
                        headquarter: false
                        line1: 777 6th St S
                      - countryCode: US
                        geographicArea: WA
                        country: US
                        city: Seattle
                        postalCode: '98103'
                        headquarter: false
                        line1: 601 N 34th St
                      - countryCode: US
                        geographicArea: NY
                        country: US
                        city: New York
                        postalCode: '10011'
                        headquarter: false
                        line1: 111 8th Ave
                      - countryCode: SE
                        geographicArea: Stockholm County
                        country: SE
                        city: Stockholm
                        postalCode: 111 22
                        headquarter: false
                        line1: Kungsbron 2
                      - countryCode: BR
                        geographicArea: SP
                        country: BR
                        city: Sao Paulo
                        postalCode: 04538-133
                        headquarter: false
                        line1: Avenida Brigadeiro Faria Lima, 3477
                      - countryCode: HK
                        geographicArea: Hong Kong
                        country: HK
                        city: Wan Chai
                        headquarter: false
                        line1: 2 Matheson St
                      - countryCode: IN
                        geographicArea: TS
                        country: IN
                        city: Hyderabad
                        postalCode: '500084'
                        headquarter: false
                        line1: '13'
                      - countryCode: IN
                        geographicArea: Maharashtra
                        country: IN
                        city: Mumbai
                        postalCode: '400051'
                        headquarter: false
                        line1: 3 Bandra Kurla Complex Road
                      - countryCode: IN
                        geographicArea: Karnataka
                        country: IN
                        city: Bengaluru
                        postalCode: '560016'
                        headquarter: false
                        line1: Old Madras Road
                      - countryCode: IN
                        geographicArea: Karnataka
                        country: IN
                        city: Bengaluru
                        postalCode: '560016'
                        headquarter: false
                        line1: 3 Swamy Vivekananda Road
                      - countryCode: IN
                        geographicArea: HR
                        country: IN
                        city: Gurugram
                        postalCode: '122001'
                        headquarter: false
                        line1: '15'
                    industriesV2:
                      - Software Development
                    industriesLegacy:
                      - Computer Software
                    specialities:
                      - search
                      - ads
                      - mobile
                      - android
                      - online video
                      - apps
                      - machine learning
                      - virtual reality
                      - cloud
                      - hardware
                      - artificial intelligence
                      - youtube
                      - software
                    website: https://goo.gle/3DLEokh
                    founded:
                      year: 0
                      month: 0
                      day: 0
                    callToAction:
                      type: VIEW_WEBSITE
                      displayText: Visit website
                      visible: true
                      url: https://goo.gle/3DLEokh
                    followerCount: 40388194
                    staffCountRange: 10,001+ employees
                    topOrganizationListing:
                      rank: 18
                      listName: LinkedIn Top Companies
                      articleUrl: >-
                        https://www.linkedin.com/pulse/linkedin-top-companies-2025-25-best-large-employers-grow-cq7nc/
                      text: This company has been Ranked on LinkedIn Top Companies
                    pageVerification:
                      verified: true
                      lastModifiedAt: 1692139093065
                    availabeTabs:
                      - name: Home
                        tabType: HOME
                      - name: About
                        tabType: ABOUT
                      - name: Posts
                        tabType: POSTS
                      - name: Jobs
                        tabType: JOBS
                      - name: Life
                        tabType: LIFE
                      - name: People
                        tabType: PEOPLE
                  peopleAlsoFollow:
                    - id: '104825671'
                      name: ChatGPT
                      industry: Technology, Information and Internet
                      followerCount: 622346
                      Url: https://www.linkedin.com/showcase/chatgpt/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQHanColRaBS2w/company-logo_400_400/B4DZUaBg.nHkAY-/0/1739898360056/chatgpt_logo?e=1770854400&v=beta&t=favcdbZUFw4T4BS4xpCYh1-dGZAS7ChVn9isOzWxpAc
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQHanColRaBS2w/company-logo_200_200/B4DZUaBg.nHkAI-/0/1739898360056/chatgpt_logo?e=1770854400&v=beta&t=RmUR26LMytg-mLVJKWTvPoLAFU_EC5RY1Ay-hiwE5o8
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQHanColRaBS2w/company-logo_100_100/B4DZUaBg.nHkAQ-/0/1739898360056/chatgpt_logo?e=1770854400&v=beta&t=kex0fo-9pUTAWA_Oq3fkiffu-Qf--scJJ8DGvgsuEWE
                          width: 100
                          height: 100
                    - id: '74126343'
                      name: Anthropic
                      industry: Research Services
                      followerCount: 1924701
                      Url: https://www.linkedin.com/company/anthropicresearch/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFMhKgeR7EYAg/company-logo_200_200/company-logo_200_200/0/1719256413073/anthropicresearch_logo?e=1770854400&v=beta&t=AkyWCvXSKRhqJjV8e0ryv5sPLZfeeOViZFWtv2agTWQ
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFMhKgeR7EYAg/company-logo_100_100/company-logo_100_100/0/1719256989269/anthropicresearch_logo?e=1770854400&v=beta&t=xm2DYuA1Yeg6LRa8j5MiHN0DibFeurqov7QUOUw89rY
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFMhKgeR7EYAg/company-logo_400_400/company-logo_400_400/0/1719256729905/anthropicresearch_logo?e=1770854400&v=beta&t=q5Y9nB6EHg4kTNluLfAcBLRrWpNgIa5izmFJj01DWtA
                          width: 400
                          height: 400
                    - id: '18000077'
                      name: NVIDIA AI
                      industry: Computer Hardware Manufacturing
                      followerCount: 1580777
                      Url: https://www.linkedin.com/showcase/nvidia-ai/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGe-H392ULJ-Q/company-logo_200_200/company-logo_200_200/0/1724882065232/nvidia_ai_logo?e=1770854400&v=beta&t=76K2q7iuoO49JMXk9nrgkne4j5-xp1t3jrbyXFqBpo8
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGe-H392ULJ-Q/company-logo_100_100/company-logo_100_100/0/1724882065232/nvidia_ai_logo?e=1770854400&v=beta&t=VRwguG7XtA3R7Uv0dRGzUNjXke0HOxt6eIA34w94_8A
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGe-H392ULJ-Q/company-logo_400_400/company-logo_400_400/0/1724882065232/nvidia_ai_logo?e=1770854400&v=beta&t=S096uQr-dmgkhrqaepYuTH05lYiWNU3ICeVKxw8CvhA
                          width: 400
                          height: 400
                    - id: '106863934'
                      name: Claude
                      industry: Technology, Information and Internet
                      followerCount: 313853
                      Url: https://www.linkedin.com/showcase/claude/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFko-zWIZk_pw/company-logo_100_100/B4EZhiRWKvHgAQ-/0/1753995371543/claude_logo?e=1770854400&v=beta&t=udj-dhQQ0_R2YeUBRSiKfPFQhGR99QoH8pZQBmp3tcc
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFko-zWIZk_pw/company-logo_400_400/B4EZhiRWKvHgAY-/0/1753995371543/claude_logo?e=1770854400&v=beta&t=Kfi0u9jzmURfO5yd6DFWItv9vJW5XOdcvKetHlNBFLU
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFko-zWIZk_pw/company-logo_200_200/B4EZhiRWKvHgAI-/0/1753995371543/claude_logo?e=1770854400&v=beta&t=_wm8wwIU-VhUz89YqHXPU3_ecSCneOC32Tcx6GTuVbQ
                          width: 200
                          height: 200
                    - id: '96411081'
                      name: Microsoft Azure
                      industry: Technology, Information and Internet
                      followerCount: 871193
                      Url: https://www.linkedin.com/showcase/microsoft-azure/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGtwKUNwBubxg/company-logo_200_200/company-logo_200_200/0/1688144190823/microsoft_azure_logo?e=1770854400&v=beta&t=GAHc_CVQvKQBwN4wVxwoKYxyoWj3kV7RyVAgzo8Kbno
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGtwKUNwBubxg/company-logo_100_100/company-logo_100_100/0/1688144190823/microsoft_azure_logo?e=1770854400&v=beta&t=qvK5q-z7Qukiuu568G8lGjBziKeQDvc_bBFr4ITwuBY
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGtwKUNwBubxg/company-logo_400_400/company-logo_400_400/0/1688144190823/microsoft_azure_logo?e=1770854400&v=beta&t=M4_PiZuNs-wKRMbLq3UuLrEupG8KHz_dTt6AgJ9leYo
                          width: 400
                          height: 400
                    - id: '165158'
                      name: Netflix
                      industry: Entertainment Providers
                      followerCount: 11594000
                      Url: https://www.linkedin.com/company/netflix/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGMva5_E8pUjw/company-logo_200_200/company-logo_200_200/0/1736276678240/netflix_logo?e=1770854400&v=beta&t=hgHb1pTQ_lEL0VG085O91Y17mi2HsIAeJFmukm5VbDE
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGMva5_E8pUjw/company-logo_100_100/company-logo_100_100/0/1736276678240/netflix_logo?e=1770854400&v=beta&t=8nnLQ3PFVhZVQ_0RPSs78aha49S4mbYkTb_bxJy_zlY
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGMva5_E8pUjw/company-logo_400_400/company-logo_400_400/0/1736276678240/netflix_logo?e=1770854400&v=beta&t=zWd33L2QTlsak6xGXz6U6qB582epeDxc2nhKNsJxklk
                          width: 400
                          height: 400
                    - id: '1035'
                      name: Microsoft
                      industry: Software Development
                      followerCount: 27364705
                      Url: https://www.linkedin.com/company/microsoft/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=1770854400&v=beta&t=Tfdb62_947QTMb-1fPzFERf2Wj1Rww3GZgYiiDdMYUA
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_400_400/B56ZYQ0mrGGoAc-/0/1744038948046/microsoft_logo?e=1770854400&v=beta&t=g-dbgSloiBrpOdEUgeq6LF6ibIehhRBGVW11hi1bTJw
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQH32RJQCl3dDQ/company-logo_200_200/B56ZYQ0mrGGoAM-/0/1744038948046/microsoft_logo?e=1770854400&v=beta&t=GoaLBw3k2gCMLYxmO7dfJRdPu_YeX308e4inC6shagk
                          width: 200
                          height: 200
                    - id: '11193683'
                      name: Hugging Face
                      industry: Software Development
                      followerCount: 1152729
                      Url: https://www.linkedin.com/company/huggingface/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQFzIxlpQ0lAdA/company-logo_200_200/company-logo_200_200/0/1630556211624/huggingface_logo?e=1770854400&v=beta&t=zvQIfbJhYQ1aVnVL0SQKDxvZ2pRJgxVJqLloYYDy38g
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQFzIxlpQ0lAdA/company-logo_100_100/company-logo_100_100/0/1630556211624/huggingface_logo?e=1770854400&v=beta&t=aB90BLE-tyHKmxWXgB0kgkKAvBS1zknA577_1B77BV0
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQFzIxlpQ0lAdA/company-logo_400_400/company-logo_400_400/0/1630556211624/huggingface_logo?e=1770854400&v=beta&t=l5zSuRHAA7OE-MIcVmgEsQnuoDh6J8iiVawkNN8LTZY
                          width: 400
                          height: 400
                    - id: '10667'
                      name: Meta
                      industry: Software Development
                      followerCount: 11694313
                      Url: https://www.linkedin.com/company/meta/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHBmbxCDP0JQQ/company-logo_400_400/B56ZlkdQSaI8AY-/0/1758327015620/meta_logo?e=1770854400&v=beta&t=6Zl0cUtOIoxX8QFqOs6Gmka4pB5nPYJZ8a3z4a4NfYE
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHBmbxCDP0JQQ/company-logo_200_200/B56ZlkdQSaI8AI-/0/1758327015620/meta_logo?e=1770854400&v=beta&t=FHWmn_614phb53u3Lyh0OcqIpEGxjoSe7jxZ1WeXNxc
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHBmbxCDP0JQQ/company-logo_100_100/B56ZlkdQSaI8AQ-/0/1758327015620/meta_logo?e=1770854400&v=beta&t=tKfNcU3orNA2rJwQRFWch4sPSSEQodmdfdGPubNl0lU
                          width: 100
                          height: 100
                    - id: '1033'
                      name: Accenture
                      industry: Business Consulting and Services
                      followerCount: 14339195
                      Url: https://www.linkedin.com/company/accenture/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQEgtOEcxlXMog/company-logo_200_200/B4DZfqEQWkHAAQ-/0/1751978673981/accenture_logo?e=1770854400&v=beta&t=bq1CzgR_tYmTs08wlvT2r50hOzKHKsZfIpz_bPkTltk
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQEgtOEcxlXMog/company-logo_100_100/B4DZfqEQWkHAAY-/0/1751978673981/accenture_logo?e=1770854400&v=beta&t=vnGXCcyjxQU29a98lEudv2ARgBauS0vuXAqhC4Nekhc
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQEgtOEcxlXMog/company-logo_400_400/B4DZfqEQWkHAAg-/0/1751978673981/accenture_logo?e=1770854400&v=beta&t=L5zDJe5iR9Z2TzbIZDGPixdk1Vr66NnvqJlU4nOr_PY
                          width: 400
                          height: 400
                    - id: '11130470'
                      name: OpenAI
                      industry: Research Services
                      followerCount: 9767186
                      Url: https://www.linkedin.com/company/openai/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHpzXbqSyR74A/company-logo_400_400/B56ZT8EYB8HsAY-/0/1739395793272/openai_logo?e=1770854400&v=beta&t=ME0jeybwZ04A90vVGfT4ne5vfx5xggCD1l52zsbOjfs
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHpzXbqSyR74A/company-logo_200_200/B56ZT8EYB8HsAI-/0/1739395793272/openai_logo?e=1770854400&v=beta&t=_Wkr9aqzJY0uJZ7AuZxVx8pXBmuXdtCBYDjxs_f2wG4
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHpzXbqSyR74A/company-logo_100_100/B56ZT8EYB8HsAQ-/0/1739395793272/openai_logo?e=1770854400&v=beta&t=DRjgYgffDhvlQeSxvMqD_prCuIEar1ROf5Sm6ozc6Ns
                          width: 100
                          height: 100
                    - id: '25047749'
                      name: National Cyber Security Centre
                      industry: Government Administration
                      followerCount: 485767
                      Url: >-
                        https://www.linkedin.com/company/national-cyber-security-centre/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGHLMfNIE-STw/company-logo_100_100/B4EZp9q019KYAQ-/0/1763044971136/national_cyber_security_centre_logo?e=1770854400&v=beta&t=3M8cAg6zGz0tE6YwslpRoahkhF8IbJUC6wbZUdxl5D4
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGHLMfNIE-STw/company-logo_400_400/B4EZp9q019KYAY-/0/1763044971136/national_cyber_security_centre_logo?e=1770854400&v=beta&t=yNqFyuFw_SmncoaKB2nPkoTaaCr0_x8V1fRsaacR2-g
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGHLMfNIE-STw/company-logo_200_200/B4EZp9q019KYAI-/0/1763044971136/national_cyber_security_centre_logo?e=1770854400&v=beta&t=AkkW_920EYRRypVeRKuZFvfgYVNoRjxTwrkyYjhPcyM
                          width: 200
                          height: 200
                  affiliatedByJobs:
                    - id: '16140'
                      name: YouTube
                      industry: Technology, Information and Internet
                      followerCount: 2480016
                      Url: https://www.linkedin.com/company/youtube/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGyUKaYgsO3cg/company-logo_100_100/B4EZb.zwGgGQAQ-/0/1748031701722/youtube_logo?e=1770854400&v=beta&t=NGZZY5VDkMJIl9SsJId7pRxnWe2pm9l-nErDKvyoQTA
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGyUKaYgsO3cg/company-logo_400_400/B4EZb.zwGgGQAY-/0/1748031701722/youtube_logo?e=1770854400&v=beta&t=-myILSbSxTgl6HqjbDKWA_ozHzRGnfV7XvR4hHZiQYc
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGyUKaYgsO3cg/company-logo_200_200/B4EZb.zwGgGQAI-/0/1748031701722/youtube_logo?e=1770854400&v=beta&t=r9osU2qkZoNB5kH1hNm0zicvKmPT1-MTtzykTbjpPis
                          width: 200
                          height: 200
                    - id: '17876832'
                      name: CapitalG
                      industry: Venture Capital and Private Equity Principals
                      followerCount: 46793
                      Url: https://www.linkedin.com/company/capitalg/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQG_2ueBNyD9mw/company-logo_200_200/company-logo_200_200/0/1630652094195/capitalg_logo?e=1770854400&v=beta&t=I47oLQtjQWkmPuoeHbZJhy1ka0ybcK-PSH8RXX9ZXLI
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQG_2ueBNyD9mw/company-logo_100_100/company-logo_100_100/0/1630652094196/capitalg_logo?e=1770854400&v=beta&t=w4MDOR1BElQdHHFI-NzZQ0zvfsquudQnXTPQrIixiYM
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQG_2ueBNyD9mw/company-logo_400_400/company-logo_400_400/0/1630652094196/capitalg_logo?e=1770854400&v=beta&t=P6vp7RCcoFaYTqIOcq7P7l0GKIV7roeutbgt7rJr_Qw
                          width: 400
                          height: 400
                    - id: '89982912'
                      name: Mineral.ai
                      industry: >-
                        Agriculture, Construction, Mining Machinery
                        Manufacturing
                      followerCount: 9760
                      Url: https://www.linkedin.com/company/mineral-ai/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQE-WH8Szc-oSg/company-logo_200_200/company-logo_200_200/0/1676059443081/mineral_ai_logo?e=1770854400&v=beta&t=15d-goDWGhDoAy08CIeKqPDp9Eo-ojjGqQY1OdnrTUA
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQE-WH8Szc-oSg/company-logo_100_100/company-logo_100_100/0/1676059443081/mineral_ai_logo?e=1770854400&v=beta&t=EnAug46M0MWZFEPqbAiA06gFTSpodX9CgnE1TzzUtLg
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQE-WH8Szc-oSg/company-logo_400_400/company-logo_400_400/0/1676059443081/mineral_ai_logo?e=1770854400&v=beta&t=buPgoWwhE7JvMy8M7zbcI5MESLmFkkUCZQw72BDw_9Y
                          width: 400
                          height: 400
                    - id: '791962'
                      name: Adometry (acquired by Google)
                      industry: Advertising Services
                      followerCount: 19728
                      Url: https://www.linkedin.com/company/adometry/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQG_VLbxyJcP8A/company-logo_200_200/company-logo_200_200/0/1631345813563?e=1770854400&v=beta&t=OXBpeupRsxchHDScyvdtQSRRJ6rtvKLRKCZUluAOz1I
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQG_VLbxyJcP8A/company-logo_100_100/company-logo_100_100/0/1631345813563?e=1770854400&v=beta&t=Kd7VDFdhWDRbcGibSBAPboi6268FYwzFDYZhb_cebHo
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQG_VLbxyJcP8A/company-logo_400_400/company-logo_400_400/0/1631345813563?e=1770854400&v=beta&t=BF12heKSOA8vivXtGEA-Tamk_3r8d7RZgGmUdT9abKA
                          width: 400
                          height: 400
                  affiliatedByEmployees:
                    - id: '16140'
                      name: YouTube
                      industry: Technology, Information and Internet
                      followerCount: 2480016
                      Url: https://www.linkedin.com/company/youtube/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGyUKaYgsO3cg/company-logo_100_100/B4EZb.zwGgGQAQ-/0/1748031701722/youtube_logo?e=1770854400&v=beta&t=NGZZY5VDkMJIl9SsJId7pRxnWe2pm9l-nErDKvyoQTA
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGyUKaYgsO3cg/company-logo_400_400/B4EZb.zwGgGQAY-/0/1748031701722/youtube_logo?e=1770854400&v=beta&t=-myILSbSxTgl6HqjbDKWA_ozHzRGnfV7XvR4hHZiQYc
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQGyUKaYgsO3cg/company-logo_200_200/B4EZb.zwGgGQAI-/0/1748031701722/youtube_logo?e=1770854400&v=beta&t=r9osU2qkZoNB5kH1hNm0zicvKmPT1-MTtzykTbjpPis
                          width: 200
                          height: 200
                    - id: '17876832'
                      name: CapitalG
                      industry: Venture Capital and Private Equity Principals
                      followerCount: 46793
                      Url: https://www.linkedin.com/company/capitalg/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQG_2ueBNyD9mw/company-logo_200_200/company-logo_200_200/0/1630652094195/capitalg_logo?e=1770854400&v=beta&t=I47oLQtjQWkmPuoeHbZJhy1ka0ybcK-PSH8RXX9ZXLI
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQG_2ueBNyD9mw/company-logo_100_100/company-logo_100_100/0/1630652094196/capitalg_logo?e=1770854400&v=beta&t=w4MDOR1BElQdHHFI-NzZQ0zvfsquudQnXTPQrIixiYM
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQG_2ueBNyD9mw/company-logo_400_400/company-logo_400_400/0/1630652094196/capitalg_logo?e=1770854400&v=beta&t=P6vp7RCcoFaYTqIOcq7P7l0GKIV7roeutbgt7rJr_Qw
                          width: 400
                          height: 400
                    - id: '791962'
                      name: Adometry (acquired by Google)
                      industry: Advertising Services
                      followerCount: 19728
                      Url: https://www.linkedin.com/company/adometry/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQG_VLbxyJcP8A/company-logo_200_200/company-logo_200_200/0/1631345813563?e=1770854400&v=beta&t=OXBpeupRsxchHDScyvdtQSRRJ6rtvKLRKCZUluAOz1I
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQG_VLbxyJcP8A/company-logo_100_100/company-logo_100_100/0/1631345813563?e=1770854400&v=beta&t=Kd7VDFdhWDRbcGibSBAPboi6268FYwzFDYZhb_cebHo
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQG_VLbxyJcP8A/company-logo_400_400/company-logo_400_400/0/1631345813563?e=1770854400&v=beta&t=BF12heKSOA8vivXtGEA-Tamk_3r8d7RZgGmUdT9abKA
                          width: 400
                          height: 400
                  affiliatedByShowcases:
                    - id: '33198155'
                      name: Google Marketing Platform
                      industry: Advertising Services
                      followerCount: 371870
                      Url: >-
                        https://www.linkedin.com/showcase/googlemarketingplatform/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQGzJC06vcaaeA/company-logo_200_200/company-logo_200_200/0/1631440027919/googlemarketingplatform_logo?e=1770854400&v=beta&t=paifPUOvT7EUFhcz5RwsHEvi3oRIlj18HcooQ8AV0pM
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQGzJC06vcaaeA/company-logo_100_100/company-logo_100_100/0/1631440027919/googlemarketingplatform_logo?e=1770854400&v=beta&t=yqk84xxYA2dzRAmpVNdDY5Shtvq_z2ZM55EQM0dEeX0
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQGzJC06vcaaeA/company-logo_400_400/company-logo_400_400/0/1631440027919/googlemarketingplatform_logo?e=1770854400&v=beta&t=K1A__GK-XrF5DULRc4FcBgb2evkt-Re317Qed5t6y4E
                          width: 400
                          height: 400
                    - id: '107776681'
                      name: Google for Business India
                      industry: Technology, Information and Internet
                      followerCount: 5831
                      Url: https://www.linkedin.com/showcase/google-for-biz-in/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQEowDiaLLiC6w/company-logo_400_400/B56ZfDRV81GoAY-/0/1751327793258?e=1770854400&v=beta&t=qIaj7UtIv788vVewwOv5-lrcD817eeyz9oKegIYbQ68
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQEowDiaLLiC6w/company-logo_200_200/B56ZfDRV81GoAI-/0/1751327793258?e=1770854400&v=beta&t=j97C0bP2zGVFtzQTBx4xNz7D-Rr_wo9GbqSe3JlIcR8
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQEowDiaLLiC6w/company-logo_100_100/B56ZfDRV81GoAQ-/0/1751327793258?e=1770854400&v=beta&t=UHHGOqTCxb9GIR1M12QWD6RDukJj3eQBxh070AvdpcA
                          width: 100
                          height: 100
                    - id: '18950740'
                      name: Android Enterprise
                      industry: Information Technology & Services
                      followerCount: 33038
                      Url: https://www.linkedin.com/showcase/androidenterprise/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGCZEOhM7Et2A/company-logo_200_200/company-logo_200_200/0/1693934124061/androidenterprise_logo?e=1770854400&v=beta&t=-qdES9wTTIAWf5zBZSfoSDHoa79A6vxGQ4WPOkMjs04
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGCZEOhM7Et2A/company-logo_100_100/company-logo_100_100/0/1693934124061/androidenterprise_logo?e=1770854400&v=beta&t=mQ2KuYoc1gu9yEKOD1LQHUHuOPaLrqkRagxNkXYj3uU
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGCZEOhM7Et2A/company-logo_400_400/company-logo_400_400/0/1693934124061/androidenterprise_logo?e=1770854400&v=beta&t=eMPqjASyEomy46DRUzWDyc7ec2b7xqulA10UUSpoO9k
                          width: 400
                          height: 400
                    - id: '18221770'
                      name: Google Play business community
                      industry: IT Services and IT Consulting
                      followerCount: 66677
                      Url: https://www.linkedin.com/showcase/googleplaybiz/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQEa9sSivPQ4cg/company-logo_200_200/company-logo_200_200/0/1658765701208/googleplaybiz_logo?e=1770854400&v=beta&t=-QbPxEGrD-lkmVKBJuYBHaepIM80jFcdERrAvJb26fM
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQEa9sSivPQ4cg/company-logo_100_100/company-logo_100_100/0/1658765701208/googleplaybiz_logo?e=1770854400&v=beta&t=VX19Bcy27D47OGx2DClZd-5eWPkJhq2nkvVXdr2CldQ
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQEa9sSivPQ4cg/company-logo_400_400/company-logo_400_400/0/1658765701208/googleplaybiz_logo?e=1770854400&v=beta&t=TS_eni0Q_1Om8Poy9cuuOmWICvB1g9LjvWxjI4EImak
                          width: 400
                          height: 400
                    - id: '11321165'
                      name: Google Developer Groups (GDG)
                      industry: Technology, Information and Internet
                      followerCount: 543818
                      Url: >-
                        https://www.linkedin.com/showcase/google-developer-groups/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFUyrWqc079tw/company-logo_200_200/company-logo_200_200/0/1630570752037/community_groups_program_gdg_logo?e=1770854400&v=beta&t=-T2HgpfXYaBNEGRFBffkjDd46wxPkttYIXXORzSIYT0
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFUyrWqc079tw/company-logo_100_100/company-logo_100_100/0/1630570752037/community_groups_program_gdg_logo?e=1770854400&v=beta&t=NH00fIy-K51uglSLrfNWFSYePzQ4sOzSJxHdBE-kZoA
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFUyrWqc079tw/company-logo_400_400/company-logo_400_400/0/1630570752037/community_groups_program_gdg_logo?e=1770854400&v=beta&t=XRvE_F_OE0INri02U-KftkcGemu35ZN1Dm9cbGvziw4
                          width: 400
                          height: 400
                    - id: '101031931'
                      name: Google Research
                      industry: Technology, Information and Internet
                      followerCount: 372735
                      Url: https://www.linkedin.com/showcase/googleresearch/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQG5rLrtFi47Nw/company-logo_200_200/company-logo_200_200/0/1698961278359/googleresearch_logo?e=1770854400&v=beta&t=fxrOcnnIkzLJ593JxWeakefslPliSqPNOiUNfyrxzm0
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQG5rLrtFi47Nw/company-logo_100_100/company-logo_100_100/0/1698961278359/googleresearch_logo?e=1770854400&v=beta&t=UobsHKe3triWu7EFGswsuC3Mr6S1jc23v2pp2wJdwWk
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQG5rLrtFi47Nw/company-logo_400_400/company-logo_400_400/0/1698961278359/googleresearch_logo?e=1770854400&v=beta&t=uTACryQQlWAXQMFjCcBz4cv5bo76GuvuBemyZ5ETn5k
                          width: 400
                          height: 400
                    - id: '71625768'
                      name: Android
                      industry: Technology, Information and Internet
                      followerCount: 52123
                      Url: https://www.linkedin.com/showcase/android_by_google/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQH-GrDIhmlBVw/company-logo_100_100/B56Zsu4JmpIcAQ-/0/1766018030395/android_by_google_logo?e=1770854400&v=beta&t=VsptyNGDyjkyrz1lbDZqRLRV99S2zpiHZsdiumTTWF8
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQH-GrDIhmlBVw/company-logo_400_400/B56Zsu4JmpIcAY-/0/1766018030395/android_by_google_logo?e=1770854400&v=beta&t=hX1a-PCBetZdNOWX9W0Da45HLTPoEuokgeolBojQaWk
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQH-GrDIhmlBVw/company-logo_200_200/B56Zsu4JmpIcAI-/0/1766018030395/android_by_google_logo?e=1770854400&v=beta&t=KFRXezjWvFWMazuXU9DuqXtB-h9AdC6tu_8CvlJHxGU
                          width: 200
                          height: 200
                    - id: '77163696'
                      name: Android Developers
                      industry: Technology, Information and Internet
                      followerCount: 149125
                      Url: https://www.linkedin.com/showcase/androiddev/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFzY5ND9gQVhA/company-logo_100_100/B4EZstvUYaHMAU-/0/1765998938494/androiddev_logo?e=1770854400&v=beta&t=nHsueGlr31v7Bfi4CFx-GiV8ziHYKtlqV3f-wSPUhC8
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFzY5ND9gQVhA/company-logo_400_400/B4EZstvUYaHMAc-/0/1765998938494/androiddev_logo?e=1770854400&v=beta&t=gbSGYm_kQuwokQXyaCDkff4NGLaFtVoQuU60zItFCPg
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFzY5ND9gQVhA/company-logo_200_200/B4EZstvUYaHMAM-/0/1765998938494/androiddev_logo?e=1770854400&v=beta&t=1FgFOkuUQijwxe-3QwmSmbPkucZjE5Ty7ZmI7TPkcLo
                          width: 200
                          height: 200
                    - id: '10124320'
                      name: Google Partners
                      industry: Advertising Services
                      followerCount: 71460
                      Url: https://www.linkedin.com/showcase/google-partners/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQGQQRSdCkTbBQ/company-logo_200_200/company-logo_200_200/0/1631340633685?e=1770854400&v=beta&t=G6dXJWuR4A_T15VPlzVmC5AJuHm4Tuq0pBG-y2X2UBE
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQGQQRSdCkTbBQ/company-logo_100_100/company-logo_100_100/0/1631340633685?e=1770854400&v=beta&t=owVayRmav_lHu0YkGtfq5r4hUA08r9f33sfAenK4pi4
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQGQQRSdCkTbBQ/company-logo_400_400/company-logo_400_400/0/1631340633685?e=1770854400&v=beta&t=ZqvEOAgKLb9HjngGirgUrwI4wdIVVZcSihywYS-7fg4
                          width: 400
                          height: 400
                    - id: '3611194'
                      name: Think with Google
                      industry: Advertising Services
                      followerCount: 953197
                      Url: https://www.linkedin.com/showcase/think-with-google/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQG0wixREuYNmA/company-logo_200_200/company-logo_200_200/0/1661287344336/think_with_google_logo?e=1770854400&v=beta&t=NeJ0W1txL1IRtD7BD8C5crTp-bJG8Tsquj1VJPVyq5Y
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQG0wixREuYNmA/company-logo_100_100/company-logo_100_100/0/1661287344336/think_with_google_logo?e=1770854400&v=beta&t=jusc-4o_Kh9d8DsU7os_ceAPWe_MzQh3AzQMgfVdep8
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQG0wixREuYNmA/company-logo_400_400/company-logo_400_400/0/1661287344336/think_with_google_logo?e=1770854400&v=beta&t=9oJM03oMbtm5299I8XTJ6EV9jR3FhVNo5W1bbnPE4QU
                          width: 400
                          height: 400
                    - id: '107571353'
                      name: Google Learning & Education
                      industry: Technology, Information and Internet
                      followerCount: 9592
                      Url: https://www.linkedin.com/showcase/google-learning-edu/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGGnFFZxWR32A/company-logo_400_400/B56ZeyJ827G0AY-/0/1751040643547?e=1770854400&v=beta&t=4P8hy34wE2wbR3i3jRQhW976Hymg2SJhF3gbWLQBqwQ
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGGnFFZxWR32A/company-logo_200_200/B56ZeyJ827G0AI-/0/1751040643547?e=1770854400&v=beta&t=YxRIET3NDnaGCaHfHxJcyyOgTG8cT5mXpeJzvVkXRIY
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGGnFFZxWR32A/company-logo_100_100/B56ZeyJ827G0AQ-/0/1751040643547?e=1770854400&v=beta&t=YJTOlFq16IYKeLYm8028zSTczU9IWFA0k6HE8bjbhvw
                          width: 100
                          height: 100
                    - id: '25013385'
                      name: Google for Developers
                      industry: Technology, Information and Internet
                      followerCount: 3477640
                      Url: https://www.linkedin.com/showcase/googledevelopers/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHlzyn1IsVxEw/company-logo_400_400/B56ZqiUJQ7I0AY-/0/1763659781488/googledevelopers_logo?e=1770854400&v=beta&t=DRSAcgbqSbNfbnaJq_6IYB8AQI-o4uJpuFmWuENF9Tw
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHlzyn1IsVxEw/company-logo_200_200/B56ZqiUJQ7I0AI-/0/1763659781488/googledevelopers_logo?e=1770854400&v=beta&t=UnwfTfCLKWGWqt0pMkZkqwQsE9UGM6inbD2m6YLrVow
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHlzyn1IsVxEw/company-logo_100_100/B56ZqiUJQ7I0AQ-/0/1763659781488/googledevelopers_logo?e=1770854400&v=beta&t=_wTTIAhn7Ci5c5nTASTybUyBhdaHt6CBgZJd-9Vyip4
                          width: 100
                          height: 100
                    - id: '15859534'
                      name: Google Cloud Partners
                      industry: Internet Publishing
                      followerCount: 135224
                      Url: https://www.linkedin.com/showcase/google-cloud-partners/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHgiaAqw0cAZQ/company-logo_200_200/company-logo_200_200/0/1630603869371/google_cloud_partners_logo?e=1770854400&v=beta&t=mITrFacb5B4LuMAu8W4sEB5FBZSu_gKERajAeme4wCQ
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHgiaAqw0cAZQ/company-logo_100_100/company-logo_100_100/0/1630603869371/google_cloud_partners_logo?e=1770854400&v=beta&t=dkT9TdCsWXtul020PRgjNFG77QhkpojOODb41rBRpzw
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHgiaAqw0cAZQ/company-logo_400_400/company-logo_400_400/0/1630603869371/google_cloud_partners_logo?e=1770854400&v=beta&t=FBtTYIjXHe4prAbQNKFjl2HMcK5a82gvlMBmrPN-lYU
                          width: 400
                          height: 400
                    - id: '92586569'
                      name: Google Public Policy
                      industry: Technology, Information and Internet
                      followerCount: 23779
                      Url: https://www.linkedin.com/showcase/google-public-policy/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHJo0OA8b8URg/company-logo_400_400/B4EZm_zW3mHMAY-/0/1759859535943/google_public_policy_logo?e=1770854400&v=beta&t=R2MZcvVJR22h08sa5UG5sOmWOVDpVWumCA_TQhsOwr4
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHJo0OA8b8URg/company-logo_200_200/B4EZm_zW3mHMAI-/0/1759859535943/google_public_policy_logo?e=1770854400&v=beta&t=sfuLd2b9QuR1gizX1ivdZ4Kmt6SSPdyFG2sg2iQHGsc
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHJo0OA8b8URg/company-logo_100_100/B4EZm_zW3mHMAQ-/0/1759859535943/google_public_policy_logo?e=1770854400&v=beta&t=s6puaG0pTBvWPLYF04UU9j6QPu0I-wbIZFILa-s0Q3E
                          width: 100
                          height: 100
                    - id: '29015212'
                      name: Grow with Google
                      industry: E-learning
                      followerCount: 187119
                      Url: https://www.linkedin.com/showcase/grow-with-google/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFFo-CL-y-UYA/company-logo_200_200/company-logo_200_200/0/1631404101430/grow_with_google_logo?e=1770854400&v=beta&t=FQsi2U1R6DLuNRDKAmtr4xMOiP4qVC_9x67KteOLL1Y
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFFo-CL-y-UYA/company-logo_100_100/company-logo_100_100/0/1631404101430/grow_with_google_logo?e=1770854400&v=beta&t=Jn67nJMyBjc4DnuB2pCtikvvBoiBr0ZztktekTalKl8
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFFo-CL-y-UYA/company-logo_400_400/company-logo_400_400/0/1631404101430/grow_with_google_logo?e=1770854400&v=beta&t=XzuFhQguzmLCqrssibzg5h9bV-ZP9ILX8QdusMH3tvk
                          width: 400
                          height: 400
                    - id: '6644131'
                      name: re:Work with Google
                      industry: Human Resources Services
                      followerCount: 75788
                      Url: https://www.linkedin.com/showcase/rework-with-google/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQGk9X0v8TL6xw/company-logo_200_200/company-logo_200_200/0/1631331138435?e=1770854400&v=beta&t=pVaDr-VfIDQDguhaX5T3BG10WP6KGpC_mRELozFZO7w
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQGk9X0v8TL6xw/company-logo_100_100/company-logo_100_100/0/1631331138435?e=1770854400&v=beta&t=k08vpK9V6IxuMTUt0Tg9Sa1HF6yGI8VPUwF8JHy7low
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQGk9X0v8TL6xw/company-logo_400_400/company-logo_400_400/0/1631331138435?e=1770854400&v=beta&t=w4xDAYaGXTY0qO07hpfcPAfX22O_FKQjUd9KELajKys
                          width: 400
                          height: 400
                    - id: '8629486'
                      name: Google for Health
                      industry: Technology, Information and Internet
                      followerCount: 117724
                      Url: https://www.linkedin.com/showcase/google-for-health/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGzx2yxxDgESA/company-logo_100_100/B56Zdal_.OHoAY-/0/1749571600513/google_health_logo?e=1770854400&v=beta&t=b-m7FwD04NEpoKjDxchcZTTgUPD29yOmslWj-S7VpHc
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGzx2yxxDgESA/company-logo_400_400/B56Zdal_.OHoAg-/0/1749571600513/google_health_logo?e=1770854400&v=beta&t=mgrZQA502UwUiWLt-aYckrBP6qQdl8DS8ZXU-JXAiWU
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGzx2yxxDgESA/company-logo_200_200/B56Zdal_.OHoAQ-/0/1749571600513/google_health_logo?e=1770854400&v=beta&t=tzTbTWb6SWTIX2nqGlVowVQjBji3X9JcHq-CAMBU5To
                          width: 200
                          height: 200
                    - id: '109835959'
                      name: Google Antigravity
                      industry: Software Development
                      followerCount: 9522
                      Url: https://www.linkedin.com/showcase/google-antigravity/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQG5wmEaqHfmDg/company-logo_200_200/B56ZqUSJh0I4AM-/0/1763424377586/google_antigravity_logo?e=1770854400&v=beta&t=hC7JMeup70qWC9GE6Q41owSVznqK7Ie3G-4h4a4F_Gc
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQG5wmEaqHfmDg/company-logo_400_400/B56ZqUSJh0I4Ac-/0/1763424377586/google_antigravity_logo?e=1770854400&v=beta&t=9DsGnNYN0v6Fi-uDNa-4WGJNU9I29dz3Ca2VKZLfgrY
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQG5wmEaqHfmDg/company-logo_100_100/B56ZqUSJh0I4AU-/0/1763424377586/google_antigravity_logo?e=1770854400&v=beta&t=tqvxPLiiK_oGvVmXxjfTUBw3YnJYDaRWkIsDePLeXlE
                          width: 100
                          height: 100
                    - id: '66345263'
                      name: Google Nest Pro
                      industry: Technology, Information and Internet
                      followerCount: 18777
                      Url: https://www.linkedin.com/showcase/google-nest/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQH_OmH7hYAD2A/company-logo_200_200/company-logo_200_200/0/1676486274466/google_nest_logo?e=1770854400&v=beta&t=vsytYC_wNWjnIxRNPj7dT3FDEaBhZ8fJpCINblXp_TY
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQH_OmH7hYAD2A/company-logo_100_100/company-logo_100_100/0/1676486274466/google_nest_logo?e=1770854400&v=beta&t=6WOOMUEnwYKmkHsPgZf9O_sMCAhBvXKaPaQ41Go7Ybg
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQH_OmH7hYAD2A/company-logo_400_400/company-logo_400_400/0/1676486274466/google_nest_logo?e=1770854400&v=beta&t=zmRdW67X29-Qf8DT4TwZWtJmawAW_kg8GvsNGAgrDVE
                          width: 400
                          height: 400
                    - id: '18925599'
                      name: Google User Experience Research
                      industry: Technology, Information and Internet
                      followerCount: 31406
                      Url: https://www.linkedin.com/showcase/google-user-research./
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQH06LdMOtQq_w/company-logo_200_200/company-logo_200_200/0/1630591519443/google_user_research_logo?e=1770854400&v=beta&t=zZVM_1_tik7gVT7ajoW0nxc7hEiQPFOr77qx6PgMMSA
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQH06LdMOtQq_w/company-logo_100_100/company-logo_100_100/0/1630591519444/google_user_research_logo?e=1770854400&v=beta&t=hG_R6tTzAh4kJirF3dCw2RT4Vx1q9jocwwipffqxZlg
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4E0BAQH06LdMOtQq_w/company-logo_400_400/company-logo_400_400/0/1630591519444/google_user_research_logo?e=1770854400&v=beta&t=sML3Fjk0OPrhD9BhJWfJAWt5C2P148RLP45faSRj4UY
                          width: 400
                          height: 400
                    - id: '12997578'
                      name: Google News Initiative
                      industry: Online Audio and Video Media
                      followerCount: 66885
                      Url: >-
                        https://www.linkedin.com/showcase/google-news-initiative/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQENwPk8U5nwXQ/company-logo_200_200/company-logo_200_200/0/1648217189857/google_news_initiative_logo?e=1770854400&v=beta&t=0umgbU_z2Dbpb4ylJmyW8gtR2T1JYVHmcM8BAn1D4ic
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQENwPk8U5nwXQ/company-logo_100_100/company-logo_100_100/0/1648217189857/google_news_initiative_logo?e=1770854400&v=beta&t=Dpu0-vbk4wNH6Rmkx4q4ZZ7pO7BXWY4sfg_77SX0gd4
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQENwPk8U5nwXQ/company-logo_400_400/company-logo_400_400/0/1648217189857/google_news_initiative_logo?e=1770854400&v=beta&t=wkItg2EAs5GSDGMdwYV4Z5ZvVFuktYoVCls7mDpUfEg
                          width: 400
                          height: 400
                    - id: '106703041'
                      name: Google Italia
                      industry: Technology, Information and Internet
                      followerCount: 3933
                      Url: https://www.linkedin.com/showcase/google-italia/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGVPp0STu44BQ/company-logo_400_400/B56ZY1UVlJGUAY-/0/1744651246595?e=1770854400&v=beta&t=S8kPMku378boDGzCNruhZpkwPtzypNHZSLwdRPSvFMc
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGVPp0STu44BQ/company-logo_200_200/B56ZY1UVlJGUAI-/0/1744651246595?e=1770854400&v=beta&t=fIYPSIJLyMst3WRDEybEYFH96Ju3-pB2wFcKIfqTFFo
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGVPp0STu44BQ/company-logo_100_100/B56ZY1UVlJGUAQ-/0/1744651246595?e=1770854400&v=beta&t=iXX5tWncYyn6HrYuZgnLF1wQLWchyZJ4DQjHaQ6hpYQ
                          width: 100
                          height: 100
                    - id: '27109944'
                      name: Google Developers North America
                      industry: Technology, Information and Internet
                      followerCount: 19283
                      Url: >-
                        https://www.linkedin.com/showcase/google-developers-north-america/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFoGWWSOfPdVQ/company-logo_200_200/company-logo_200_200/0/1709662277991/google_developers_north_america_logo?e=1770854400&v=beta&t=grTdwqt_pKxLGCSUjvkMBmHKshs4mm_hMf3ExGPNLew
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFoGWWSOfPdVQ/company-logo_100_100/company-logo_100_100/0/1709662277992/google_developers_north_america_logo?e=1770854400&v=beta&t=S8LDfwoqWrYkpoBtZZUcl1nm0xJowwEbt7DP14vxOWw
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQFoGWWSOfPdVQ/company-logo_400_400/company-logo_400_400/0/1709662277992/google_developers_north_america_logo?e=1770854400&v=beta&t=Pdb36xo00c0yyO8Rzqt3Rwbzn28-Azwd-wxYbEua6vU
                          width: 400
                          height: 400
                    - id: '103755306'
                      name: Google Search Liaison
                      industry: Technology, Information and Internet
                      followerCount: 17705
                      Url: https://www.linkedin.com/showcase/google-search-liaison/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGi1gBNONsUFA/company-logo_200_200/company-logo_200_200/0/1721154916593?e=1770854400&v=beta&t=92N-PIgJnDsPifnkYlemB8ASpMA77zKPnh9s4VlYols
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGi1gBNONsUFA/company-logo_100_100/company-logo_100_100/0/1721154916593?e=1770854400&v=beta&t=fQLfX9DnHxY8O17YKAkECu4Ek3FSA7yl4wHcx3T0iEo
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGi1gBNONsUFA/company-logo_400_400/company-logo_400_400/0/1721154916593?e=1770854400&v=beta&t=2xCfXAZn2f8KPmH0opbZ_Rg6ak-eYuNGjrpg8QSyx8M
                          width: 400
                          height: 400
                    - id: '6599465'
                      name: Google Small Business
                      industry: Internet Publishing
                      followerCount: 126587
                      Url: https://www.linkedin.com/showcase/google-small-business/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQExZlDfYW-QcA/company-logo_400_400/B4EZoxogtOIMAY-/0/1761769295173/google_small_business_logo?e=1770854400&v=beta&t=yPs5lUo53qwksv5W72Yv_x_Z7LesYx2SYhCAHjjCA9k
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQExZlDfYW-QcA/company-logo_200_200/B4EZoxogtOIMAI-/0/1761769295173/google_small_business_logo?e=1770854400&v=beta&t=rFcswL0MhfdvcbEtMim2ClE1hmSn9H7qbhx9V-3wi2o
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQExZlDfYW-QcA/company-logo_100_100/B4EZoxogtOIMAQ-/0/1761769295173/google_small_business_logo?e=1770854400&v=beta&t=aQtCeS5pevwBXEJwx49DXUa7jOZ_2ZnmC27tsfHt2pw
                          width: 100
                          height: 100
                    - id: '2868133'
                      name: Firebase
                      industry: Software Development
                      followerCount: 58520
                      Url: https://www.linkedin.com/showcase/firebase/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQH_5kvrJUkLuw/company-logo_200_200/company-logo_200_200/0/1729106317821/firebase_logo?e=1770854400&v=beta&t=FoKOqjAxAOFWziS81OK8uvEURbRCO21QvESqOvboqqU
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQH_5kvrJUkLuw/company-logo_100_100/company-logo_100_100/0/1729106317821/firebase_logo?e=1770854400&v=beta&t=4UATnwl55VcKjPdTbodlHVaTOib2e5MkcitBDiolbcI
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQH_5kvrJUkLuw/company-logo_400_400/company-logo_400_400/0/1729106317821/firebase_logo?e=1770854400&v=beta&t=mIwX5jhGMkRmv5r8hXkoK8EVh_Z5eRvVvBUpKywDfvk
                          width: 400
                          height: 400
                    - id: '74357847'
                      name: Google Chrome
                      industry: Technology, Information and Internet
                      followerCount: 27021
                      Url: https://www.linkedin.com/showcase/google-chrome/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHpUJ_qDlImBQ/company-logo_200_200/company-logo_200_200/0/1649349588413/google_chrome_logo?e=1770854400&v=beta&t=0cCVJeoVwDm118329s5ScAOSMnQXoCIghEFYHpYNDpU
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHpUJ_qDlImBQ/company-logo_100_100/company-logo_100_100/0/1649349588413/google_chrome_logo?e=1770854400&v=beta&t=sLS8wyyWlZuE1zlxtWp0gOCAK5vMrLahwOSkGknruIg
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHpUJ_qDlImBQ/company-logo_400_400/company-logo_400_400/0/1649349588413/google_chrome_logo?e=1770854400&v=beta&t=_VRqdopQkvwh-BR_QwloX2qxtThQXIoM5twKCyszrlk
                          width: 400
                          height: 400
                    - id: '3668753'
                      name: Google Workspace
                      industry: Software Development
                      followerCount: 669006
                      Url: https://www.linkedin.com/showcase/googleworkspace/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQHuLzhR-WUSMg/company-logo_200_200/company-logo_200_200/0/1630573711840/googleworkspace_logo?e=1770854400&v=beta&t=06ZQXlpjA0jR3di-PYwm4oRnWnedr_tD5uwXvvcDArI
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQHuLzhR-WUSMg/company-logo_100_100/company-logo_100_100/0/1630573711840/googleworkspace_logo?e=1770854400&v=beta&t=ynUrS-jaszLUMp_yWk0Rg1VOndB9g5tdE6y81KsOBP8
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C4D0BAQHuLzhR-WUSMg/company-logo_400_400/company-logo_400_400/0/1630573711840/googleworkspace_logo?e=1770854400&v=beta&t=D8eERISPlaXt3yY5UVomTEJMzgAplbjtfzT2QNIe5Uw
                          width: 400
                          height: 400
                    - id: '105292422'
                      name: Google AI for Developers
                      industry: Technology, Information and Internet
                      followerCount: 84309
                      Url: https://www.linkedin.com/showcase/googleaidevs/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGd2bTlJsilLg/company-logo_200_200/company-logo_200_200/0/1733522182114/googleaidevs_logo?e=1770854400&v=beta&t=fjLtx8VBQBO1cUZUF3xU1qqYveyf5KzjAHwVyj7V5ec
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGd2bTlJsilLg/company-logo_100_100/company-logo_100_100/0/1733522182114/googleaidevs_logo?e=1770854400&v=beta&t=r7YzsSToiwy3zeQfJfRtkhrtkfwWjVgxHCaYqA28qws
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGd2bTlJsilLg/company-logo_400_400/company-logo_400_400/0/1733522182114/googleaidevs_logo?e=1770854400&v=beta&t=xBuOruyPeTmU8Asam0CWizTnOVp3MVLYjjfCkz6ScQM
                          width: 400
                          height: 400
                    - id: '18557142'
                      name: Google Pay Developers
                      industry: Technology, Information and Internet
                      followerCount: 45622
                      Url: https://www.linkedin.com/showcase/google-pay/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFWCk66BYhwMw/company-logo_200_200/company-logo_200_200/0/1631432403639?e=1770854400&v=beta&t=NAEsA4cn-3ytxgVyHcKYmBuLC4a9MQBq1d5sq-Ha7jk
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFWCk66BYhwMw/company-logo_100_100/company-logo_100_100/0/1631432403639?e=1770854400&v=beta&t=n9OlC2Ssv6A0fxNZCVLw8Xrx7ddjbjWN4fBMvwbaiKo
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFWCk66BYhwMw/company-logo_400_400/company-logo_400_400/0/1631432403639?e=1770854400&v=beta&t=GH_9q3-12BDtQUIIBFgrzs4C-30AQW12y8i0hC5jHoE
                          width: 400
                          height: 400
                    - id: '105576160'
                      name: Google for Publishers
                      industry: Technology, Information and Internet
                      followerCount: 299568
                      Url: https://www.linkedin.com/showcase/google-for-publishers/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHglGPtwCI4pg/company-logo_200_200/company-logo_200_200/0/1736888029474/google_for_publishers_logo?e=1770854400&v=beta&t=sDlcTDPkzvndMx2u5oCC7Wi5w62xy9dfOy8AuDAa2C0
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHglGPtwCI4pg/company-logo_100_100/company-logo_100_100/0/1736888029474/google_for_publishers_logo?e=1770854400&v=beta&t=L3_LY-Pqa-ZPM4p-mm7AqIiUjUCL2NhX2dTXHrAUuUg
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQHglGPtwCI4pg/company-logo_400_400/company-logo_400_400/0/1736888029474/google_for_publishers_logo?e=1770854400&v=beta&t=a19pL48y9LnuIgJvsqdNFudUzlEFY9_K-0cWrCBg-JY
                          width: 400
                          height: 400
                    - id: '102720926'
                      name: Google Search Central
                      industry: Technology, Information and Internet
                      followerCount: 119477
                      Url: https://www.linkedin.com/showcase/googlesearchcentral/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHU22ISGMrPuw/company-logo_200_200/company-logo_200_200/0/1715877453021?e=1770854400&v=beta&t=642GBgFd1xUh6GXmU9zih8f6kTN1xAota5XaYsJeyqQ
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHU22ISGMrPuw/company-logo_100_100/company-logo_100_100/0/1715877453021?e=1770854400&v=beta&t=KKQpPS5y3xhS4rv6YsEf1GQKb8ZXacKGx-b0qJqyJBE
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQHU22ISGMrPuw/company-logo_400_400/company-logo_400_400/0/1715877453021?e=1770854400&v=beta&t=NnO68P4Aigz2MC3Lr1UOU4L9okBGdseBMuUw-U8vVqI
                          width: 400
                          height: 400
                    - id: '106770356'
                      name: Google Arabia
                      industry: Technology, Information and Internet
                      followerCount: 6382
                      Url: https://www.linkedin.com/showcase/google-arabia/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGOSUhJSXXzrg/company-logo_400_400/B56ZahP6wxGoAY-/0/1746462027700?e=1770854400&v=beta&t=_UiZzWVg9Lo5MnO6cZEmTsEh41OOQqurPwm-TryTPL4
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGOSUhJSXXzrg/company-logo_200_200/B56ZahP6wxGoAI-/0/1746462027700?e=1770854400&v=beta&t=5Tdm7eafte0J9nAZQDVaBqz3piioYF2UfJwDa_gXnhA
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQGOSUhJSXXzrg/company-logo_100_100/B56ZahP6wxGoAQ-/0/1746462027700?e=1770854400&v=beta&t=CgafP-ARjeVJLJVtToiKgsopdVbVXXFD5zT87DJTK3s
                          width: 100
                          height: 100
                    - id: '82288531'
                      name: TensorFlow
                      industry: Technology, Information and Internet
                      followerCount: 111482
                      Url: https://www.linkedin.com/showcase/tensorflowdev/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFt0fJxtxk-lg/company-logo_200_200/company-logo_200_200/0/1668110169199/tensorflowdev_logo?e=1770854400&v=beta&t=-hdavyLskoq78Ua4UFl3QaUZrdpN28k6Rni15x1-wls
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFt0fJxtxk-lg/company-logo_100_100/company-logo_100_100/0/1668110169199/tensorflowdev_logo?e=1770854400&v=beta&t=qmLiScZpqPvYIOCovYOm8ZzO09TKVySo09YwXKEwvQU
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFt0fJxtxk-lg/company-logo_400_400/company-logo_400_400/0/1668110169199/tensorflowdev_logo?e=1770854400&v=beta&t=r674Va5mp_AmidTt1xSCHw9sf2tMq4fkySB3ujuAVmY
                          width: 400
                          height: 400
                    - id: '66341749'
                      name: ChromeOS & Chrome Enterprise
                      industry: IT Services and IT Consulting
                      followerCount: 120853
                      Url: https://www.linkedin.com/showcase/chrome-enterprise/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHzYXxutuas9A/company-logo_200_200/company-logo_200_200/0/1675144820382/chrome_enterprise_logo?e=1770854400&v=beta&t=YkQV0rrWNYRcVXKwg2XbtOoNKee_kSV9E8V9XwtW0p8
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHzYXxutuas9A/company-logo_100_100/company-logo_100_100/0/1675144820383/chrome_enterprise_logo?e=1770854400&v=beta&t=b5EpOWbN_c6qk4Ww4HRarXBuWqAtzHok6s4Zcl8jOBQ
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHzYXxutuas9A/company-logo_400_400/company-logo_400_400/0/1675144820383/chrome_enterprise_logo?e=1770854400&v=beta&t=SucQTngqAuE82ODA1ubZoIBjFugMLgp651QMnOTtjYs
                          width: 400
                          height: 400
                    - id: '105044144'
                      name: Google Public Sector
                      industry: Software Development
                      followerCount: 17804
                      Url: https://www.linkedin.com/showcase/google-public-sector/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQG3Vi-sS2P76g/company-logo_400_400/B4EZexk72yHIAk-/0/1751030939471/google_public_sector_logo?e=1770854400&v=beta&t=dh4wOyaHTdG90evs4IZv6BEEavaWc9P790c4IHMEYWQ
                          width: 400
                          height: 400
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQG3Vi-sS2P76g/company-logo_200_200/B4EZexk72yHIAU-/0/1751030939471/google_public_sector_logo?e=1770854400&v=beta&t=PwHiodMGQ0BaK1wyfdq3ziAi2HBwJvVukminDY-hrt4
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4E0BAQG3Vi-sS2P76g/company-logo_100_100/B4EZexk72yHIAc-/0/1751030939471/google_public_sector_logo?e=1770854400&v=beta&t=7zSkCFoUkVkU15pWbTfrjhSijDxAuJMdoxIqK6CIWkA
                          width: 100
                          height: 100
                    - id: '82288532'
                      name: Firebase
                      industry: ''
                      followerCount: 3286
                      Url: https://www.linkedin.com/showcase/firebase-hold/
                    - id: '9416052'
                      name: Google Ads
                      industry: Advertising Services
                      followerCount: 898114
                      Url: https://www.linkedin.com/showcase/google-ads-/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQH9F59ob8d3QQ/company-logo_200_200/company-logo_200_200/0/1631424821422/google_ads__logo?e=1770854400&v=beta&t=mH9pnvd0010OCe2wsFOhDVobKc5x2Od5cvurq3Bn830
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQH9F59ob8d3QQ/company-logo_100_100/company-logo_100_100/0/1631424821422/google_ads__logo?e=1770854400&v=beta&t=9m7AoskPHcZ3jd303wlCW725vWBddVJiBmhe-zLxC5s
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQH9F59ob8d3QQ/company-logo_400_400/company-logo_400_400/0/1631424821422/google_ads__logo?e=1770854400&v=beta&t=tDdd8GtFQ_3tCj5QchdGf3ClWGCp6XZJTW8QL2fJx2A
                          width: 400
                          height: 400
                    - id: '99371798'
                      name: Chrome for Developers
                      industry: Technology, Information and Internet
                      followerCount: 45177
                      Url: https://www.linkedin.com/showcase/chrome-for-developers/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQFAkDPGM_aNUQ/company-logo_200_200/company-logo_200_200/0/1706292924372?e=1770854400&v=beta&t=ktaBRvfalW_5-xEjB64E1L_-F_tHV7IgjMO7erG1gzc
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQFAkDPGM_aNUQ/company-logo_100_100/company-logo_100_100/0/1706292924372?e=1770854400&v=beta&t=4pRZeWTIJftyvp2t8UbcBRWNh1nF4FUA3pGlZUilj5s
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D560BAQFAkDPGM_aNUQ/company-logo_400_400/company-logo_400_400/0/1706292924372?e=1770854400&v=beta&t=pGR-JioC2NJPjrhufJcP2Rhg8-dTI7Na7YZitVJZjtc
                          width: 400
                          height: 400
                    - id: '10476436'
                      name: Google Analytics
                      industry: Technology, Information and Internet
                      followerCount: 568599
                      Url: https://www.linkedin.com/showcase/google-analytics/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHDx1a8WwtGpQ/company-logo_200_200/company-logo_200_200/0/1631433614727/google_analytics_logo?e=1770854400&v=beta&t=YkHTqqF8tdtZHgC2xoVDAwEca3Bf4_CzloE1iV-jXMM
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHDx1a8WwtGpQ/company-logo_100_100/company-logo_100_100/0/1631433614727/google_analytics_logo?e=1770854400&v=beta&t=mUHNLRMkFThR6t850zdp-hv5C3MZEj-kVnTl6HDQf-8
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQHDx1a8WwtGpQ/company-logo_400_400/company-logo_400_400/0/1631433614727/google_analytics_logo?e=1770854400&v=beta&t=AhPeQozu6vKbMTeKZ4Uz7Bn2p-4hDmE0ZeAb4at8XnM
                          width: 400
                          height: 400
                    - id: '3648281'
                      name: Google Cloud
                      industry: Software Development
                      followerCount: 3129148
                      Url: https://www.linkedin.com/showcase/google-cloud/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFIFLR7jxm2lg/company-logo_200_200/company-logo_200_200/0/1630644546845/google_cloud_logo?e=1770854400&v=beta&t=I3sHFSdRT66PlSlUWRk-eapWAMf9ieoyh5mcnct4_7o
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFIFLR7jxm2lg/company-logo_100_100/company-logo_100_100/0/1630644546845/google_cloud_logo?e=1770854400&v=beta&t=UvXGuyshDnBQ2Aj7644h2w5xZB0fCu9_kaWKcUzltXo
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQFIFLR7jxm2lg/company-logo_400_400/company-logo_400_400/0/1630644546845/google_cloud_logo?e=1770854400&v=beta&t=QJc5izV-2Uj56UuVzqlujb4eWSRbqAAx-7SvA9EIOxs
                          width: 400
                          height: 400
                    - id: '82286774'
                      name: Flutter
                      industry: ''
                      followerCount: 4131
                      Url: https://www.linkedin.com/showcase/flutterdev-hold/
                    - id: '102840132'
                      name: Google Maps Platform
                      industry: Technology, Information and Internet
                      followerCount: 17458
                      Url: https://www.linkedin.com/showcase/googlemapsplatform/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQHExZWymL9ytg/company-logo_200_200/company-logo_200_200/0/1710450776300/gmapsplatform_logo?e=1770854400&v=beta&t=sKtS1LU-in0h-PQs4PqlXcOF44DmcpXzqJO5l274EYw
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQHExZWymL9ytg/company-logo_100_100/company-logo_100_100/0/1710450776300/gmapsplatform_logo?e=1770854400&v=beta&t=Tnixog-hSsbVCZ7t7NQubAAW3oYM6fKoTftQgCP07xc
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/D4D0BAQHExZWymL9ytg/company-logo_400_400/company-logo_400_400/0/1710450776300/gmapsplatform_logo?e=1770854400&v=beta&t=DHMSR7r4z93Q31nqCU39LEPWHjCcLb5lTsZG7Zs5lxs
                          width: 400
                          height: 400
                    - id: '82540973'
                      name: Flutter Dev
                      industry: Technology, Information and Internet
                      followerCount: 103561
                      Url: https://www.linkedin.com/showcase/flutterdevofficial/
                      logos:
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQF1lnr4bvrLKQ/company-logo_200_200/company-logo_200_200/0/1660157151780/flutterdevofficial_logo?e=1770854400&v=beta&t=8mnwBglOKQXHkJxKESnGNknFgYTtYMR6wiAcsifXZ4I
                          width: 200
                          height: 200
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQF1lnr4bvrLKQ/company-logo_100_100/company-logo_100_100/0/1660157151780/flutterdevofficial_logo?e=1770854400&v=beta&t=pLU_-z3MTJAPTPS8JF45J2_YvacD7T2zKXVvXDgkS1s
                          width: 100
                          height: 100
                        - url: >-
                            https://media.licdn.com/dms/image/v2/C560BAQF1lnr4bvrLKQ/company-logo_400_400/company-logo_400_400/0/1660157151780/flutterdevofficial_logo?e=1770854400&v=beta&t=9WDUavN8z8YhzemWLmymtPw6VzCSTfTCLlm3HNYU0sg
                          width: 400
                          height: 400
      tags:
        - Companies
      description: >-
        Get detailed company information by ID. This version provides more data
        than the standard company details, including fields like
        "peopleAlsoFollow" and "affiliatedByJobs."
  /api/v1/jobs/job/hiring-team:
    get:
      summary: Get Hiring Team
      parameters:
        - name: jobId
          in: query
          required: true
          deprecated: false
          schema:
            type: integer
          example: '4355500759'
        - name: start
          in: query
          required: false
          deprecated: false
          schema:
            type: integer
          example: '0'
      responses:
        '200':
          description: Get Hiring Team
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      members:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              type: string
                            headline:
                              type: string
                            urn:
                              type: string
                            username:
                              type: string
                            url:
                              type: string
                              format: uri
                            profilePictureURL:
                              type: string
                              format: uri
                            role:
                              type: string
                      total:
                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  members:
                    - name: Elena Viganò
                      headline: >-
                        HR experience demonstrating a history of exceptional
                        work ethic and an elevated standard of thoroughness and
                        accuracy.
                      urn: ACoAACVg8ncBu1MVNdS2bun9M76LrPyqjjZ7Wbo
                      username: elena-vigano-mi
                      url: https://www.linkedin.com/in/elena-vigano-mi
                      profilePictureURL: >-
                        https://media.licdn.com/dms/image/v2/C4D03AQG9Q_LOsLd59w/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1632122582996?e=1771459200&v=beta&t=PUu8CSyGt1MY5THdXZm4sMP6WQFieU4SlvtCUA5Gj1Q
                      role: Job poster
                  total: 1
      tags:
        - Jobs
      description: Get Hiring Team (People that posted this job)
  /api/v1/jobs/posted-by-profile:
    get:
      summary: Get Profile's Posted Jobs
      parameters:
        - name: profileUrn
          in: query
          required: true
          deprecated: false
          schema:
            type: string
          example: ACoAAAeWVC4BM8_bz8jN04nDpIZtNNB8_tjZN6w
        - name: start
          in: query
          required: false
          deprecated: false
          schema:
            type: integer
          example: '0'
        - name: count
          in: query
          schema:
            type: integer
          example: '25'
      responses:
        '200':
          description: Get Profile's Posted Jobs
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  statusCode:
                    type: integer
                  message:
                    type: string
                  errors:
                    nullable: true
                  data:
                    type: object
                    properties:
                      jobs:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: utc-millisec
                            title:
                              type: string
                            description:
                              type: string
                              format: style
                            jobState:
                              type: string
                            listedAt:
                              type: integer
                            workRemoteAllowed:
                              type: boolean
                            workplaceType:
                              type: string
                            location:
                              type: object
                              properties:
                                id:
                                  type: string
                                  format: utc-millisec
                                defaultLocalizedName:
                                  type: string
                                abbreviatedLocalizedName:
                                  type: string
                            company:
                              type: object
                              properties:
                                id:
                                  type: string
                                  format: utc-millisec
                                name:
                                  type: string
                                url:
                                  type: string
                                  format: uri
                                logoURL:
                                  type: string
                                  format: uri
                      total:
                        type: integer
              example:
                success: true
                statusCode: 200
                message: Data retrieved successfully
                errors: null
                data:
                  jobs:
                    - id: '4300993904'
                      title: Senior Software Engineer - ML Infrastructure
                      description: >-
                        Plaid is evolving into an AI-first company, where data
                        and machine learning are the key enablers of smarter,
                        more secure insight products built on top of Plaid’s
                        vast financial data network. The Machine Learning
                        Infrastructure team sits at the center of this
                        transformation. We build the platforms that enable model
                        developers to experiment, train, deploy, and monitor
                        machine learning systems reliably and at scale — from
                        feature stores and pipelines, to deployment frameworks
                        and inference tooling.<br>We are in the midst of a
                        pivotal shift: replacing legacy systems with a modern
                        feature store, and establishing a standardized ML Ops
                        “golden path.” Our mission is to enable Plaid’s product
                        teams to move faster with trustworthy insights, deploy
                        models with confidence, and unlock the next generation
                        of AI-powered financial experiences.<br>As a Senior
                        Software Engineer on the Machine Learning Infrastructure
                        team, you will design, build, and operate the systems
                        that power machine learning across Plaid. You will apply
                        your deep technical expertise to create scalable,
                        reliable, and secure ML platforms, and collaborate
                        closely with ML product teams to accelerate the delivery
                        of ML &amp; AI-powered products.<br>This is a highly
                        technical, hands-on role where you’ll contribute to core
                        infrastructure, influence architectural direction, and
                        mentor peers while helping to define the “golden path”
                        for ML development and deployment at
                        Plaid.<br><strong>Responsibilities<br></strong><ul><li>Design
                        and implement large-scale ML infrastructure, including
                        feature stores, pipelines, deployment tooling, and
                        inference systems.</li><li>Drive the rollout of Plaid’s
                        next-generation feature store to improve reliability and
                        velocity of model development.</li><li>Help define and
                        evangelize an ML Ops “golden path” for secure, scalable
                        model training, deployment, and
                        monitoring.</li><li>Ensure operational excellence of ML
                        pipelines and services, including reliability,
                        scalability, performance, and cost
                        efficiency.</li><li>Collaborate with ML product teams to
                        understand requirements and deliver solutions that
                        accelerate experimentation and
                        iteration.</li><li>Contribute to technical strategy and
                        architecture discussions within the team.</li><li>Mentor
                        and support other engineers through code reviews, design
                        discussions, and technical
                        guidance.<br></li></ul><strong>Qualifications<br></strong><ul><li>5+
                        years of industry experience as a software engineer,
                        with strong focus on ML/AI infrastructure or large-scale
                        distributed systems.</li><li>Hands-on expertise in
                        building and operating ML platforms (e.g., feature
                        stores, data pipelines, training/inference
                        frameworks).</li><li>Proven experience delivering
                        reliable and scalable infrastructure in
                        production.</li><li>Solid understanding of ML Ops
                        concepts and tooling, as well as best practices for
                        observability, security, and reliability.</li><li>Strong
                        communication skills and ability to collaborate across
                        teams.</li><li>[Nice to have] Experience with ML Ops
                        tools such as MLFlow, SageMaker, or model
                        registries.</li><li>[Nice to have] Exposure to modern AI
                        infrastructure environments (LLMs, real-time inference,
                        agentic models).</li><li>[Nice to have] Background in
                        scaling ML infrastructure in fast-paced product
                        environments.<br></li></ul>$180,000 - $270,000 a
                        year<br>The target base salary for this position ranges
                        from $180,000/year to $270,000/year in Zone 1. The
                        target base salary will vary based on the job's
                        location.<br><strong>Our Geographic Zones Are As
                        Follows<br></strong>Zone 1 - New York City and San
                        Francisco Bay Area<br>Zone 2 - Los Angeles, Seattle,
                        Washington D.C.<br>Zone 3 - Austin, Boston, Denver,
                        Houston, Portland, Sacramento, San Diego<br>Zone 4 -
                        Raleigh-Durham and all other US cities<br>Additional
                        compensation in the form(s) of equity and/or commission
                        are dependent on the position offered. Plaid provides a
                        comprehensive benefit plan, including medical, dental,
                        vision, and 401(k). Pay is based on factors such as (but
                        not limited to) scope and responsibilities of the
                        position, candidate's work experience and skillset, and
                        location. Pay and benefits are subject to change at any
                        time, consistent with the terms of any applicable
                        compensation or benefit plans.
                      jobState: LISTED
                      listedAt: 1768994340000
                      workRemoteAllowed: false
                      workplaceType: Hybrid
                      location:
                        id: '102277331'
                        defaultLocalizedName: San Francisco, California, United States
                        abbreviatedLocalizedName: San Francisco, CA
                      company:
                        id: '2684737'
                        name: Plaid
                        url: https://www.linkedin.com/company/plaid-/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQET1PssqfCU5g/company-logo_400_400/B4EZarmEzJGYAg-/0/1746635608257/plaid__logo?e=1771459200&v=beta&t=VrlilCOQnXqD5ckAMEQYxMCexYnhPq8nCtoRvMPzXzE
                    - id: '4299714070'
                      title: Engineering Manager - Machine Learning Infrastructure
                      description: >-
                        Plaid is evolving into an AI-first company, where data
                        and machine learning are the key enablers of smarter,
                        more secure insight products built on top of Plaid’s
                        vast financial data network. The Machine Learning
                        Infrastructure team sits at the center of this
                        transformation. We build the platforms that enable model
                        developers to experiment, train, deploy, and monitor
                        machine learning systems reliably and at scale — from
                        feature stores and pipelines, to deployment frameworks
                        and inference tooling. We are in the midst of a pivotal
                        shift: replacing legacy systems with a modern feature
                        store, and establishing a standardized ML Ops “golden
                        path.” Our mission is to enable Plaid’s product teams to
                        move faster with trustworthy insights, deploy models
                        with confidence, and unlock the next generation of
                        AI-powered financial experiences.<br>As the Engineering
                        Manager for Machine Learning Infrastructure, you will be
                        responsible for guiding a senior engineering team
                        through the design, delivery, and operation of Plaid’s
                        ML infrastructure. We are looking for a leader who
                        combines deep technical expertise in ML infrastructure
                        with proven experience scaling and managing senior
                        engineering teams. You’ll ensure clarity of execution,
                        help your team deliver high-quality systems, and partner
                        closely with ML product teams to meet their needs. This
                        role is execution-driven: you will translate strategy
                        into action, remove blockers, and build a culture of
                        ownership and technical
                        excellence.<br><strong>Responsibilities<br></strong><ul><li>Lead
                        and support the ML Infra team, driving project execution
                        and ensuring delivery on key commitments.</li><li>Build
                        and launch Plaid’s next-generation feature store to
                        improve reliability and velocity of model
                        development.</li><li>Define and drive adoption of an ML
                        Ops “golden path” for secure, scalable model training,
                        deployment, and monitoring.</li><li>Ensure operational
                        excellence of ML pipelines, deployment tooling, and
                        inference systems.</li><li>Partner with ML product teams
                        to understand requirements and deliver solutions that
                        accelerate model development and
                        iteration.</li><li>Recruit, mentor, and develop
                        engineers, fostering a collaborative and high-performing
                        team
                        culture.<br></li></ul><strong>Qualifications<br></strong><ul><li>8–10
                        years of experience in ML infrastructure, including
                        direct hands-on expertise as an engineer,
                        IC/TL.</li><li>2+ years of experience managing
                        infrastructure or ML platform engineers.</li><li>Proven
                        experience delivering and operating ML or AI
                        infrastructure at scale.</li><li>Solid technical depth
                        across ML/AI infrastructure domains (e.g., feature
                        stores, pipelines, deployment, inference,
                        observability).</li><li>Demonstrated ability to drive
                        execution on complex technical projects with cross-team
                        stakeholders.</li><li>Strong communication and
                        stakeholder management skills.<br></li></ul>$241,200 -
                        $400,000 a year<br>The target base salary for this
                        position ranges from $241,200 a year to $400,000year in
                        Zone 1. The target base salary will vary based on the
                        job's location.<br><strong>Our Geographic Zones Are As
                        Follows<br></strong>Zone 1 - New York City and San
                        Francisco Bay Area Zone<br>Additional compensation in
                        the form(s) of equity and/or commission are dependent on
                        the position offered. Plaid provides a comprehensive
                        benefit plan, including medical, dental, vision, and
                        401(k). Pay is based on factors such as (but not limited
                        to) scope and responsibilities of the position,
                        candidate's work experience and skillset, and location.
                        Pay and benefits are subject to change at any time,
                        consistent with the terms of any applicable compensation
                        or benefit plans.
                      jobState: LISTED
                      listedAt: 1768821144000
                      workRemoteAllowed: false
                      workplaceType: Hybrid
                      location:
                        id: '102277331'
                        defaultLocalizedName: San Francisco, California, United States
                        abbreviatedLocalizedName: San Francisco, CA
                      company:
                        id: '2684737'
                        name: Plaid
                        url: https://www.linkedin.com/company/plaid-/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQET1PssqfCU5g/company-logo_400_400/B4EZarmEzJGYAg-/0/1746635608257/plaid__logo?e=1771459200&v=beta&t=VrlilCOQnXqD5ckAMEQYxMCexYnhPq8nCtoRvMPzXzE
                    - id: '4300944614'
                      title: Senior Software Engineer - Data Infrastructure
                      description: >-
                        Making data driven decisions is key to Plaid's culture.
                        To support that, we need to scale our data systems while
                        maintaining correct and complete data. We provide
                        tooling and guidance to teams across engineering,
                        product, and business and help them explore our data
                        quickly and safely to get the data insights they need,
                        which ultimately helps Plaid serve our customers more
                        effectively. We build the data and machine learning
                        infrastructure to enable Plaid engineers to prototype
                        and iterate on products and features built on top of
                        consumer-permissioned financial data.<br>Engineers on
                        Data Infrastructure are domain experts in Data
                        Warehouse, Data Lakehouse, Spark, Workflow
                        Orchestration, and Streaming technologies. We scale our
                        existing data pipelines in a performant and cost
                        efficient way while creating the necessary abstractions
                        to make developing on top of this platform extremely
                        simple for other engineers at
                        Plaid.<br><strong>Responsibilities<br></strong><ul><li>Contribute
                        towards the long-term technical roadmap for data-driven
                        and machine learning iteration at Plaid</li><li>Leading
                        key data infrastructure projects such as improving ML
                        development golden paths, implementing offline streaming
                        solutions for data freshness, building net new ETL
                        pipeline infrastructure, and evolving data warehouse or
                        data lakehouse capabilities.</li><li>Working with
                        stakeholders in other teams and functions to define
                        technical roadmaps for key backend systems and
                        abstractions across Plaid. </li><li>Debugging,
                        troubleshooting, and reducing operational burden for our
                        Data Platform.</li><li>Growing the team via mentorship
                        and leadership, reviewing technical documents and code
                        changes.<br></li></ul><strong>Qualifications<br></strong><ul><li>5+
                        years of software engineering experience
                        </li><li>Extensive hands-on software engineering
                        experience, with a strong track record of delivering
                        successful projects within the Data Infrastructure or
                        Platform domain at similar or larger
                        companies.</li><li>Deep understanding of one of: ML
                        Infrastructure systems, including Feature Stores,
                        Training Infrastructure, Serving Infrastructure, and
                        Model Monitoring OR Data Infrastructure systems,
                        including Data Warehouses, Data Lakehouses, Apache
                        Spark, Streaming Infrastructure, Workflow
                        Orchestration.</li><li>Strong cross-functional
                        collaboration, communication, and project management
                        skills, with proven ability to coordinate effectively.
                        </li><li>Proficiency in coding, testing, and system
                        design, ensuring reliable and scalable
                        solutions.</li><li>Demonstrated leadership abilities,
                        including experience mentoring and guiding junior
                        engineers.</li><li>[Nice to have] Experience with
                        Databricks, Airflow, AWS EMR<br></li></ul>$180,000 -
                        $270,000 a year<br>The target base salary for this
                        position ranges from $180,000/year to $270,000/year in
                        Zone 1. The target base salary will vary based on the
                        job's location.<br><strong>Our Geographic Zones Are As
                        Follows<br></strong>Zone 1 - New York City and San
                        Francisco Bay Area<br>Zone 2 - Los Angeles, Seattle,
                        Washington D.C.<br>Zone 3 - Austin, Boston, Denver,
                        Houston, Portland, Sacramento, San Diego<br>Zone 4 -
                        Raleigh-Durham and all other US cities<br>Additional
                        compensation in the form(s) of equity and/or commission
                        are dependent on the position offered. Plaid provides a
                        comprehensive benefit plan, including medical, dental,
                        vision, and 401(k). Pay is based on factors such as (but
                        not limited to) scope and responsibilities of the
                        position, candidate's work experience and skillset, and
                        location. Pay and benefits are subject to change at any
                        time, consistent with the terms of any applicable
                        compensation or benefit plans.
                      jobState: LISTED
                      listedAt: 1769080509000
                      workRemoteAllowed: false
                      workplaceType: Hybrid
                      location:
                        id: '102277331'
                        defaultLocalizedName: San Francisco, California, United States
                        abbreviatedLocalizedName: San Francisco, CA
                      company:
                        id: '2684737'
                        name: Plaid
                        url: https://www.linkedin.com/company/plaid-/
                        logoURL: >-
                          https://media.licdn.com/dms/image/v2/D4E0BAQET1PssqfCU5g/company-logo_400_400/B4EZarmEzJGYAg-/0/1746635608257/plaid__logo?e=1771459200&v=beta&t=VrlilCOQnXqD5ckAMEQYxMCexYnhPq8nCtoRvMPzXzE
                  total: 3
      tags:
        - Jobs
      description: Get currect Jobs posted by Given Profile Urn
