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

# Get user recommendations

> Get LinkedIn user recommendations

<div className="inline-flex items-center gap-2 px-4 py-2 bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg">
  <span className="text-base">🪙</span>
  <span className="text-sm font-medium text-yellow-900 dark:text-yellow-100"><span className="font-semibold">1 credit</span><span className="text-yellow-700 dark:text-yellow-300 ml-1">per request</span></span>
</div>

## Copy for AI

<div className="my-6 rounded-xl border border-gray-200 bg-gray-50 p-5 dark:border-gray-800 dark:bg-gray-900/40">
  <div className="min-w-0">
    <p className="text-base font-semibold text-gray-900 dark:text-gray-100">🤖 Why Code When AI Can Do It For You?</p>
    <p className="mt-1 text-sm text-gray-700 dark:text-gray-300">Stop writing code like it's 1970! Let AI do the heavy lifting - click the sparkles to copy a perfectly formatted prompt for ChatGPT, Claude, or your favorite AI assistant.</p>
  </div>

  <div className="mt-4">
    <button
      type="button"
      className="inline-flex items-center gap-2 rounded-md border border-emerald-300 bg-emerald-50 px-3 py-2 text-sm font-medium text-emerald-800 hover:bg-emerald-100 dark:border-emerald-700 dark:bg-emerald-900/30 dark:text-emerald-100 dark:hover:bg-emerald-900/50"
      onClick={() => navigator.clipboard.writeText(`I want to make an API call to https://api.keyapi.ai/v1/linkedin/get_user_recommendations.

Please help me write code to make this API call and handle the response appropriately. Include error handling and best practices.

Here are the details:

Endpoint: GET https://api.keyapi.ai/v1/linkedin/get_user_recommendations

Description: Get LinkedIn user recommendations

Required Headers:
--header 'Authorization: Bearer <YOUR_API_KEY>'

Parameters:
- urn (Required): User URN, obtainable from the get_user_profile API. Example: ACoAAC3iNKcB3qbWJrP7K5Z3i89AF5c1snr8bhc
- page (Optional): Page number, default is 1. Example: 1
- type (Optional): Recommendation type, default is received
Options: received (received recommendations), given (given recommendations). Example: received
- pagination_token (Optional): Pagination token, obtained from the previous response

Example Response:
{
"code": 0,
"message": "success",
"data": {
"pagination_token": null,
"total": 53,
"has_more": true,
"data": [
  {
    "text": "Mathew has an amazing way of writing his e-book that supports you on your linkedin journey. Allowing you to effectively navigate and build your community with bringing out your expertise effectively. 

He has also created an amazing space to support other thought leaders in being successful within their linkedin journey. 

Would highly recommend connecting with him.",
    "date": "August 19, 2024",
    "type": "Clifford was Mathew’s client",
    "recommender": {
      "url": "https://www.linkedin.com/in/clifford-starks",
      "urn": "ACoAABC9Rp4Bq10Kev_ahodM0podCZqEErS5oUI",
      "public_identifier": "clifford-starks",
      "first_name": "Clifford",
      "last_name": "Starks",
      "full_name": "Clifford Starks",
      "description": "“Former UFC Fighter | Leadership Speaker | Leadership Coach & Consultant | Creator of The Fighter’s Formula™”",
      "is_premium": true,
      "avatar": [
        {
          "width": 100,
          "height": 100,
          "url": "https://media.licdn.com/dms/image/v2/D5603AQHVHQS-ZFIsgw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1721189086260?e=1774483200&v=beta&t=XhN0rLXOyRcsONXA9DMHtoKupJ4_Mr3skfxO17m0Unc",
          "expires_at": 1774483200000
        },
        {
  
... (truncated)`)}
    >
      <span>✨</span>
      <span>Copy for AI</span>
    </button>
  </div>
</div>


## OpenAPI

````yaml en/linkedin.openapi.json GET /v1/linkedin/get_user_recommendations
openapi: 3.0.1
info:
  title: LinkedIn API english documentation
  description: >-
    The english reference documentation of the LinkedIn API includes the
    interface's purpose, parameter description, response status, and sample
    structure.
  version: 1.0.0
servers:
  - url: https://api.keyapi.ai
    description: Production
security:
  - JWT Bearer: []
tags: []
paths:
  /v1/linkedin/get_user_recommendations:
    get:
      tags: []
      summary: Get user recommendations
      description: Get LinkedIn user recommendations
      parameters:
        - name: urn
          in: query
          description: User URN, obtainable from the get_user_profile API
          required: true
          example: ACoAAC3iNKcB3qbWJrP7K5Z3i89AF5c1snr8bhc
          schema:
            type: string
        - name: page
          in: query
          description: Page number, default is 1
          required: false
          example: 1
          schema:
            type: integer
        - name: type
          in: query
          description: >-
            Recommendation type, default is received

            Options: received (received recommendations), given (given
            recommendations)
          required: false
          example: received
          schema:
            type: string
            default: received
        - name: pagination_token
          in: query
          description: Pagination token, obtained from the previous response
          required: false
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
              example:
                code: 0
                message: success
                data:
                  pagination_token: null
                  total: 53
                  has_more: true
                  data:
                    - text: >-
                        Mathew has an amazing way of writing his e-book that
                        supports you on your linkedin journey. Allowing you to
                        effectively navigate and build your community with
                        bringing out your expertise effectively. 


                        He has also created an amazing space to support other
                        thought leaders in being successful within their
                        linkedin journey. 


                        Would highly recommend connecting with him.
                      date: August 19, 2024
                      type: Clifford was Mathew’s client
                      recommender:
                        url: https://www.linkedin.com/in/clifford-starks
                        urn: ACoAABC9Rp4Bq10Kev_ahodM0podCZqEErS5oUI
                        public_identifier: clifford-starks
                        first_name: Clifford
                        last_name: Starks
                        full_name: Clifford Starks
                        description: >-
                          “Former UFC Fighter | Leadership Speaker | Leadership
                          Coach & Consultant | Creator of The Fighter’s
                          Formula™”
                        is_premium: true
                        avatar:
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQHVHQS-ZFIsgw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1721189086260?e=1774483200&v=beta&t=XhN0rLXOyRcsONXA9DMHtoKupJ4_Mr3skfxO17m0Unc
                            expires_at: 1774483200000
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQHVHQS-ZFIsgw/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1721189086260?e=1774483200&v=beta&t=bVPDqcXC-b3c82vvUlAzMpbqWXLQTFv1StoBY_Zk8h0
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQHVHQS-ZFIsgw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1721189086260?e=1774483200&v=beta&t=MRL8GGvibqPIz8BogBsxJ8GV_MzCZJuvgXBuTTTEqrQ
                            expires_at: 1774483200000
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQHVHQS-ZFIsgw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1721189086288?e=1774483200&v=beta&t=NPepAf_KdzX2zBuniVhY6APU6W7uub9KannzvJkj4V8
                            expires_at: 1774483200000
                    - text: >-
                        Mathew Warboys isn't just an expert; he's a genuine ally
                        in the quest for LinkedIn mastery. 


                        The E-Guide he crafted was more than informative—it felt
                        like a mentor walking me through each step, resulting in
                        tangible growth for my business.


                        It's rare to find advice that translates so directly
                        into success, but that's exactly what Mathew delivers.
                        His personalized account management service mirrors
                        this, bringing a human touch to digital interactions
                        that truly sets him apart. 


                        Recommending Mathew is a pleasure; his work speaks for
                        itself, but more importantly, it speaks to the real
                        potential within all of us to connect and succeed on
                        LinkedIn.
                      date: January 19, 2024
                      type: Isabelle was Mathew’s client
                      recommender:
                        url: https://www.linkedin.com/in/isabelle-lacroix-vienneau
                        urn: ACoAACB3NqcBlZHXGv_66DSN5VVWWhILtPjJTI0
                        public_identifier: isabelle-lacroix-vienneau
                        first_name: Isabelle
                        last_name: LaCroix Vienneau
                        full_name: Isabelle LaCroix Vienneau
                        description: >-
                          Tightening Leadership Systems to Protect and Expand
                          Margin
                        is_premium: false
                        avatar:
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQG-kSyXCvSd0A/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1727552071341?e=1774483200&v=beta&t=GrnglW9fhGEOcTPpFGb968a9s3TFSmKj3j1keu-8YNY
                            expires_at: 1774483200000
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQG-kSyXCvSd0A/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1727552071341?e=1774483200&v=beta&t=WspeM9kuQU3eeIz7wA4INx0WP8ky2USfMMj65Cd4wec
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQG-kSyXCvSd0A/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1727552071341?e=1774483200&v=beta&t=Om3jC-KYsLOYHTBVq-aZaKWEc_IK4Vx-dyp9uxf-uKI
                            expires_at: 1774483200000
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQG-kSyXCvSd0A/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1727552071365?e=1774483200&v=beta&t=VmhYthohbsMZ3AhE_4gGzWaAQqcKtwa-WsxITukrZck
                            expires_at: 1774483200000
                    - text: >-
                        Working with Mathew Warboys has been more than just a
                        job; it's been an experience in feeling valued and
                        supported. One of the standout qualities is how much he
                        cares about our well-being. In an industry where it
                        sometimes feels like you're just another cog in the
                        machine, he takes the time to check in on our mental
                        health.


                        Also, he actively creates an environment where it's okay
                        not just to do the work but to enjoy it. He goes out of
                        his way to make sure each of us is happy with what we're
                        doing. It's a rare thing to have a boss who cares about
                        your job satisfaction as much as Mathew does.


                        If you're looking for a boss who treats you like a
                        person, not just an employee, Mathew Warboys is your
                        guy. 100/10!!
                      date: November 29, 2023
                      type: Ella Mae reported directly to Mathew
                      recommender:
                        url: https://www.linkedin.com/in/ella-mae-tusay-5a9424136
                        urn: ACoAACEqkFEBqzXJZ8r1oArlxxDQzS29-sUVUdA
                        public_identifier: ella-mae-tusay-5a9424136
                        first_name: Ella Mae
                        last_name: Tusay
                        full_name: Ella Mae Tusay
                        description: >-
                          Social Media Manager I Virtual Assistant I Graphic
                          Design
                        is_premium: false
                        avatar:
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQEiIAzh1dC8qQ/profile-displayphoto-scale_100_100/B56ZtkDB72IcAc-/0/1766910076003?e=1774483200&v=beta&t=POkGQcA_Qyq3fhHBhga89UOXGzzwVgEG64WBISmZpc0
                            expires_at: 1774483200000
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQEiIAzh1dC8qQ/profile-displayphoto-scale_200_200/B56ZtkDB72IcAY-/0/1766910076003?e=1774483200&v=beta&t=1JMK_k2Nau2HkYgRtrY5T3VV4ngbvSsgXTMhqE0L1W8
                            expires_at: 1774483200000
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQEiIAzh1dC8qQ/profile-displayphoto-crop_800_800/B56ZtkDB72IcAI-/0/1766910075916?e=1774483200&v=beta&t=CM0AWqAi-bKoVwpdDc8KtJttbidq1YU6UhuZTJB7WV4
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQEiIAzh1dC8qQ/profile-displayphoto-scale_400_400/B56ZtkDB72IcAg-/0/1766910076003?e=1774483200&v=beta&t=vGiEiaadx17-Fb8ve3MN0I5xEcYjyn3CXvgkSZsIkdU
                            expires_at: 1774483200000
                    - text: >-
                        Mathew  Warboys' "LinkedIn Growth and Monetization
                        e-Guide" is a masterclass in leveraging LinkedIn's
                        platform for professional success. As someone who was a
                        new comer and now navigates the intricate world of
                        LinkedIn, I found his insights both insightful, and
                        incredibly practical. 


                        What sets this e-guide apart is its comprehensive
                        approach. He doesn't just focus on the basics of profile
                        optimization – though he covers that exceptionally well
                        – but delves deeper into strategies for meaningful
                        network expansion, content creation, and engagement
                        tactics that resonate with LinkedIn's unique audience.


                        The section on monetization is particularly
                        enlightening. Warboys breaks down complex concepts into
                        digestible, actionable steps, guiding readers on how to
                        convert their LinkedIn presence into tangible business
                        opportunities. His tips on using LinkedIn for lead
                        generation and personal branding are standout features,
                        offering readers a clear roadmap to not just grow, but
                        also monetize their presence effectively.


                        Moreover, the e-guide is written in an accessible,
                        engaging style, making it suitable for LinkedIn users at
                        all levels. 

                        Whether you're a newcomer to the platform or an
                        experienced professional seeking to refine your
                        strategy, there's something valuable to be gained.


                        In essence, Mathew Warboys’ "LinkedIn Growth and
                        Monetization e-Guide" is an essential resource for
                        anyone looking to unlock the full potential of
                        LinkedIn. 

                        It’s a testament to Warboys’ expertise and a toolkit for
                        success in the digital networking world. 


                        It is an honour to be connected with you Mathew and
                        learn from your brave leadership.  


                        Thank you kindly for all that you do to support all of
                        us to succeed when provided with the right direction
                        with your wisdom and insights. 

                        I highly recommend your e book as a key guide to pick up
                        to navigate LinkedIn, I feel greater confidence and
                        efficiency in my professional development. 
                      date: November 14, 2023
                      type: Heather was Mathew’s client
                      recommender:
                        url: >-
                          https://www.linkedin.com/in/heather-mcwilliam-9187481a4
                        urn: ACoAAC_O0yQBwrf-zMRS1Isvif89pTjGG_DIV3w
                        public_identifier: heather-mcwilliam-9187481a4
                        first_name: 'Heather '
                        last_name: McWilliam
                        full_name: Heather McWilliam
                        description: >-
                          Founder of Brave Inspires Brave | Leadership, Social
                          Impact, Human Rights & Mental well being. 
                        is_premium: true
                        avatar:
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQFa4qPjxJTa_Q/profile-displayphoto-shrink_200_200/B56ZRSFAhiGQAg-/0/1736543833115?e=1774483200&v=beta&t=qjZ8lMmIHF93a3o42Y9HfHzVuaLikE4l6i2HXkCwpqM
                            expires_at: 1774483200000
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQFa4qPjxJTa_Q/profile-displayphoto-shrink_100_100/B56ZRSFAhiGQAc-/0/1736543833115?e=1774483200&v=beta&t=Z6tyK1TKg5VwR-VcCQOD-fS1lRLczzkxhTa2fZlTBBQ
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQFa4qPjxJTa_Q/profile-displayphoto-shrink_400_400/B56ZRSFAhiGQAo-/0/1736543833115?e=1774483200&v=beta&t=fegu1M0KAOwTDPBAUZrBEVlAtNrRBKs72riNobVZvNk
                            expires_at: 1774483200000
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQFa4qPjxJTa_Q/profile-displayphoto-shrink_800_800/B56ZRSFAhiGQAk-/0/1736543833137?e=1774483200&v=beta&t=lzhe6Y86fm8qtuRbeXrm89GwKX3dxcJIE9XRKBJovyI
                            expires_at: 1774483200000
                    - text: >-
                        Mathew Warboys is a pure LinkedIn genius!  His
                        commitment to mastery and his heart to share powerful,
                        effective strategies can be a real game-changer for
                        anyone who is serious about getting real results from
                        their social media campaigns. Perhaps best of all,
                        Mathew has a real heart for serving others.  I count him
                        a dear friend and mentor and I so appreciate him!
                      date: October 22, 2023
                      type: Bill was Mathew’s client
                      recommender:
                        url: https://www.linkedin.com/in/billdolan
                        urn: ACoAAAAN-RUBI3Jv7tA_Fzy7N6_hOanFLK4nMvg
                        public_identifier: billdolan
                        first_name: Bill
                        last_name: 'Dolan '
                        full_name: Bill Dolan
                        description: >-
                          Emmy-Nominated Video & Live Event Director | Author |
                          Keynote Speaker 🎬❤️🎬 I help companies and nonprofits
                          grow, inspire and tell their BRAND STORY through
                          compelling brand VIDEOS and impactful LIVE EVENT
                          experiences.
                        is_premium: true
                        avatar:
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQH1dqBvl325Dg/profile-displayphoto-shrink_200_200/B56ZXWALtsGUAY-/0/1743052128931?e=1774483200&v=beta&t=3SzB7o8YAK9CWp32kIKngFFxNm2u8AJvYZOdg0vsoWg
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQH1dqBvl325Dg/profile-displayphoto-shrink_400_400/B56ZXWALtsGUAg-/0/1743052128931?e=1774483200&v=beta&t=svVMWquMGSvj6Jgcidj98Ivh-N3cBxTICMQK3BgXb9I
                            expires_at: 1774483200000
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQH1dqBvl325Dg/profile-displayphoto-shrink_100_100/B56ZXWALtsGUAU-/0/1743052128931?e=1774483200&v=beta&t=tx1BFO8D_ieDbqXUWjoYqmQiY61f99loYX0gOXayZ0s
                            expires_at: 1774483200000
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQH1dqBvl325Dg/profile-displayphoto-shrink_800_800/B56ZXWALtsGUAc-/0/1743052128946?e=1774483200&v=beta&t=Kvo1nnj0kOlq0QtggDvb8tX6XDaA8hLSqqGjheOMN-w
                            expires_at: 1774483200000
                    - text: >-
                        I had the pleasure of working with Mathew from Dream Job
                        Hub and I must say, it was a great experience.  Not only
                        Mathew is a highly skilled professional and a true
                        perfectionist in their craft, but he is also possess a
                        kind and compassionate nature that sets them apart.

                        Mathew demonstrated an unparalleled level of expertise
                        in optimizing LinkedIn profile, crafting outstanding
                        cover letters, transforming and optimizing your resume,
                        but the most important providing invaluable advice for
                        networking and interview preparation.


                        Mathew not only helps you secure your dream job, but he
                        also transform your LinkedIn presence, elevating your
                        personal brand and attracting opportunities you never
                        thought possible.


                        If you are looking for a top-notch professional who will
                        not only deliver exceptional results but he will also
                        uplift and empower you along the way, I highly recommend
                        Mathew.  His talent, kindness and expertise will
                        undoubtedly make your journey to success an
                        extraordinary one.


                        Ask help from Mathew today and your career or business
                        will thank you later!
                      date: June 27, 2023
                      type: Ioanna was Mathew’s client
                      recommender:
                        url: https://www.linkedin.com/in/ipetrochiloubusiness
                        urn: ACoAABS19sgBuYp9ZGbeNQXVQ-dZhrJhsWJSzmI
                        public_identifier: ipetrochiloubusiness
                        first_name: Ioanna
                        last_name: Petrochilou
                        full_name: Ioanna Petrochilou
                        description: >-
                          Change Catalyst ✨ | Leadership Coach | Talent
                          Transformation | Project Maestro 💫
                        is_premium: false
                        avatar:
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQG1hAb3eooYng/profile-displayphoto-scale_400_400/B56ZtCvn6aIYAg-/0/1766351340778?e=1774483200&v=beta&t=tIeOYNVWa3k2MBlXWP3ylOSmu6uKMzvt3qaeePs3Ym8
                            expires_at: 1774483200000
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQG1hAb3eooYng/profile-displayphoto-scale_200_200/B56ZtCvn6aIYAY-/0/1766351340779?e=1774483200&v=beta&t=fYj_nCdf5SeviULpkHLeNDGpE5dfuVn_1Wx5f8Ffsr8
                            expires_at: 1774483200000
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQG1hAb3eooYng/profile-displayphoto-crop_800_800/B56ZtCvn6aIYAI-/0/1766351340670?e=1774483200&v=beta&t=-_fjMt_18l8w0DGSYhNkU-pTQegpbOQwVEIQMmQjNGs
                            expires_at: 1774483200000
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQG1hAb3eooYng/profile-displayphoto-scale_100_100/B56ZtCvn6aIYAc-/0/1766351340779?e=1774483200&v=beta&t=uw010mILQNI2xFmmFIx_u8HihyB-4h_2CcTbbwc2p1w
                            expires_at: 1774483200000
                    - text: >-
                        I was introduced to Mathew through LinkedIn, where a
                        friend of mine highly recommended following Mathew
                        Warboys due to his exceptional content. As someone who
                        enjoys reading in my leisure time, I decided to explore
                        his work, and I can confidently say that it has been a
                        rewarding experience. 


                        I find his use of terminology truly captivating, and it
                        requires an engaged reader to truly grasp the depth of
                        his ideas. I resonate with the majority of his posts and
                        have become a dedicated observer, frequently visiting
                        his LinkedIn page in anticipation of new content. 


                        I wholeheartedly endorse Mathew for any recommendation,
                        as I firmly believe he possesses the ability to make
                        substantial contributions to any institution or
                        organization he aligns with.
                      date: June 10, 2023
                      type: Ma. Tanya was Mathew’s client
                      recommender:
                        url: >-
                          https://www.linkedin.com/in/ma-tanya-panganiban-50bba0234
                        urn: ACoAADqNcNsBLH7R40C6Olw8uaNZAUlt0dKLaA0
                        public_identifier: ma-tanya-panganiban-50bba0234
                        first_name: Ma. Tanya
                        last_name: Panganiban
                        full_name: Ma. Tanya Panganiban
                        description: Architect
                        is_premium: false
                        avatar:
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/C5603AQGg7b-51849eA/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1647573009232?e=1774483200&v=beta&t=_Ws0V5eiq8pELf9UIpx1J26UgrXwebbiGBe61quwp9g
                            expires_at: 1774483200000
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/C5603AQGg7b-51849eA/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1647573009232?e=1774483200&v=beta&t=T3RToA2d3sOdZN1r5TOZjy9-6AvQsz5LW54p2JOzLvw
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/C5603AQGg7b-51849eA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1647573009232?e=1774483200&v=beta&t=eU1AK2QE9qnpsTtuTnp3jqaU6qQLO9Wk0pJjatPRJug
                            expires_at: 1774483200000
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/C5603AQGg7b-51849eA/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1647573009232?e=1774483200&v=beta&t=sYJ2gld7L-fD_awFG3sJKcIcrF0YoMV_64qA5Bss1Dk
                            expires_at: 1774483200000
                    - text: >-
                        I am delighted to recommend Mathew for his exceptional
                        leadership skills, impressive articulation, and
                        dedication to helping people build their brands on
                        LinkedIn. As my boss, Mathew has consistently
                        demonstrated his expertise in navigating the platform
                        and providing valuable insights and strategies to our
                        team.


                        Beyond his professional accomplishments, Mathew is also
                        a passionate advocate for men's mental health,
                        consistently raising awareness and providing support to
                        those who may be struggling. His positivity and
                        intelligence shine through in everything he does, and
                        his dedication to creating meaningful content on
                        LinkedIn is truly outstanding.


                        I highly recommend Mathew as a leader, mentor, and
                        colleague. He is an asset to any team or project, and I
                        am confident that he will continue to make a positive
                        impact on those around him.
                      date: May 22, 2023
                      type: AJ reported directly to Mathew
                      recommender:
                        url: https://www.linkedin.com/in/ajandaya3
                        urn: ACoAAEKc_EQBlBWhrrHd8YCrAFLoDDQqaECfMco
                        public_identifier: ajandaya3
                        first_name: AJ
                        last_name: Andaya III
                        full_name: AJ Andaya III
                        description: >-
                          Social Media Community Manager | Graphics Design |
                          Video Editing
                        is_premium: false
                        avatar:
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQGoT1N_uzOF3w/profile-displayphoto-scale_400_400/B56ZupNzYwIUAg-/0/1768070527135?e=1774483200&v=beta&t=Oxx1BEwxvMM14AG9t_eRsL97WiIazapmS9QMVmvzWWk
                            expires_at: 1774483200000
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQGoT1N_uzOF3w/profile-displayphoto-scale_200_200/B56ZupNzYwIUAY-/0/1768070527135?e=1774483200&v=beta&t=sBoex8AopAMBfYKAELwr_j4lyHBlfwT8jvGO_kJVnP4
                            expires_at: 1774483200000
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQGoT1N_uzOF3w/profile-displayphoto-crop_800_800/B56ZupNzYwIUAI-/0/1768070527053?e=1774483200&v=beta&t=G1OTS9pQhlQL2PCMnlQuUvbTxPULGYnqFQbM7wYDLbQ
                            expires_at: 1774483200000
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQGoT1N_uzOF3w/profile-displayphoto-scale_100_100/B56ZupNzYwIUAc-/0/1768070527135?e=1774483200&v=beta&t=N1jJx9RVWO9AJNMej5iZ0g_K4XNfXqDfc7du187CV_4
                            expires_at: 1774483200000
                    - text: >-
                        I can't speak more highly of Mathew and the Dream Job
                        Hub team. If you're looking for that extra push or nudge
                        to revive your confidence and awaken your potential then
                        look no further. I went with the "Full Exec Package"
                        after suddenly realising that I was out of touch with
                        the current networking and recruitment trends. This
                        included the full CV overhaul, cover letter + LinkedIn
                        profile optimisation. In addition I received the online
                        course "Unlocking the Hidden Job Market" with bonus docs
                        and lastly I had LinkedIn feature post. All in all I had
                        a excellent experience and would recommend you take the
                        leap with Mathew.

                        Mathew and the Dream Job Hub team are so friendly, and
                        professional that it was an absolute pleasure working
                        with them on my realignment. Do it, "Believe you can and
                        you're halfway there." - Theodore Roosevelt
                      date: April 14, 2023
                      type: Robert was Mathew’s client
                      recommender:
                        url: https://www.linkedin.com/in/robweldon
                        urn: ACoAAAAhZ8EBGDf_VleVnCIsHBC-UJ31FiCJ0_k
                        public_identifier: robweldon
                        first_name: Robert
                        last_name: Weldon
                        full_name: Robert Weldon
                        description: >-
                          🚀 Strategic Project Leader | Data Centre &
                          Infrastructure Lead | Tripling turnover, 40%+ revenue
                          growth, led eight-figure projects. Guiding teams of
                          35+
                        is_premium: false
                        avatar:
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQG_RKuzz4BTPw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1678446379293?e=1774483200&v=beta&t=xvC00jNIDgjbcPI61BYs1eSgfYKMq7Hi-ZsP6yaV_d4
                            expires_at: 1774483200000
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQG_RKuzz4BTPw/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1678446379293?e=1774483200&v=beta&t=tUfqZ43g8Ch8EJBm0Pd92IyXgVGW0l8Fq44J5vCvk4Q
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQG_RKuzz4BTPw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1678446379293?e=1774483200&v=beta&t=dwjGuQin1ZADZHqhX3UC0-glJJ9PAtRHjsChkNYwaZ8
                            expires_at: 1774483200000
                          - width: 612
                            height: 612
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQG_RKuzz4BTPw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1678446379293?e=1774483200&v=beta&t=4MsdRAlawUo6yY5tVFMWu4TpKI3AwinMECteg-sly2A
                            expires_at: 1774483200000
                    - text: >-
                        Very personable, professional and focused service & team
                        - each and every request has been met and with quality -
                        highly recommended!
                      date: April 5, 2023
                      type: Victoria was Mathew’s client
                      recommender:
                        url: https://www.linkedin.com/in/vpreys
                        urn: ACoAAAAJIXIBfic8T4-k7RffHNKJyKzvhjV2BwM
                        public_identifier: vpreys
                        first_name: Victoria
                        last_name: P.
                        full_name: Victoria P.
                        description: >-
                          Caring Leader | Operational Excellence Expert |
                          Speaker | Mentor
                        is_premium: false
                        avatar:
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQEHwgHrrXe3EA/profile-displayphoto-scale_100_100/B4EZti6mqaKMAc-/0/1766891090453?e=1774483200&v=beta&t=QzNQ_l2E4XzFBXh22GovTBViRkcMn1Fz_fSpbth8GM0
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQEHwgHrrXe3EA/profile-displayphoto-scale_400_400/B4EZti6mqaKMAg-/0/1766891090453?e=1774483200&v=beta&t=gd6u7-yHHxBxxiPmrNJ0oVwhAmdL9ITFWmi4NeScKDo
                            expires_at: 1774483200000
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQEHwgHrrXe3EA/profile-displayphoto-scale_200_200/B4EZti6mqaKMAY-/0/1766891090453?e=1774483200&v=beta&t=EahsAmaQ0VbRQUI5p5FP8ap5GW8elYT-E8UIahDJcPM
                            expires_at: 1774483200000
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQEHwgHrrXe3EA/profile-displayphoto-crop_800_800/B4EZti6mqaKMAI-/0/1766891090351?e=1774483200&v=beta&t=LL4wgcVginvrd6248JHrWhS2cpJZjYtvY6M0FnpX6nk
                            expires_at: 1774483200000
                    - text: >-
                        i requested Dream Job Hub to provide me with the entire
                        suite of services for my cv review. The final result was
                        far beyond my expectation and already I am getting hits
                        on my profile. Thank you Dream Job Hub.
                      date: February 27, 2023
                      type: Dean was Mathew’s client
                      recommender:
                        url: https://www.linkedin.com/in/dean-van-der-westhuizen
                        urn: ACoAAB1jMDgBe3C_1PCb1nGOqXvsrGmucjxxddY
                        public_identifier: dean-van-der-westhuizen
                        first_name: Dean
                        last_name: Van Der Westhuizen
                        full_name: Dean Van Der Westhuizen
                        description: >-
                          Corporate Process Manager @ FPT Group | HSEQ & Risk
                          Management
                        is_premium: true
                        avatar:
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/C4D03AQHVHMk6D5Pc3A/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1618082824623?e=1774483200&v=beta&t=MSoeTSS-N1VkXtKkkAtoybYGL6sfRmNSBIfp9klUDeU
                            expires_at: 1774483200000
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/C4D03AQHVHMk6D5Pc3A/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1618082824623?e=1774483200&v=beta&t=don_GevElv6IXFivLXHC1lGE7uM3M-pN2IinCww3ejw
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/C4D03AQHVHMk6D5Pc3A/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1618082824623?e=1774483200&v=beta&t=LrXEdG8SMY9qCgVIonTDtjjoDGdYbZ-Sl7WM1FTFo8o
                            expires_at: 1774483200000
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/C4D03AQHVHMk6D5Pc3A/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1618082824623?e=1774483200&v=beta&t=RbLnEqBCXQl8c5Sa48FcmLQxNQLL7gzxf2WHCmoPoss
                            expires_at: 1774483200000
                    - text: >-
                        Mathew is one of the most professional and kind people
                        I’ve met on LinkedIn. Not only is he an excellent coach,
                        but he’s extremely intelligent and knowledgeable. I’m a
                        big fan of Mathew and his work.
                      date: February 15, 2023
                      type: Antonia was Mathew’s client
                      recommender:
                        url: https://www.linkedin.com/in/antoniasemanskeems
                        urn: ACoAAAJbLX8Beg_IoAxb4b40scvG5wXzn4LWEEQ
                        public_identifier: antoniasemanskeems
                        first_name: Antonia
                        last_name: 'Semanskee, MS '
                        full_name: Antonia Semanskee, MS
                        description: >-
                          Brand Clarity & Authority Marketing | Helping
                          professional service businesses explain how they’re
                          different and unique | Authority Building System =
                          Shorter Sales Cycles
                        is_premium: false
                        avatar:
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQE-nl2jcsJdfA/profile-displayphoto-scale_200_200/B56ZuP92MTJcAY-/0/1767646913765?e=1774483200&v=beta&t=P46jieJCBvCZJg8OHPPgnMzuu68qt-gKOoiHFnoX6Wk
                            expires_at: 1774483200000
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQE-nl2jcsJdfA/profile-displayphoto-crop_800_800/B56ZuP92MTJcAI-/0/1767646913681?e=1774483200&v=beta&t=XTD4r5EjS0PeMn6161y-XR1wiBjPxMRsFI7fnz1XIME
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQE-nl2jcsJdfA/profile-displayphoto-scale_400_400/B56ZuP92MTJcAg-/0/1767646913765?e=1774483200&v=beta&t=b5QlyqYL2w0wL9S5hwynjr5uKYb8v8cqDWzJVH906gE
                            expires_at: 1774483200000
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQE-nl2jcsJdfA/profile-displayphoto-scale_100_100/B56ZuP92MTJcAc-/0/1767646913765?e=1774483200&v=beta&t=Tp56ID77FwWHkCRZNSlfbN46WLIa7OpAYwEB5fFmD38
                            expires_at: 1774483200000
                    - text: >-
                        Mathew Warboys and his MEN MATTER TOO cause is a support
                        system that is urgently needed in today’s society. 


                        The men in my family are afflicted with various types of
                        mental illness. 


                        Being the only woman in the family to also be diagnosed,
                        it is so important for me to be able to have the
                        resources and a community that not only understands, but
                        wants to understand how much the men in our lives matter
                        to us. 


                        This world would greatly benefit from more thought
                        leaders like Mathew, who sees beyond people’s exterior
                        and to what really matters on the inside. 
                      date: January 17, 2023
                      type: Nicole worked with Mathew on the same team
                      recommender:
                        url: https://www.linkedin.com/in/nicthegbw
                        urn: ACoAABq_jCABf7UhKqv_bG9dNNPIc0UtnG7okNA
                        public_identifier: nicthegbw
                        first_name: Nicole
                        last_name: Angai-Galindo
                        full_name: Nicole Angai-Galindo
                        description: >-
                          ⭐️Bipolar Brilliance⭐️ in action | owner GUIDING
                          BRILLIANT WRITERS LLC, Turnkey Hybrid Publishing
                          Services| All Genres📚14 Best-Selling Books in 2
                          Years🏆Best-Selling Co-Author in 11 Anthologies ✍🏽
                          100+ Writers Served 
                        is_premium: true
                        avatar:
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQFzHJouwqnwFw/profile-displayphoto-shrink_400_400/B4EZTdrpQ_GwAo-/0/1738885994219?e=1774483200&v=beta&t=9YkP_v8ly9mhfP9-pcAhnLtYaPuY6X9yIu7SKKCJ4f4
                            expires_at: 1774483200000
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQFzHJouwqnwFw/profile-displayphoto-shrink_100_100/B4EZTdrpQ_GwAc-/0/1738885994220?e=1774483200&v=beta&t=IxsrkMLHdH7FU3SsAeHpsAA3XQxth5i6jtk9fq6Fx-4
                            expires_at: 1774483200000
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQFzHJouwqnwFw/profile-displayphoto-shrink_200_200/B4EZTdrpQ_GwAg-/0/1738885994220?e=1774483200&v=beta&t=lkmVTYGWAfJ_EjDS-WLwBi9o3Gw9Lbqk0tXM2ombXJs
                            expires_at: 1774483200000
                          - width: 633
                            height: 633
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQFzHJouwqnwFw/profile-displayphoto-shrink_800_800/B4EZTdrpQ_GwAk-/0/1738885994234?e=1774483200&v=beta&t=UcZeFVfrw7bVciPGMIeXqnd7sTzL8gUOLajg_fAFH0Q
                            expires_at: 1774483200000
                    - text: >-
                        I had the pleasure of currently working with Mathew to
                        create his website for his new Company, MEN MATTER TOO,
                        and he is very passionate of what he does.


                        There are so many pathways in life, he could've pursued,
                        but his self-less acts of being able to promote the
                        well-being and mental health for me is something to be
                        admired about.


                        I highly recommend him if anyone gets the chance to work
                        or learn from him.
                      date: January 16, 2023
                      type: >-
                        Ethan Kyle worked with Mathew but they were at different
                        companies
                      recommender:
                        url: https://www.linkedin.com/in/ethanaurellano
                        urn: ACoAADI2zVoBMQu9jX4Ypc9xmLxnphMu7PPdmWU
                        public_identifier: ethanaurellano
                        first_name: Ethan Kyle
                        last_name: Aurellano
                        full_name: Ethan Kyle Aurellano
                        description: Aspiring Machine Learning Engineer
                        is_premium: false
                        avatar:
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQE7d41UeJhQ3Q/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1682468717908?e=1774483200&v=beta&t=O8k8ImAGJkE8PDOCJIeD6dbjSeu65oUUz1RbnExy2qw
                            expires_at: 1774483200000
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQE7d41UeJhQ3Q/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1682468717908?e=1774483200&v=beta&t=otLe3qupjo7niCkczQV9PeZqtcNPKrUXYwSNTauhRSI
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQE7d41UeJhQ3Q/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1682468717908?e=1774483200&v=beta&t=Dzf4-vm9rR3KP_cSGfNlvJl1Es4wIYMkxT0jdXV3iTw
                            expires_at: 1774483200000
                          - width: 612
                            height: 612
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQE7d41UeJhQ3Q/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1682468717908?e=1774483200&v=beta&t=_2kY_HdiCTaXBgYVHs2HCpCaPELYnLFc8LMbkCZLJPc
                            expires_at: 1774483200000
                    - text: >-
                        It's my absolute pleasure to recommend @matthewwarboys
                        and #dreamjobhub for #resume and #coverletter writing as
                        well as @galynadaniel and #linkedin4$uccess for
                        #LinkedInprofileoptimization. Their work was thorough,
                        timely and resources provided were extensive. I
                        thoroughly enjoyed my time working together and through
                        a seamless process came to know their teamwork as a
                        truly valuable asset to my professional development.
                      date: September 6, 2022
                      type: Aimee was Mathew’s client
                      recommender:
                        url: https://www.linkedin.com/in/aimee-reiss
                        urn: ACoAACXszykBZFDYgEaSrfpEgBdN6SjT6Yrrx04
                        public_identifier: aimee-reiss
                        first_name: Aimee
                        last_name: Reiss
                        full_name: Aimee Reiss
                        description: >-
                          Founder @ Above the Grind 🌿 || Founder @ NextPro PPC
                          || Leadership & Business Coach || Sustainable Growth
                          Strategist
                        is_premium: true
                        avatar:
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQFjAVZWvsGADw/profile-displayphoto-scale_400_400/B56ZnFW.NUJkAg-/0/1759952758441?e=1774483200&v=beta&t=Ymt23s1s19nSw6ggzq2wSNvI4Drigl4lCjdLmjkL0-c
                            expires_at: 1774483200000
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQFjAVZWvsGADw/profile-displayphoto-scale_100_100/B56ZnFW.NUJkAc-/0/1759952758441?e=1774483200&v=beta&t=N6quSq_QfVbscq8j-FrN6e-FTbcz7OLiI0ek4bWNwj0
                            expires_at: 1774483200000
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQFjAVZWvsGADw/profile-displayphoto-scale_200_200/B56ZnFW.NUJkAY-/0/1759952758441?e=1774483200&v=beta&t=LRt7LsWg3r7eomSSD7WIGSRexa48P8l678tZiFtcYeE
                            expires_at: 1774483200000
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/D5603AQFjAVZWvsGADw/profile-displayphoto-crop_800_800/B56ZnFW.NUJkAI-/0/1759952758362?e=1774483200&v=beta&t=x0aDRvaxEljjjK8E1X9lPbcI3l8vVxWyMehsaTv52Lo
                            expires_at: 1774483200000
                    - text: >-
                        It’s my privilege to know Mathew Warboys who is
                        committed to delivering excellence and aims to bring the
                        best out of you. Being the TOP 40 CEO and the TOP 10
                        LinkedIn Coach at his young age, he is a role model for
                        many.


                        Mathew really wants to help people to reach their full
                        potential, you can feel it in the first moments when you
                        start to interact with him. He shares his wisdom and
                        wide range of experiences about job searching, CV
                        writing, interview preparation, LinkedIn profile
                        optimization and LinkedIn networking, and educates our
                        community on the best practices to achieve real success.


                        He is not only one of the most helpful and generous
                        people I have ever met, but he is a real powerhouse who
                        inspires people to take charge of their lives and work
                        hard for their dream careers.


                        Mathew represents the highest standards in his
                        profession and I appreciate him for being an advocate of
                        men’s mental health protection and standing by several
                        social causes.
                      date: September 2, 2022
                      type: ILDIKO worked with Mathew on the same team
                      recommender:
                        url: https://www.linkedin.com/in/ildikobujaki
                        urn: ACoAAAZQddcBg5bfCXwlhe_yCRw4BakPgP_-F9A
                        public_identifier: ildikobujaki
                        first_name: ' ILDIKO '
                        last_name: ' BUJAKI'
                        full_name: ILDIKO BUJAKI
                        description: >-
                          ◘ International Business, Brand & Marketing
                          Transformation Leader▐ Shaping AI-Ready Strategies for
                          Ambitious Brands▐ Committed to Human-Centered Tech
                          Development▐ Fostering GCC Innovation through
                          Strategic Relationships
                        is_premium: false
                        avatar:
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4D03AQGmGQWRyJH7qA/profile-displayphoto-shrink_800_800/B4DZRg0ZlmGkAk-/0/1736791137751?e=1774483200&v=beta&t=vrlgoA1lCmzqf-swWFG0xCg1FByz3SckRJ5e0_9c3So
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4D03AQGmGQWRyJH7qA/profile-displayphoto-shrink_400_400/B4DZRg0ZlmGkAo-/0/1736791137751?e=1774483200&v=beta&t=auZL2jJd-PMILHgRsRXdmB_MvbroSbuyp8hNCcQEti0
                            expires_at: 1774483200000
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4D03AQGmGQWRyJH7qA/profile-displayphoto-shrink_100_100/B4DZRg0ZlmGkAc-/0/1736791137751?e=1774483200&v=beta&t=vgPnpPVpSdUVGMK99asu3czYhvwu0WpZ6tra6y5i0Dw
                            expires_at: 1774483200000
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4D03AQGmGQWRyJH7qA/profile-displayphoto-shrink_200_200/B4DZRg0ZlmGkAg-/0/1736791137707?e=1774483200&v=beta&t=7H66s0gdiwj4kxwrLqkGlUWzV6cVvTcdgrn-VIv0wD0
                            expires_at: 1774483200000
                    - text: >-
                        Mathew recently has looked over my CV and has gone above
                        and beyond in the advice provided. I would definitely
                        recommend his service.
                      date: September 2, 2022
                      type: Jannani was Mathew’s client
                      recommender:
                        url: >-
                          https://www.linkedin.com/in/jannani-jegatheeswaran-cia-6a0b491b2
                        urn: ACoAADGlqJgBdWKQVJqp-e-0mYxf_bCs9MmtSJY
                        public_identifier: jannani-jegatheeswaran-cia-6a0b491b2
                        first_name: Jannani
                        last_name: Jegatheeswaran, CIA
                        full_name: Jannani Jegatheeswaran, CIA
                        description: >-
                          Markets Internal Audit |Assistant Vice President |
                          Barclays
                        is_premium: false
                        avatar:
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQH7iV4hKU7tUQ/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1708007724228?e=1774483200&v=beta&t=F1olOfUkzrkRle1seS4n8QhIF35GET2ESeGJaxAKm1Y
                            expires_at: 1774483200000
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQH7iV4hKU7tUQ/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1708007724228?e=1774483200&v=beta&t=cOqm82ytC884OiwtMAFf03cDQiiv0Vg-RyJw3PWNm2c
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQH7iV4hKU7tUQ/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1708007724228?e=1774483200&v=beta&t=M4uckw3S7nhTLK7oJsGRH6LtSTRtrCZf2tHt5OJUbCQ
                            expires_at: 1774483200000
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQH7iV4hKU7tUQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1708007724228?e=1774483200&v=beta&t=FiznqLLRjBRXqgibsI6oyAdvtCCEgYFJefrCrc-4Hi8
                            expires_at: 1774483200000
                    - text: >-
                        True expert' is the phrase that springs to mind when I
                        think of Mathew. Mathew has earned my highest
                        recommendation not only as a thoughtful leader, but also
                        as a person who pays particular attention to detail.
                        Mathew and his team have redesigned my CV with my
                        current skills and experience. The process has been
                        streamlined with quick answers from Mathews and the
                        practical systems in place to address my concerns.
                        Working with Mathew elevated my work profile and placed
                        me confidently in leadership positions.
                      date: August 10, 2022
                      type: Keji was Mathew’s client
                      recommender:
                        url: >-
                          https://www.linkedin.com/in/keji-moses-ceo-mayahs-legacy
                        urn: ACoAACrgTfYB1jjIq7WtwsVatLrSTthzQhqFInY
                        public_identifier: keji-moses-ceo-mayahs-legacy
                        first_name: ' Keji  '
                        last_name: Moses  FInstLM
                        full_name: Keji Moses FInstLM
                        description: >-
                          Lord Mayor of Canterbury & District | Social Justice
                          advocate | Founder - MAYAH’S LEGACY Charity | Award
                          Winning Mental Health advocate | Community Champion l
                          Connector  | Author
                        is_premium: false
                        avatar:
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQGo9lkPv30FVw/profile-displayphoto-shrink_200_200/B4EZbxK9DNHAAY-/0/1747802903413?e=1774483200&v=beta&t=0MkHuIQ2rCuiwOd3sDaMt4aBnqFfuY3knBacuFncTrk
                            expires_at: 1774483200000
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQGo9lkPv30FVw/profile-displayphoto-shrink_100_100/B4EZbxK9DNHAAU-/0/1747802903413?e=1774483200&v=beta&t=E7vm_3sGUR0IirYISR8-VA9rb3nZIyaXFuuwnm2saxQ
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQGo9lkPv30FVw/profile-displayphoto-shrink_400_400/B4EZbxK9DNHAAg-/0/1747802903413?e=1774483200&v=beta&t=VslK5JFB4Np80IFD6_pt_rJrXVrV6vfUxUxeYE1v-g4
                            expires_at: 1774483200000
                          - width: 560
                            height: 560
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQGo9lkPv30FVw/profile-displayphoto-shrink_800_800/B4EZbxK9DNHAAc-/0/1747802903422?e=1774483200&v=beta&t=1b7Uzdksoy90DtJygchut9NxB-ENINIqZaEJjwO6o20
                            expires_at: 1774483200000
                    - text: >-
                        Mathew is an excellent and engaging educator in all the
                        things you need to know, not just to get a job, but to
                        be confident in competing in the job market for the rest
                        of your life.


                        I attended online sessions with Dream Job Hub and
                        learned what I need to stand out from the crowd in any
                        job hunt. Mathew and Galyna armed me with an
                        understanding of what employers are looking for. They
                        showed me how to highlight my skills and achievements
                        and network effectively to make opportunities for
                        myself.


                        If ever you're getting to the end of your tether
                        searching for a job, a conversation with Mathew is
                        exactly what you need. Not only does he remind you of
                        your strengths, he shows you how to use them and
                        highlight them so you can get that job you deserve.


                        I also learned to use LinkedIn effectively from Mathew.
                        I've gained a lot from LinkedIn, but before I met Mathew
                        I was not using it any more effectively than I use
                        Facebook. Mathew understands how to make the most of
                        LinkedIn and you will benefit from learning this skill
                        from him.


                        Mathew is clearly passionate about helping people reach
                        their potential and get the role they want. His input
                        has helped me into my chosen career, and I will always
                        be thankful to him for that.
                      date: August 10, 2022
                      type: Steven was Mathew’s client
                      recommender:
                        url: https://www.linkedin.com/in/steven-john-young
                        urn: ACoAACGDfVUBNJtyGA-aJpx8wVEsd4zy8l7Uxkk
                        public_identifier: steven-john-young
                        first_name: Steven
                        last_name: Young
                        full_name: Steven Young
                        description: >-
                          Supporter Engagement Officer at LGB Alliance / Musical
                          Theatre nerd
                        is_premium: true
                        avatar:
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQHxHvu8H2VIdw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1720299181191?e=1774483200&v=beta&t=jT3A2zTx9ca1bfUpseo-8aWCCvPDvWmHY3LQfB4UH4U
                            expires_at: 1774483200000
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQHxHvu8H2VIdw/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1720299181191?e=1774483200&v=beta&t=VwP2znyaW9t0qBqZCYcyf3iRMPWP97nKwJa9FOscw0k
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQHxHvu8H2VIdw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1720299181191?e=1774483200&v=beta&t=uPQq3v8ckmY810wvxCTmWUqfSKhl59jzKMah3cbhanA
                            expires_at: 1774483200000
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQHxHvu8H2VIdw/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1720299181256?e=1774483200&v=beta&t=fu16wBobg-SXM4MKCo0GYT2_QzBhisEQDHE9dyi_mPs
                            expires_at: 1774483200000
                    - text: >-
                        I met Mathew when I first joined LinkedIn back in
                        2020—and I'm happy we crossed paths. Since then, I've
                        seen him help countless individuals successfully
                        navigate the job market. And I've seen him help many
                        others create best-sellers on Amazon. 


                        He's a focused, organized and results-driven individual.
                        And he's also great at spotting new growth
                        opportunities. But what I like most about Mathew is his
                        ability to market himself and his services. 


                        Mathew would be a great leader in any company—and his
                        genuine interest in helping others succeed really sets
                        him apart.
                      date: May 3, 2022
                      type: Nour was Mathew’s client
                      recommender:
                        url: https://www.linkedin.com/in/nournazmi
                        urn: ACoAAC1j_aABTIXas46zJ9gKqNIMwm8o0_C-27g
                        public_identifier: nournazmi
                        first_name: Nour
                        last_name: Nazmi 🍍
                        full_name: Nour Nazmi 🍍
                        description: >+
                          AI Ghostwriter & AI Certified Consultant | Helping
                          Founders leverage AI + Unlock Their Voice To Attract
                          The Right Clients | AI Content Editing | Empathetic
                          Storytelling | Banner & Profile Optimization👇YouTuber

                        is_premium: false
                        avatar:
                          - width: 200
                            height: 200
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQGRSAvRn04hyQ/profile-displayphoto-scale_200_200/B4EZjKBSbVHEAY-/0/1755735993420?e=1774483200&v=beta&t=T3z_-WRjDCl36t_kojDB4wAEaXf1rGSYwW1YYvKkGZE
                            expires_at: 1774483200000
                          - width: 800
                            height: 800
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQGRSAvRn04hyQ/profile-displayphoto-crop_800_800/B4EZjKBSbVHEAI-/0/1755735993329?e=1774483200&v=beta&t=5LbVRMFZ6rj_jBEIDvdVrCGKRn71cd_bMwnHdPpxpUs
                            expires_at: 1774483200000
                          - width: 400
                            height: 400
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQGRSAvRn04hyQ/profile-displayphoto-scale_400_400/B4EZjKBSbVHEAg-/0/1755735993420?e=1774483200&v=beta&t=LcVBCgsLAxuv9ITd02fKin3H2v-FfsX1YzVDVrWS68E
                            expires_at: 1774483200000
                          - width: 100
                            height: 100
                            url: >-
                              https://media.licdn.com/dms/image/v2/D4E03AQGRSAvRn04hyQ/profile-displayphoto-scale_100_100/B4EZjKBSbVHEAc-/0/1755735993420?e=1774483200&v=beta&t=78DlYqEcHv4_9kWw8XoQIRMAWTIXH1nnBpjFKSBr7xE
                            expires_at: 1774483200000
                requestId: dc6ed5bf-9144-40b8-832f-65aaa959a38b
          headers: {}
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 400
                  data: null
                  message: 'Missing required parameter: handle'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 401
                  data: null
                  message: apiKey is null
        '402':
          description: Payment Required
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 402
                  data: null
                  message: apiKey quota is not enough
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 429
                  data: null
                  message: qps limit exceeded
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 500
                  data: null
                  message: Internal server error
      deprecated: false
      security:
        - JWT Bearer: []
      x-codeSamples:
        - lang: curl
          label: cURL
          source: |-
            curl --request GET \
              --url 'https://api.keyapi.ai/v1/linkedin/get_user_recommendations?urn=ACoAAC3iNKcB3qbWJrP7K5Z3i89AF5c1snr8bhc&page=1&type=received' \
              --header 'Authorization: Bearer <YOUR_API_KEY>'
        - lang: python
          label: Python
          source: |-
            import requests

            response = requests.get(
                'https://api.keyapi.ai/v1/linkedin/get_user_recommendations',
                params={"urn": "ACoAAC3iNKcB3qbWJrP7K5Z3i89AF5c1snr8bhc", "page": 1, "type": "received"},
                headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
            )
            print(response.json())
        - lang: javascript
          label: JavaScript
          source: >-
            const params = new URLSearchParams({"urn":
            "ACoAAC3iNKcB3qbWJrP7K5Z3i89AF5c1snr8bhc", "page": 1, "type":
            "received"});


            const response = await
            fetch(`https://api.keyapi.ai/v1/linkedin/get_user_recommendations?${params}`,
            {
              method: 'GET',
              headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
            });

            const data = await response.json();

            console.log(data);
components:
  securitySchemes:
    JWT Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |-
        API key for authentication. Format: `sk_live_xxxxxxxxxxxxx`
        Get your API key from the [Dashboard](http://keyapi.ai/app/dashboard).

````