{
  "servers": [
    {
      "url": "https://enrichlayer.com",
      "description": "Enrich Layer API Server"
    }
  ],
  "security": [
    {
      "BearerAuth": [
        "client"
      ]
    }
  ],
  "paths": {
    "/api/v2/school": {
      "get": {
        "description": "Cost: 1 credit / successful request. Get structured data of a School Profile.",
        "parameters": [
          {
            "in": "query",
            "name": "url",
            "required": true,
            "description": "URL of the School Profile to crawl.",
            "example": "https://www.linkedin.com/school/mit",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "use_cache",
            "required": false,
            "description": "`if-present` The default behavior.Fetches profile from cache regardless of age of profile. If profile is not available in cache, API will attempt to source profile externally.\n`if-recent` API will make a best effort to return a fresh profile no older than 29 days.Costs an extra `1` credit on top of the cost of the base endpoint.",
            "example": "if-present",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "live_fetch",
            "required": false,
            "description": "Tweak the behavior of the API to fetch the fresh profile.\nThis parameter accepts the following values:\n* `force` - Force the API to fetch the fresh profile. Costs an extra `9` credits on top of the cost of the base endpoint.\n* `default` (default value) - Do not force the API to fetch the fresh profile. Consider using `use_cache` instead.",
            "example": "force",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LinkedinSchool"
                },
                "example": {
                  "linkedin_internal_id": "1503",
                  "description": "The Massachusetts Institute of Technology (MIT) is a private research university located in Cambridge, Massachusetts. MIT is devoted to the advancement of knowledge and education of students in areas that contribute to or prosper in an environment of science and technology.",
                  "website": "http://web.mit.edu/",
                  "industry": "Higher Education",
                  "company_size": [
                    5001,
                    10000
                  ],
                  "company_size_on_linkedin": 23329,
                  "hq": {
                    "country": "US",
                    "city": "Cambridge, MA",
                    "postal_code": "02139-4307",
                    "line_1": "77 Massachusetts Avenue",
                    "is_hq": true,
                    "state": "Massachusetts"
                  },
                  "company_type": "EDUCATIONAL_INSTITUTION",
                  "founded_year": 1861,
                  "specialities": [
                    "education",
                    "science",
                    "research",
                    "engineering"
                  ],
                  "locations": [
                    {
                      "country": "US",
                      "city": "Cambridge",
                      "postal_code": "02139",
                      "line_1": "Massachusetts Ave",
                      "is_hq": true,
                      "state": "Massachusetts"
                    }
                  ],
                  "name": "Massachusetts Institute of Technology",
                  "tagline": null,
                  "universal_name_id": "mit",
                  "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/35d64df1cce08965de8b857ecc88d2ff",
                  "background_cover_image_url": null,
                  "search_id": "1503",
                  "similar_companies": [
                    {
                      "name": "MIT Sloan School of Management",
                      "link": "https://www.linkedin.com/school/mitsloan/",
                      "industry": "Higher Education",
                      "location": null
                    },
                    {
                      "name": "MIT School of Engineering",
                      "link": "https://www.linkedin.com/school/mit-school-of-engineering/",
                      "industry": "Higher Education",
                      "location": null
                    }
                  ],
                  "affiliated_companies": [],
                  "updates": [],
                  "follower_count": 539321,
                  "meta": {
                    "thin_profile": false,
                    "last_updated": "2023-10-26T11:34:30Z"
                  }
                }
              }
            },
            "description": "Profile data with profile picture, school location, etc"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "School API"
        ],
        "operationId": "School Profile Endpoint"
      },
      "summary": "School Profile Endpoint"
    },
    "/api/v2/company": {
      "get": {
        "description": "Cost: 1 credit / successful request. Get structured data of a Company Profile.",
        "parameters": [
          {
            "in": "query",
            "name": "url",
            "required": true,
            "description": "URL Company Profile to crawl.",
            "example": "https://www.linkedin.com/company/google/",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "categories",
            "required": false,
            "description": "Appends categories data of this company.\nDefault value is `\"exclude\"`. The other acceptable value is `\"include\"`, which will include these categories (if available) for `1` extra credit.",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "funding_data",
            "required": false,
            "description": "Returns a list of funding rounds that this company has received.\nDefault value is `\"exclude\"`. The other acceptable value is `\"include\"`, which will include these categories (if available) for `1` extra credit.",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "exit_data",
            "required": false,
            "description": "Returns a list of investment portfolio exits.\nDefault value is `\"exclude\"`. The other acceptable value is `\"include\"`, which will include these categories (if available) for `1` extra credit.",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "acquisitions",
            "required": false,
            "description": "Provides further enriched data on acquisitions made by this company from external sources.\nDefault value is `\"exclude\"`. The other acceptable value is `\"include\"`, which will include these acquisition data (if available) for `1` extra credit.",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "extra",
            "required": false,
            "description": "Enriches the Company Profile with extra details from external sources. Details include Crunchbase ranking, contact email, phone number, Facebook account, Twitter account, funding rounds and amount, IPO status, investor information, etc.\nDefault value is `\"exclude\"`. The other acceptable value is `\"include\"`, which will include these extra details (if available) for `1` extra credit.",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "use_cache",
            "required": false,
            "description": "`if-present` - Fetches profile from cache regardless of age of profile. If profile is not available in cache, API will attempt to source profile externally.\n`if-recent` (Default) - API will make a best effort to return a fresh profile no older than 29 days. Costs an extra `1` credit on top of the cost of the base endpoint.",
            "example": "if-present",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "fallback_to_cache",
            "required": false,
            "description": "Tweaks the fallback behavior if an error arises from fetching a fresh profile.\nThis parameter accepts the following values:\n* `on-error` (default value) - Fallback to reading the profile from cache if an error arises.\n* `never` - Do not ever read profile from cache.",
            "example": "on-error",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "live_fetch",
            "required": false,
            "description": "Tweak the behavior of the API to fetch the fresh profile.\nThis parameter accepts the following values:\n* `force` - Force the API to fetch the fresh profile. Costs an extra `9` credits on top of the cost of the base endpoint.\n* `default` (default value) - Do not force the API to fetch the fresh profile. Consider using `use_cache` instead.",
            "example": "force",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LinkedinCompany"
                },
                "example": {
                  "linkedin_internal_id": "1441",
                  "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.\nCheck out our career opportunities at careers.google.com.",
                  "website": "https://goo.gle/3m1IN7m",
                  "industry": "Software Development",
                  "company_size": [
                    10001,
                    null
                  ],
                  "company_size_on_linkedin": 319856,
                  "hq": {
                    "country": "US",
                    "city": "Mountain View",
                    "postal_code": "94043",
                    "line_1": "1600 Amphitheatre Parkway",
                    "is_hq": true,
                    "state": "CA"
                  },
                  "company_type": "PUBLIC_COMPANY",
                  "founded_year": null,
                  "specialities": [
                    "search",
                    "ads"
                  ],
                  "locations": [
                    {
                      "country": "US",
                      "city": "Mountain View",
                      "postal_code": "94043",
                      "line_1": "1600 Amphitheatre Parkway",
                      "is_hq": true,
                      "state": "CA"
                    },
                    {
                      "country": "US",
                      "city": "New York",
                      "postal_code": "10011",
                      "line_1": "111 8th Ave",
                      "is_hq": false,
                      "state": "NY"
                    }
                  ],
                  "name": "Google",
                  "tagline": null,
                  "universal_name_id": "google",
                  "profile_pic_url": "https://assets.enrichlayer.com/pp/...",
                  "background_cover_image_url": "https://assets.enrichlayer.com/pp/...",
                  "search_id": "1441",
                  "similar_companies": [
                    {
                      "name": "Amazon",
                      "link": "https://www.linkedin.com/company/amazon",
                      "industry": "Software Development",
                      "location": "Seattle, WA"
                    },
                    {
                      "name": "Microsoft",
                      "link": "https://www.linkedin.com/company/microsoft",
                      "industry": "Software Development",
                      "location": "Redmond, Washington"
                    }
                  ],
                  "affiliated_companies": [
                    {
                      "name": "YouTube",
                      "link": "https://www.linkedin.com/company/youtube",
                      "industry": "Software Development",
                      "location": "San Bruno, CA"
                    },
                    {
                      "name": "Google Cloud",
                      "link": "https://www.linkedin.com/showcase/google-cloud",
                      "industry": "Software Development",
                      "location": "Mountain View, California"
                    }
                  ],
                  "updates": [
                    {
                      "article_link": null,
                      "image": "https://assets.enrichlayer.com/pp/profilepic/57ef9922f8484ada3bd6001d1c68afa1",
                      "posted_on": {
                        "day": 13,
                        "month": 9,
                        "year": 2022
                      },
                      "text": "Want to kick start your #LifeAtGoogle but not sure where to begin? Explore our Build Your Future site, where you can learn about developmental programs, learn tips for future interviews, sign up for informational events, and even hear real stories from Googlers who’ve been where you are now. Get started → https://bit.ly/3SKPzQB",
                      "total_likes": 4267
                    },
                    {
                      "article_link": null,
                      "image": "https://assets.enrichlayer.com/pp/profilepic/57ef9922f8484ada3bd6001d1c68afa1",
                      "posted_on": null,
                      "text": "Ariana, welcome to Google. Here’s to a year full of growth, learning, and experiences at #LifeAtGoogle! 🎉",
                      "total_likes": 397
                    }
                  ],
                  "follower_count": 27472792,
                  "meta": {
                    "thin_profile": false,
                    "last_updated": "2023-10-26T11:34:30Z"
                  }
                }
              }
            },
            "description": "Profile data with profile picture, office locations, etc"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Company API"
        ],
        "operationId": "Company Profile Endpoint"
      },
      "summary": "Company Profile Endpoint"
    },
    "/api/v2/profile": {
      "get": {
        "description": "Cost: 1 credit / successful request. Get structured data of a Person Profile.",
        "parameters": [
          {
            "in": "query",
            "name": "profile_url",
            "required": false,
            "description": "The Profile URL from which you wish to extract.\nWe support both raw UTF-8 input and URL-encoded input. For example, `https://linkedin.com/in/rodríguez/` and `https://linkedin.com/in/rodr%C3%ADguez/` are both valid.\nWe don't support URLs with a hashed ID, e.g. `https://www.linkedin.com/in/ACwAAExzrQ0Bjqu...`\nInclude only one of: `profile_url`, `twitter_profile_url`, or `facebook_profile_url`.",
            "example": "https://linkedin.com/in/satyanadella/",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "twitter_profile_url",
            "required": false,
            "description": "The Twitter/X Profile URL from which you wish to extract person profile\nURL should be in the format of `https://x.com/<public-identifier>`\nInclude only one of: `profile_url`, `twitter_profile_url`, or `facebook_profile_url`.",
            "example": "https://x.com/satyanadella/",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "facebook_profile_url",
            "required": false,
            "description": "The Facebook Profile URL from which you wish to extract person profile\nURL should be in the format of `https://facebook.com/<public-identifier>`\nInclude only one of: `profile_url`, `twitter_profile_url`, or `facebook_profile_url`.",
            "example": "https://facebook.com/satyanadella/",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "extra",
            "required": false,
            "description": "Enriches the Person Profile with extra details from external sources. Extra details include gender, birth date, industry and interests.\nThis parameter accepts the following values:\n- `exclude` (default value) - Does not provide extra data field.\n- `include` - Append extra data to the person profile object. Costs an extra `1` credit on top of the cost of the base endpoint (if data is available).",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "github_profile_id",
            "required": false,
            "description": "Enriches the Person Profile with GitHub ID from external sources.\nThis parameter accepts the following values:\n- `exclude` (default value) - Does not provide GitHub ID data field.\n- `include` - Append GitHub ID data to the person profile object. Costs an extra `1` credit on top of the cost of the base endpoint (if data is available).",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "facebook_profile_id",
            "required": false,
            "description": "Enriches the Person Profile with Facebook ID from external sources.\nThis parameter accepts the following values:\n- `exclude` (default value) - Does not provide Facebook ID data field.\n- `include` - Append Facebook ID data to the person profile object. Costs an extra `1` credit on top of the cost of the base endpoint (if data is available).",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "twitter_profile_id",
            "required": false,
            "description": "Enriches the Person Profile with Twitter ID from external sources.\nThis parameter accepts the following values:\n- `exclude` (default value) - Does not provide Twitter ID data field.\n- `include` - Append Twitter ID data to the person profile object. Costs an extra `1` credit on top of the cost of the base endpoint (if data is available).",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "personal_contact_number",
            "required": false,
            "description": "Enriches the Person Profile with personal numbers from external sources.\nThis parameter accepts the following values:\n- `exclude` (default value) - Does not provide personal numbers data field.\n- `include` - Append personal numbers data to the person profile object. Costs an extra `1` credit per personal number returned on top of the cost of the base endpoint (if data is available).",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "personal_email",
            "required": false,
            "description": "Enriches the Person Profile with personal emails from external sources.\nThis parameter accepts the following values:\n- `exclude` (default value) - Does not provide personal emails data field.\n- `include` - Append personal emails data to the person profile object. Costs an extra `1` credit per email returned on top of the cost of the base endpoint (if data is available).",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "inferred_salary",
            "required": false,
            "deprecated": true,
            "description": "Include inferred salary range from external sources.\nThis parameter accepts the following values:\n- `exclude` (default value) - Does not provide inferred salary data field.\n- `include` - Append inferred salary range data to the person profile object. Costs an extra `1` credit on top of the cost of the base endpoint (if data is available).",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "skills",
            "required": false,
            "deprecated": true,
            "description": "Include skills data from external sources.\nSkills are no longer available as part of public data, but we will show skills for historic profiles, or where skills are inferred or sourced by other means. Expect limited coverage.\nThis parameter accepts the following values:\n- `exclude` (default value) - Does not provide skills data field.\n- `include` - Append skills data to the person profile object. No extra credit is charged for this parameter.",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "use_cache",
            "required": false,
            "description": "`if-present` - Fetches profile from cache regardless of age of profile. If profile is not available in cache, API will attempt to source profile externally.\n`if-recent` (Default) - API will make a best effort to return a fresh profile no older than 29 days. Costs an extra `1` credit on top of the cost of the base endpoint.",
            "example": "if-present",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "fallback_to_cache",
            "required": false,
            "description": "Tweaks the fallback behavior if an error arises from fetching a fresh profile.\nThis parameter accepts the following values:\n* `on-error` (default value) - Fallback to reading the profile from cache if an error arises.\n* `never` - Do not ever read profile from cache.",
            "example": "on-error",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "live_fetch",
            "required": false,
            "description": "Tweak the behavior of the API to fetch the fresh profile.\nThis parameter accepts the following values:\n* `force` - Force the API to fetch the fresh profile. Costs an extra `9` credits on top of the cost of the base endpoint.\n* `default` (default value) - Do not force the API to fetch the fresh profile. Consider using `use_cache` instead.",
            "example": "force",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PersonEndpointResponse"
                },
                "example": {
                  "public_identifier": "satyanadella",
                  "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/7d369850c9fe8c35e78a6a50c75334f5",
                  "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/fe878f911fecd238e169a23b12103b0e",
                  "first_name": "Satya",
                  "last_name": "Nadella",
                  "full_name": "Satya Nadella",
                  "follower_count": 11888127,
                  "occupation": "Chairman and CEO at Microsoft",
                  "headline": "Chairman and CEO at Microsoft",
                  "summary": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every organization on the planet to achieve more.",
                  "country": "US",
                  "country_full_name": "United States of America",
                  "city": "Redmond",
                  "state": "Washington",
                  "experiences": [
                    {
                      "starts_at": {
                        "day": 1,
                        "month": 2,
                        "year": 2014
                      },
                      "ends_at": null,
                      "company": "Microsoft",
                      "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
                      "company_facebook_profile_url": null,
                      "title": "Chairman and CEO",
                      "description": null,
                      "location": "Greater Seattle Area",
                      "logo_url": "https://assets.enrichlayer.com/ll/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY"
                    },
                    {
                      "starts_at": {
                        "day": 1,
                        "month": 1,
                        "year": 2018
                      },
                      "ends_at": null,
                      "company": "University of Chicago",
                      "company_linkedin_profile_url": "https://www.linkedin.com/company/uchicago",
                      "company_facebook_profile_url": null,
                      "title": "Member Board Of Trustees",
                      "description": null,
                      "location": null,
                      "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f40c5f31ef246aeb1000ffb4e40f2991"
                    },
                    {
                      "starts_at": {
                        "day": 1,
                        "month": 1,
                        "year": 2017
                      },
                      "ends_at": {
                        "day": 31,
                        "month": 12,
                        "year": 2024
                      },
                      "company": "Starbucks",
                      "company_linkedin_profile_url": "https://www.linkedin.com/company/starbucks",
                      "company_facebook_profile_url": null,
                      "title": "Board Member",
                      "description": null,
                      "location": null,
                      "logo_url": "https://assets.enrichlayer.com/ll/C4D0BAQEQxk9y2rk7Hw/company-logo_100_100/company-logo_100_100/0/1631316692276?e=2147483647&v=beta&t=itdoVXP3gnqtQ7Grar4B3YoPyw-Ors9bKMZlZpb0QcY"
                    }
                  ],
                  "education": [
                    {
                      "starts_at": {
                        "day": 1,
                        "month": 1,
                        "year": 1994
                      },
                      "ends_at": {
                        "day": 31,
                        "month": 12,
                        "year": 1996
                      },
                      "field_of_study": null,
                      "degree_name": null,
                      "school": "The University of Chicago Booth School of Business",
                      "school_linkedin_profile_url": "https://www.linkedin.com/company/universityofchicagoboothschoolofbusiness",
                      "school_facebook_profile_url": null,
                      "description": null,
                      "logo_url": "https://assets.enrichlayer.com/pp/profilepic/88fa467a62fbfc5325394253f14e8700",
                      "grade": null,
                      "activities_and_societies": null
                    },
                    {
                      "starts_at": {
                        "day": null,
                        "month": null,
                        "year": null
                      },
                      "ends_at": null,
                      "field_of_study": "Electrical Engineering",
                      "degree_name": "Bachelor’s Degree",
                      "school": "Manipal Institute of Technology, Manipal",
                      "school_linkedin_profile_url": "https://www.linkedin.com/company/manipal-institute-of-technology",
                      "school_facebook_profile_url": null,
                      "description": null,
                      "logo_url": "https://assets.enrichlayer.com/pp/profilepic/2aef6f72c73e3b40dbd56163897bdc04",
                      "grade": null,
                      "activities_and_societies": null
                    },
                    {
                      "starts_at": {
                        "day": null,
                        "month": null,
                        "year": null
                      },
                      "ends_at": null,
                      "field_of_study": "Computer Science",
                      "degree_name": "Master’s Degree",
                      "school": "University of Wisconsin-Milwaukee",
                      "school_linkedin_profile_url": "https://www.linkedin.com/company/uwmilwaukee",
                      "school_facebook_profile_url": null,
                      "description": null,
                      "logo_url": "https://assets.enrichlayer.com/pp/profilepic/7916094135030c5846f34230e03dbaa2",
                      "grade": null,
                      "activities_and_societies": null
                    }
                  ],
                  "accomplishment_organisations": [],
                  "accomplishment_publications": [],
                  "accomplishment_honors_awards": [],
                  "accomplishment_patents": [],
                  "accomplishment_courses": [],
                  "accomplishment_projects": [],
                  "accomplishment_test_scores": [],
                  "volunteer_work": [],
                  "certifications": [],
                  "connections": 500,
                  "people_also_viewed": [
                    {
                      "link": "https://www.linkedin.com/in/kevinolearytv",
                      "name": "Kevin O'Leary",
                      "summary": "Chairman, O’Leary Ventures and Beanstox",
                      "location": "West Palm Beach"
                    },
                    {
                      "link": "https://www.linkedin.com/in/aaronmartinfc",
                      "name": "Aaron Martin",
                      "summary": "Vice President Healthcare at Amazon",
                      "location": "Seattle"
                    },
                    {
                      "link": "https://www.linkedin.com/in/guthriescott",
                      "name": "Scott Guthrie",
                      "summary": "Executive Vice President at Microsoft",
                      "location": "Bellevue"
                    },
                    {
                      "link": "https://www.linkedin.com/in/toufisaliba",
                      "name": "Toufi Saliba",
                      "summary": "Author TODA/IP  .  | . CEO HyperCycle.AI  .  | . Chair - International Protocols for AI Security IEEE",
                      "location": "San Francisco"
                    },
                    {
                      "link": "https://www.linkedin.com/in/rajeshgopinathan",
                      "name": "Rajesh Gopinathan",
                      "summary": null,
                      "location": "Mumbai"
                    }
                  ],
                  "recommendations": [],
                  "activities": [
                    {
                      "title": "Microsoft has been positioned as a Leader for the fourteenth consecutive year in the Gartner 2021 Magic Quadrant for Analytics and Business…",
                      "link": null,
                      "activity_status": null
                    },
                    {
                      "title": "On March 17, we’re trying something we’ve never done before: Microsoft will host #Include2021, a free, global, digital event focused on diversity &…",
                      "link": null,
                      "activity_status": null
                    },
                    {
                      "title": "I talked to Bill Gates about his important new book, which provides a framework to reduce our world’s greenhouse gas emissions to zero, including…",
                      "link": null,
                      "activity_status": null
                    }
                  ],
                  "similarly_named_profiles": [],
                  "articles": [],
                  "groups": [],
                  "meta": {
                    "thin_profile": false,
                    "last_updated": "2025-03-15T08:22:00Z"
                  }
                }
              }
            },
            "description": "Profile data with profile picture, job history, etc."
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "People API"
        ],
        "operationId": "Person Profile Endpoint"
      },
      "summary": "Person Profile Endpoint"
    },
    "/api/v2/customers": {
      "get": {
        "deprecated": true,
        "description": "Cost: 10 credits / Company Profile URL for users on an annual subscription or Enterprise plan. Get a list of probable customers of the target company. Available for users on an annual subscription or Enterprise plan.",
        "parameters": [
          {
            "in": "query",
            "name": "company_profile_url",
            "required": false,
            "description": "The Profile URL of the company from which you want to get a list of customers of.\n\nInclude only one of: `company_profile_url` or `twitter_profile_url`.",
            "example": "https://www.linkedin.com/company/watsons",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "twitter_profile_url",
            "required": false,
            "description": "The Twitter/X Profile URL belonging to the company that you want to get a list of customers of.\nURL should be in the format of `https://x.com/<public-identifier>`\n\nInclude only one of: `company_profile_url` or `twitter_profile_url`.",
            "example": "https://x.com/watsonsproperty",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "page_size",
            "required": false,
            "description": "Limit the maximum results of customer companies returned per API call.\nThe default value of this parameter is 10.\nAccepted values for this parameter is an integer ranging from 0 to 1000.",
            "example": "10",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CustomerList"
                },
                "example": {
                  "companies": [
                    {
                      "linkedin_company_profile_url": "https://www.linkedin.com/company/spire-solicitors-llp",
                      "twitter_profile_url": "https://twitter.com/spirellp",
                      "email": "info@spiresolicitors.co.uk"
                    },
                    {
                      "linkedin_company_profile_url": "https://www.linkedin.com/company/mall-wood-insurance-services-ltd",
                      "twitter_profile_url": "https://twitter.com/draytonins",
                      "email": null
                    }
                  ],
                  "next_page": null,
                  "update_url": "https://enrichlayer.com/api/pc/customers?linkedin_company_profile_url=https%3A%2F%2Fwww.linkedin.com%2Fcompany%2Fwatsons&after=mall-wood-insurance-services-ltd"
                }
              }
            },
            "description": "A list of probable customers of the target company."
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Customer API"
        ],
        "operationId": "Customer Listing Endpoint"
      },
      "summary": "Customer Listing Endpoint `DEPRECATED`"
    },
    "/api/v2/customers/count/": {
      "get": {
        "deprecated": true,
        "description": "Cost: 1 credit / successful request for users on an annual subscription or Enterprise plan. Get the total count of probable corporate customers of a target company.",
        "parameters": [
          {
            "in": "query",
            "name": "company_profile_url",
            "required": false,
            "description": "The Profile URL of the company from which you want to get a list of customers of.\n\nInclude only one of: `company_profile_url` or `twitter_profile_url`.",
            "example": "https://www.linkedin.com/company/watsons",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "twitter_profile_url",
            "required": false,
            "description": "The Twitter/X Profile URL belonging to the company that you want to get a list of customers of.\nURL should be in the format of `https://x.com/<public-identifier>`\n\nInclude only one of: `company_profile_url` or `twitter_profile_url`.",
            "example": "https://x.com/watsonsproperty",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CustomerCount"
                },
                "example": {
                  "company_count": 125
                }
              }
            },
            "description": "Number of probable customers of the target company."
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Customer API"
        ],
        "operationId": "Customer Listing Count Endpoint"
      },
      "summary": "Customer Listing Count Endpoint `DEPRECATED`"
    },
    "/api/v2/company/employees/": {
      "get": {
        "description": "Cost: 3 credits / employee returned. Get a list of employees of a Company.",
        "parameters": [
          {
            "in": "query",
            "name": "url",
            "required": true,
            "description": "URL of the Company Profile to target.",
            "example": "https://www.linkedin.com/company/microsoft",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "coy_name_match",
            "required": false,
            "description": "Include profiles that match the company name. The Employee Listing Endpoint works by identifying individual profiles with work experience that provides an exact match to the Company Profile URL provided. Including this option also allows profiles with at least one work experience that exactly matches the specified company name to be included.\nThis parameter accepts the following values:\n* `include` (default value) - Include employees whose profiles match the company name.\n* `exclude` - Exclude employees by company name match.",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "use_cache",
            "required": false,
            "description": "Define the freshness guarantee on the results returned.\nThis parameter accepts the following values:\n* `if-present` (default value) - Returns result as it is without any freshness guarantee\n* `if-recent` - Will make a best effort to return results of profiles no older than 29 days. Costs `1` extra credit per result on top of the base cost of the endpoint for users on the Growth or larger subscription. For all other users, it will cost `2` extra credits per result on top of the base cost of the endpoint.\n*Note: If `use_cache=if-recent`, `page_size` is limited to a value of `10` or smaller.*",
            "example": "if-present",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "country",
            "required": false,
            "description": "Limit the result set to the country locality of the profile. For example, set the parameter of `country=us` if you only want profiles from the US. Or you can set the parameter to `country=us,sg` if you want employees from both the US and Singapore.\nThis parameter accepts a comma-separated case-insensitive values of [Alpha-2 ISO3166 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).\nCosts an extra `3` credit per result returned.",
            "example": "us",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "enrich_profiles",
            "required": false,
            "description": "Get the full profile of employees instead of only their profile urls.\nEach request respond with a streaming response of profiles.\nThe valid values are:\n* `skip` (default): lists employee's profile url\n* `enrich`: lists full profile of employees\nCalling this API endpoint with this parameter would add `1` credit per employee returned. Employee that is returned without enrichment won't incur any per employee cost.",
            "example": "enrich",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "boolean_role_search",
            "required": false,
            "description": "Filter employees by their title using boolean search expression. This parameter will take precedence over `role_search` parameter if both are provided.\nThe default value of this parameter is `null`.\nThe value provided for this parameter must follow Boolean Search Syntax. It must not exceed 255 characters.\nThis parameter is **case-insensitive**; matching ignores capitalization in both the input and our data.\n(The base cost of calling this API endpoint with this parameter would be `10` credits. Each employee matched and returned would cost 3 extra credits.)",
            "example": "\"founder\" OR \"co-founder\" OR \"cofounder\"",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "role_search",
            "required": false,
            "deprecated": true,
            "description": "Use `boolean_role_search` instead.\nFilter employees by their title by matching the employee's title against a *regular expression*.\nThe default value of this parameter is `null`.\nThe accepted value for this parameter is a **case-insensitive** regular expression.\nThe provided regex patern must follow [Lucene Regular Expression Syntax](https://lucene.apache.org/core/9_0_0/core/org/apache/lucene/util/automaton/RegExp.html). The regular expression is anchored to the start and end of the provided pattern by default. You need to wrap your pattern accordingly if you want to perform a partial match.\n(The base cost of calling this API endpoint with this parameter would be `10` credits. Each employee matched and returned would cost 3 extra credits.)",
            "example": "(co)?-?founder",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "page_size",
            "required": false,
            "description": "Limit the maximum results returned per API call.\nThe default value of this parameter is `10`.\nAccepted values for this parameter is an integer ranging from `1` to `9999`.\nWhen `enrich_profiles=enrich`, this parameter accepts value ranging from `1` to `10` and the default value is `10`.",
            "example": "10",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "employment_status",
            "required": false,
            "description": "Parameter to tell the API to return past or current employees.\nValid values are `current`, `past`, and `all`:\n* `current` (default) : lists current employees\n* `past` : lists past employees\n* `all` : lists current & past employees",
            "example": "current",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "sort_by",
            "required": false,
            "description": "Sort employees by recency.\nValid values are:\n* `recently-joined` - Sort employees by their join date. The most recent employee is on the top of the list.\n* `recently-left` - Sort employees by their departure date. The most recent employee who had just left is on the top of this list.\n* `oldest` - Returns the oldest employees first. The oldest employee who had joined this company historically is on the top of this list.\n* `none` - The default value. Do not sort.\nIf this parameter is supplied with a value other than `none`, will add `50` credits to the base cost of the API endpoint regardless number of results returned. It will also add an additional cost of `10` credits per employee returned.",
            "example": "recently-joined",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "resolve_numeric_id",
            "required": false,
            "description": "Enable support for Company Profile URLs with numerical IDs. \nThis parameter accepts the following values:\n- `false` (default value) - Will not resolve numerical IDs.\n- `true` - Enable support for Company Profile URLs with numerical IDs.  Costs an extra `2` credit on top of the base cost of the endpoint.",
            "example": "false",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/EmployeeList"
                },
                "example": {
                  "employees": [
                    {
                      "profile_url": "https://www.linkedin.com/in/williamhgates",
                      "profile": {
                        "public_identifier": "williamhgates",
                        "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/a41217d5753de1f3f4906f9da43dbad6",
                        "background_cover_image_url": null,
                        "first_name": "Bill",
                        "last_name": "Gates",
                        "full_name": "Bill Gates",
                        "occupation": "Co-chair at Bill & Melinda Gates Foundation",
                        "headline": "Co-chair, Bill & Melinda Gates Foundation",
                        "summary": "Co-chair of the Bill & Melinda Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft. Voracious reader. Avid traveler. Active blogger.",
                        "country": "US",
                        "country_full_name": "United States of America",
                        "city": "Seattle",
                        "state": "Washington",
                        "experiences": [
                          {
                            "starts_at": {
                              "day": 1,
                              "month": 1,
                              "year": 2015
                            },
                            "ends_at": null,
                            "company": "Breakthrough Energy ",
                            "company_linkedin_profile_url": "https://www.linkedin.com/company/breakthrough-energy/",
                            "title": "Founder",
                            "description": null,
                            "location": null,
                            "logo_url": "https://assets.enrichlayer.com/ll/D560BAQFRMYiQN7-2kA/company-logo_100_100/B56ZoI4SGPI0AQ-/0/1761085563539/breakthrough_energy_logo?e=2147483647&v=beta&t=J6RbEvs17fl1uiEaXQm0hmXy4imx36mV_Hu80JcR1DE"
                          },
                          {
                            "starts_at": {
                              "day": 1,
                              "month": 1,
                              "year": 2000
                            },
                            "ends_at": null,
                            "company": "Bill & Melinda Gates Foundation",
                            "company_linkedin_profile_url": "https://www.linkedin.com/company/bill-&-melinda-gates-foundation/",
                            "title": "Co-chair",
                            "description": null,
                            "location": null,
                            "logo_url": "https://assets.enrichlayer.com/ll/D560BAQEgMqqFTd40Tg/company-logo_100_100/company-logo_100_100/0/1736784969376/bill__melinda_gates_foundation_logo?e=2147483647&v=beta&t=2JH2cMcZms60vPAMbvVZyMeYXosQ1Jjy5axDlyeQ1Ww"
                          }
                        ],
                        "education": [
                          {
                            "starts_at": {
                              "day": 1,
                              "month": 1,
                              "year": 1973
                            },
                            "ends_at": {
                              "day": 31,
                              "month": 12,
                              "year": 1975
                            },
                            "field_of_study": null,
                            "degree_name": null,
                            "school": "Harvard University",
                            "school_linkedin_profile_url": null,
                            "description": null,
                            "logo_url": "https://assets.enrichlayer.com/pp/profilepic/518005a5a755bd1d2fde90f216039bbc"
                          },
                          {
                            "starts_at": null,
                            "ends_at": null,
                            "field_of_study": null,
                            "degree_name": null,
                            "school": "Lakeside School",
                            "school_linkedin_profile_url": null,
                            "description": null,
                            "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f0d32d5de696536e8b46133cb042250a"
                          }
                        ],
                        "languages": [],
                        "accomplishment_organisations": [],
                        "accomplishment_publications": [],
                        "accomplishment_honors_awards": [],
                        "accomplishment_patents": [],
                        "accomplishment_courses": [],
                        "accomplishment_projects": [],
                        "accomplishment_test_scores": [],
                        "volunteer_work": [],
                        "certifications": [],
                        "connections": null,
                        "people_also_viewed": [],
                        "recommendations": [],
                        "activities": [],
                        "similarly_named_profiles": [],
                        "articles": [],
                        "groups": []
                      },
                      "last_updated": "2023-10-26T11:34:30Z"
                    }
                  ],
                  "next_page": null
                }
              }
            },
            "description": "List of employees"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Company API"
        ],
        "operationId": "Employee Listing Endpoint"
      },
      "summary": "Employee Listing Endpoint"
    },
    "/api/v2/company/employees/count": {
      "get": {
        "description": "Cost: 1 credit / successful request. Get the total number of employees of a company.\nReturns employee counts from various sources.",
        "parameters": [
          {
            "in": "query",
            "name": "url",
            "required": true,
            "description": "URL of the Company Profile to target.",
            "example": "https://www.linkedin.com/company/apple/",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "coy_name_match",
            "required": false,
            "description": "Include profiles that match the company name. The Employee Count Endpoint works by identifying individual profiles with work experience that provides an exact match to the Company Profile URL provided. Including this option also allows profiles with at least one work experience that exactly matches the specified company name to be included.\nThis parameter accepts the following values:\n* `include` (default value) - Include employees whose profiles match the company name.\n* `exclude` - Exclude employees by company name match.",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "at_date",
            "required": false,
            "description": "Time travel back in time and fetch the employee count of a company at any particular date. This parameter takes an ISO8601 timestamp with the representation of \"YYYY-MM-DD\".\nCosts `1` extra credit on top of the base cost of the endpoint for users on the Growth or larger subscription. For all other users, it will cost `5` extra credits.",
            "example": "2023-12-31",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "use_cache",
            "required": false,
            "description": "`if-present`: The default behavior. Fetches data from cache regardless of age of profile.\n`if-recent`: API will make a best effort to return a fresh data no older than 29 days. Costs an extra 1 credit on top of the cost of the base endpoint.\n- Note: When `use_cache=if-recent`, the `estimated_employee_count` parameter must be included with a value of 'include'.",
            "example": "if-present",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "estimated_employee_count",
            "required": false,
            "description": "Option to include a retrieved employee count value from the target company's profile.\nValid values are `include` and `exclude`:\n* `exclude` (default) : To exclude the retrieved employee count.\n* `include` : To include the retrieved employee count.\nCosts an extra `1` credit on top of the base cost of the endpoint.",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "employment_status",
            "required": false,
            "description": "Parameter to tell the API to filter past or current employees.\nValid values are `current`, `past`, and `all`:\n* `current` (default) : count current employees\n* `past` : count past employees\n* `all` : count current & past employees",
            "example": "current",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/EmployeeCount"
                },
                "example": {
                  "estimated_employee_count": 529274,
                  "verified_employee_count": 3
                }
              }
            },
            "description": "Number of employees in a company"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Company API"
        ],
        "operationId": "Employee Count Endpoint"
      },
      "summary": "Employee Count Endpoint"
    },
    "/api/v2/person/profile-picture": {
      "get": {
        "description": "Cost: 0 credit / successful request. Get the profile picture of a person.\nReturns profile pictures from cached people profiles.",
        "parameters": [
          {
            "in": "query",
            "name": "person_profile_url",
            "required": true,
            "description": "Profile URL of the person that you are trying to get the profile picture of.",
            "example": "https://www.linkedin.com/in/williamhgates/",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProfilePicture"
                },
                "example": {
                  "tmp_profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/a41217d5753de1f3f4906f9da43dbad6"
                }
              }
            },
            "description": "Profile picture of a person"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "People API"
        ],
        "operationId": "Person Profile Picture Endpoint"
      },
      "summary": "Person Profile Picture Endpoint"
    },
    "/api/v2/company/profile-picture": {
      "get": {
        "description": "Cost: 0 credit / successful request. Get the profile picture of a company.\nReturns profile pictures from cached company profiles.",
        "parameters": [
          {
            "in": "query",
            "name": "company_profile_url",
            "required": true,
            "description": "Profile URL of the company that you are trying to get the profile picture of.",
            "example": "https://www.linkedin.com/company/apple/",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProfilePicture"
                },
                "example": {
                  "tmp_profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/a41217d5753de1f3f4906f9da43dbad6"
                }
              }
            },
            "description": "Profile picture of a company"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Company API"
        ],
        "operationId": "Company Profile Picture Endpoint"
      },
      "summary": "Company Profile Picture Endpoint"
    },
    "/api/v2/profile/resolve": {
      "get": {
        "description": "Cost: 2 credits / successful request. Look up a person with a name and company information.",
        "parameters": [
          {
            "in": "query",
            "name": "company_domain",
            "required": true,
            "description": "Company name or domain",
            "example": "gatesfoundation.org",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "first_name",
            "required": true,
            "description": "First name of the user",
            "example": "Bill",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "similarity_checks",
            "required": false,
            "description": "Controls whether the API endpoint performs similarity comparisons between the input parameters and the results or simply returns the closest match. For instance, if you are searching for a person named \"Jane Smith\", and the closest result we have is \"Tom Garcia\", our similarity checks will discard the obviously incorrect result and return `null` instead of a false positive.\nInclude similarity checks to eliminate false positives. However, be aware that this might yield fewer results as false positives are discarded. Credits will still be deducted even if we return `null`.\nYou can choose to skip similarity checks, in which case no credits will be charged if we return `null`.\nThis parameter accepts the following values:\n* `include` (default) - Perform similarity checks and discard false positives. Credits will be deducted even if we return null .\n* `skip` - Bypass similarity checks. No credits will be deducted if no results are returned.",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "enrich_profile",
            "required": false,
            "description": "Enrich the result with a cached profile of the lookup result.\nThe valid values are:\n* `skip` (default): do not enrich the results with cached profile data\n* `enrich`: enriches the result with cached profile data\nCalling this API endpoint with this parameter would add 1 credit.\nIf you require fresh profile data, please chain this API call with the [People Profile Endpoint](/docs/api/v2/people-api/person-profile) with the `use_cache=if-recent` parameter.",
            "example": "enrich",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "location",
            "required": false,
            "description": "The location of this user.\nName of country, city or state.",
            "example": "Seattle",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "title",
            "required": false,
            "description": "Title that user is holding at his/her current job",
            "example": "Co-chair",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "last_name",
            "required": false,
            "description": "Last name of the user",
            "example": "Gates",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PersonLookupUrlEnrichResult"
                },
                "example": {
                  "url": "https://www.linkedin.com/in/kevinolearytv",
                  "profile": {
                    "public_identifier": "satyanadella",
                    "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/7d369850c9fe8c35e78a6a50c75334f5",
                    "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/fe878f911fecd238e169a23b12103b0e",
                    "first_name": "Satya",
                    "last_name": "Nadella",
                    "full_name": "Satya Nadella",
                    "follower_count": 11888127,
                    "occupation": "Chairman and CEO at Microsoft",
                    "headline": "Chairman and CEO at Microsoft",
                    "summary": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every organization on the planet to achieve more.",
                    "country": "US",
                    "country_full_name": "United States of America",
                    "city": "Redmond",
                    "state": "Washington",
                    "experiences": [
                      {
                        "starts_at": {
                          "day": 1,
                          "month": 2,
                          "year": 2014
                        },
                        "ends_at": null,
                        "company": "Microsoft",
                        "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
                        "company_facebook_profile_url": null,
                        "title": "Chairman and CEO",
                        "description": null,
                        "location": "Greater Seattle Area",
                        "logo_url": "https://assets.enrichlayer.com/ll/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY"
                      },
                      {
                        "starts_at": {
                          "day": 1,
                          "month": 1,
                          "year": 2018
                        },
                        "ends_at": null,
                        "company": "University of Chicago",
                        "company_linkedin_profile_url": "https://www.linkedin.com/company/uchicago",
                        "company_facebook_profile_url": null,
                        "title": "Member Board Of Trustees",
                        "description": null,
                        "location": null,
                        "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f40c5f31ef246aeb1000ffb4e40f2991"
                      },
                      {
                        "starts_at": {
                          "day": 1,
                          "month": 1,
                          "year": 2017
                        },
                        "ends_at": {
                          "day": 31,
                          "month": 12,
                          "year": 2024
                        },
                        "company": "Starbucks",
                        "company_linkedin_profile_url": "https://www.linkedin.com/company/starbucks",
                        "company_facebook_profile_url": null,
                        "title": "Board Member",
                        "description": null,
                        "location": null,
                        "logo_url": "https://assets.enrichlayer.com/ll/C4D0BAQEQxk9y2rk7Hw/company-logo_100_100/company-logo_100_100/0/1631316692276?e=2147483647&v=beta&t=itdoVXP3gnqtQ7Grar4B3YoPyw-Ors9bKMZlZpb0QcY"
                      }
                    ],
                    "education": [
                      {
                        "starts_at": {
                          "day": 1,
                          "month": 1,
                          "year": 1994
                        },
                        "ends_at": {
                          "day": 31,
                          "month": 12,
                          "year": 1996
                        },
                        "field_of_study": null,
                        "degree_name": null,
                        "school": "The University of Chicago Booth School of Business",
                        "school_linkedin_profile_url": "https://www.linkedin.com/company/universityofchicagoboothschoolofbusiness",
                        "school_facebook_profile_url": null,
                        "description": null,
                        "logo_url": "https://assets.enrichlayer.com/pp/profilepic/88fa467a62fbfc5325394253f14e8700",
                        "grade": null,
                        "activities_and_societies": null
                      },
                      {
                        "starts_at": {
                          "day": null,
                          "month": null,
                          "year": null
                        },
                        "ends_at": null,
                        "field_of_study": "Electrical Engineering",
                        "degree_name": "Bachelor’s Degree",
                        "school": "Manipal Institute of Technology, Manipal",
                        "school_linkedin_profile_url": "https://www.linkedin.com/company/manipal-institute-of-technology",
                        "school_facebook_profile_url": null,
                        "description": null,
                        "logo_url": "https://assets.enrichlayer.com/pp/profilepic/2aef6f72c73e3b40dbd56163897bdc04",
                        "grade": null,
                        "activities_and_societies": null
                      },
                      {
                        "starts_at": {
                          "day": null,
                          "month": null,
                          "year": null
                        },
                        "ends_at": null,
                        "field_of_study": "Computer Science",
                        "degree_name": "Master’s Degree",
                        "school": "University of Wisconsin-Milwaukee",
                        "school_linkedin_profile_url": "https://www.linkedin.com/company/uwmilwaukee",
                        "school_facebook_profile_url": null,
                        "description": null,
                        "logo_url": "https://assets.enrichlayer.com/pp/profilepic/7916094135030c5846f34230e03dbaa2",
                        "grade": null,
                        "activities_and_societies": null
                      }
                    ],
                    "accomplishment_organisations": [],
                    "accomplishment_publications": [],
                    "accomplishment_honors_awards": [],
                    "accomplishment_patents": [],
                    "accomplishment_courses": [],
                    "accomplishment_projects": [],
                    "accomplishment_test_scores": [],
                    "volunteer_work": [],
                    "certifications": [],
                    "connections": 500,
                    "people_also_viewed": [
                      {
                        "link": "https://www.linkedin.com/in/kevinolearytv",
                        "name": "Kevin O'Leary",
                        "summary": "Chairman, O’Leary Ventures and Beanstox",
                        "location": "West Palm Beach"
                      },
                      {
                        "link": "https://www.linkedin.com/in/aaronmartinfc",
                        "name": "Aaron Martin",
                        "summary": "Vice President Healthcare at Amazon",
                        "location": "Seattle"
                      },
                      {
                        "link": "https://www.linkedin.com/in/guthriescott",
                        "name": "Scott Guthrie",
                        "summary": "Executive Vice President at Microsoft",
                        "location": "Bellevue"
                      },
                      {
                        "link": "https://www.linkedin.com/in/toufisaliba",
                        "name": "Toufi Saliba",
                        "summary": "Author TODA/IP  .  | . CEO HyperCycle.AI  .  | . Chair - International Protocols for AI Security IEEE",
                        "location": "San Francisco"
                      },
                      {
                        "link": "https://www.linkedin.com/in/rajeshgopinathan",
                        "name": "Rajesh Gopinathan",
                        "summary": null,
                        "location": "Mumbai"
                      }
                    ],
                    "recommendations": [],
                    "activities": [
                      {
                        "title": "Microsoft has been positioned as a Leader for the fourteenth consecutive year in the Gartner 2021 Magic Quadrant for Analytics and Business…",
                        "link": null,
                        "activity_status": null
                      },
                      {
                        "title": "On March 17, we’re trying something we’ve never done before: Microsoft will host #Include2021, a free, global, digital event focused on diversity &…",
                        "link": null,
                        "activity_status": null
                      },
                      {
                        "title": "I talked to Bill Gates about his important new book, which provides a framework to reduce our world’s greenhouse gas emissions to zero, including…",
                        "link": null,
                        "activity_status": null
                      }
                    ],
                    "similarly_named_profiles": [],
                    "articles": [],
                    "groups": [],
                    "meta": {
                      "thin_profile": false,
                      "last_updated": "2025-03-15T08:22:00Z"
                    }
                  },
                  "last_updated": "2023-10-26T11:34:30Z"
                }
              }
            },
            "description": "Person Profile URL"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "People API"
        ],
        "operationId": "Person Lookup Endpoint"
      },
      "summary": "Person Lookup Endpoint"
    },
    "/api/v2/find/company/role/": {
      "get": {
        "description": "Cost: 3 credits / successful request. Returns the profile of a person who most closely matches a specified role in a company. For instance, it can identify the \"CTO\" of \"Apple\". The endpoint returns a single result that represents the closest match. For a detailed comparison, see the [Employee Search Endpoint](#company-api-employee-search-endpoint) or the [Person Search Endpoint](#search-api-person-search-endpoint).",
        "parameters": [
          {
            "in": "query",
            "name": "role",
            "required": true,
            "description": "Role of the profile that you are looking up",
            "example": "ceo",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "company_name",
            "required": true,
            "description": "Name of the company that you are searching for",
            "example": "microsoft",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "enrich_profile",
            "required": false,
            "description": "Enrich the result with a cached profile of the lookup result.\nThe valid values are:\n* `skip` (default): do not enrich the results with cached profile data\n* `enrich`: enriches the result with cached profile data\nCalling this API endpoint with this parameter would add 1 credit.\nIf you require fresh profile data, please chain this API call with the [Person Profile Endpoint](#people-api-person-profile-endpoint) with the `use_cache=if-recent` parameter.",
            "example": "enrich",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RoleSearchEnrichedResult"
                },
                "example": {
                  "linkedin_profile_url": "https://www.linkedin.com/in/kevinolearytv",
                  "profile": {
                    "public_identifier": "satyanadella",
                    "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/7d369850c9fe8c35e78a6a50c75334f5",
                    "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/fe878f911fecd238e169a23b12103b0e",
                    "first_name": "Satya",
                    "last_name": "Nadella",
                    "full_name": "Satya Nadella",
                    "follower_count": 11888127,
                    "occupation": "Chairman and CEO at Microsoft",
                    "headline": "Chairman and CEO at Microsoft",
                    "summary": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every organization on the planet to achieve more.",
                    "country": "US",
                    "country_full_name": "United States of America",
                    "city": "Redmond",
                    "state": "Washington",
                    "experiences": [
                      {
                        "starts_at": {
                          "day": 1,
                          "month": 2,
                          "year": 2014
                        },
                        "ends_at": null,
                        "company": "Microsoft",
                        "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
                        "company_facebook_profile_url": null,
                        "title": "Chairman and CEO",
                        "description": null,
                        "location": "Greater Seattle Area",
                        "logo_url": "https://assets.enrichlayer.com/ll/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY"
                      },
                      {
                        "starts_at": {
                          "day": 1,
                          "month": 1,
                          "year": 2018
                        },
                        "ends_at": null,
                        "company": "University of Chicago",
                        "company_linkedin_profile_url": "https://www.linkedin.com/company/uchicago",
                        "company_facebook_profile_url": null,
                        "title": "Member Board Of Trustees",
                        "description": null,
                        "location": null,
                        "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f40c5f31ef246aeb1000ffb4e40f2991"
                      },
                      {
                        "starts_at": {
                          "day": 1,
                          "month": 1,
                          "year": 2017
                        },
                        "ends_at": {
                          "day": 31,
                          "month": 12,
                          "year": 2024
                        },
                        "company": "Starbucks",
                        "company_linkedin_profile_url": "https://www.linkedin.com/company/starbucks",
                        "company_facebook_profile_url": null,
                        "title": "Board Member",
                        "description": null,
                        "location": null,
                        "logo_url": "https://assets.enrichlayer.com/ll/C4D0BAQEQxk9y2rk7Hw/company-logo_100_100/company-logo_100_100/0/1631316692276?e=2147483647&v=beta&t=itdoVXP3gnqtQ7Grar4B3YoPyw-Ors9bKMZlZpb0QcY"
                      }
                    ],
                    "education": [
                      {
                        "starts_at": {
                          "day": 1,
                          "month": 1,
                          "year": 1994
                        },
                        "ends_at": {
                          "day": 31,
                          "month": 12,
                          "year": 1996
                        },
                        "field_of_study": null,
                        "degree_name": null,
                        "school": "The University of Chicago Booth School of Business",
                        "school_linkedin_profile_url": "https://www.linkedin.com/company/universityofchicagoboothschoolofbusiness",
                        "school_facebook_profile_url": null,
                        "description": null,
                        "logo_url": "https://assets.enrichlayer.com/pp/profilepic/88fa467a62fbfc5325394253f14e8700",
                        "grade": null,
                        "activities_and_societies": null
                      },
                      {
                        "starts_at": {
                          "day": null,
                          "month": null,
                          "year": null
                        },
                        "ends_at": null,
                        "field_of_study": "Electrical Engineering",
                        "degree_name": "Bachelor’s Degree",
                        "school": "Manipal Institute of Technology, Manipal",
                        "school_linkedin_profile_url": "https://www.linkedin.com/company/manipal-institute-of-technology",
                        "school_facebook_profile_url": null,
                        "description": null,
                        "logo_url": "https://assets.enrichlayer.com/pp/profilepic/2aef6f72c73e3b40dbd56163897bdc04",
                        "grade": null,
                        "activities_and_societies": null
                      },
                      {
                        "starts_at": {
                          "day": null,
                          "month": null,
                          "year": null
                        },
                        "ends_at": null,
                        "field_of_study": "Computer Science",
                        "degree_name": "Master’s Degree",
                        "school": "University of Wisconsin-Milwaukee",
                        "school_linkedin_profile_url": "https://www.linkedin.com/company/uwmilwaukee",
                        "school_facebook_profile_url": null,
                        "description": null,
                        "logo_url": "https://assets.enrichlayer.com/pp/profilepic/7916094135030c5846f34230e03dbaa2",
                        "grade": null,
                        "activities_and_societies": null
                      }
                    ],
                    "accomplishment_organisations": [],
                    "accomplishment_publications": [],
                    "accomplishment_honors_awards": [],
                    "accomplishment_patents": [],
                    "accomplishment_courses": [],
                    "accomplishment_projects": [],
                    "accomplishment_test_scores": [],
                    "volunteer_work": [],
                    "certifications": [],
                    "connections": 500,
                    "people_also_viewed": [
                      {
                        "link": "https://www.linkedin.com/in/kevinolearytv",
                        "name": "Kevin O'Leary",
                        "summary": "Chairman, O’Leary Ventures and Beanstox",
                        "location": "West Palm Beach"
                      },
                      {
                        "link": "https://www.linkedin.com/in/aaronmartinfc",
                        "name": "Aaron Martin",
                        "summary": "Vice President Healthcare at Amazon",
                        "location": "Seattle"
                      },
                      {
                        "link": "https://www.linkedin.com/in/guthriescott",
                        "name": "Scott Guthrie",
                        "summary": "Executive Vice President at Microsoft",
                        "location": "Bellevue"
                      },
                      {
                        "link": "https://www.linkedin.com/in/toufisaliba",
                        "name": "Toufi Saliba",
                        "summary": "Author TODA/IP  .  | . CEO HyperCycle.AI  .  | . Chair - International Protocols for AI Security IEEE",
                        "location": "San Francisco"
                      },
                      {
                        "link": "https://www.linkedin.com/in/rajeshgopinathan",
                        "name": "Rajesh Gopinathan",
                        "summary": null,
                        "location": "Mumbai"
                      }
                    ],
                    "recommendations": [],
                    "activities": [
                      {
                        "title": "Microsoft has been positioned as a Leader for the fourteenth consecutive year in the Gartner 2021 Magic Quadrant for Analytics and Business…",
                        "link": null,
                        "activity_status": null
                      },
                      {
                        "title": "On March 17, we’re trying something we’ve never done before: Microsoft will host #Include2021, a free, global, digital event focused on diversity &…",
                        "link": null,
                        "activity_status": null
                      },
                      {
                        "title": "I talked to Bill Gates about his important new book, which provides a framework to reduce our world’s greenhouse gas emissions to zero, including…",
                        "link": null,
                        "activity_status": null
                      }
                    ],
                    "similarly_named_profiles": [],
                    "articles": [],
                    "groups": [],
                    "meta": {
                      "thin_profile": false,
                      "last_updated": "2025-03-15T08:22:00Z"
                    }
                  },
                  "last_updated": "2023-10-26T11:34:30Z"
                }
              }
            },
            "description": "Person Profile URL"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "People API"
        ],
        "operationId": "Role Lookup Endpoint"
      },
      "summary": "Role Lookup Endpoint"
    },
    "/api/v2/company/resolve": {
      "get": {
        "description": "Cost: 2 credits / successful request. Resolve a Company Profile from company name, domain name, and location.",
        "parameters": [
          {
            "in": "query",
            "name": "company_location",
            "required": false,
            "description": "The location / region of company. ISO 3166-1 alpha-2 codes",
            "example": "sg",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "company_domain",
            "required": false,
            "description": "Company website or Company domain Requires either `company_domain` or `company_name`",
            "example": "accenture.com",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "company_name",
            "required": false,
            "description": "Company Name Requires either `company_domain` or `company_name`",
            "example": "Accenture",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "enrich_profile",
            "required": false,
            "description": "Enrich the result with a cached profile of the lookup result.\nThe valid values are:\n* `skip` (default): do not enrich the results with cached profile data\n* `enrich`: enriches the result with cached profile data\nCalling this API endpoint with this parameter would add 1 credit.\nIf you require fresh profile data, please chain this API call with the [Company Profile Endpoint](/docs/api/v2/company-api/company-profile) with the `use_cache=if-recent` parameter.",
            "example": "enrich",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CompanyUrlEnrichResult"
                },
                "example": {
                  "url": "https://www.linkedin.com/company/accenture",
                  "profile": {
                    "linkedin_internal_id": "1033",
                    "description": "Accenture is a global professional services company with leading capabilities in digital, cloud, and security. Combining unmatched experience and specialized skills across more than 40 industries, we offer Strategy and Consulting, Technology and Operations Services, and Accenture Song—all powered by the world’s largest network of Advanced Technology and Intelligent Operations centers. \nOur people deliver on the promise of technology and human ingenuity every day, serving clients in more than 120 countries. We embrace the power of change to create value and shared success for our clients, people, shareholders, partners, and communities. \nVisit us at accenture.com.",
                    "website": "http://www.accenture.com",
                    "industry": "Business Consulting and Services",
                    "company_size": [
                      10001,
                      null
                    ],
                    "company_size_on_linkedin": 541251,
                    "hq": {
                      "country": "IE",
                      "city": "Dublin 2",
                      "postal_code": null,
                      "line_1": "Grand Canal Harbour",
                      "is_hq": true,
                      "state": null
                    },
                    "company_type": "PUBLIC_COMPANY",
                    "founded_year": null,
                    "specialities": [
                      "Management Consulting",
                      "Systems Integration and Technology"
                    ],
                    "locations": [
                      {
                        "country": "IE",
                        "city": "Dublin 2",
                        "postal_code": null,
                        "line_1": "Grand Canal Harbour",
                        "is_hq": true,
                        "state": null
                      },
                      {
                        "country": "US",
                        "city": "San Francisco",
                        "postal_code": "94105",
                        "line_1": "415 Mission Street Floor 31-34",
                        "is_hq": false,
                        "state": "California"
                      }
                    ],
                    "name": "Accenture",
                    "tagline": null,
                    "universal_name_id": "accenture",
                    "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/ba497886e02c992d8fe1a74bf0bbe675",
                    "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/b09e74d93f184f16c3249b63bdf60317",
                    "search_id": "1033",
                    "similar_companies": [
                      {
                        "name": "Deloitte",
                        "link": "https://www.linkedin.com/company/deloitte",
                        "industry": "Business Consulting and Services",
                        "location": null
                      },
                      {
                        "name": "Tata Consultancy Services",
                        "link": "https://in.linkedin.com/company/tata-consultancy-services",
                        "industry": "IT Services and IT Consulting",
                        "location": "Mumbai, Maharashtra"
                      }
                    ],
                    "affiliated_companies": [
                      {
                        "name": "Accenture in India",
                        "link": "https://in.linkedin.com/company/accentureindia",
                        "industry": "IT Services and IT Consulting",
                        "location": "Bengaluru, Karnatka"
                      },
                      {
                        "name": "Accenture Brasil",
                        "link": "https://br.linkedin.com/company/accenturebrasil",
                        "industry": "IT Services and IT Consulting",
                        "location": "São Paulo, São Paulo"
                      }
                    ],
                    "updates": [
                      {
                        "article_link": null,
                        "image": null,
                        "posted_on": {
                          "day": 25,
                          "month": 10,
                          "year": 2023
                        },
                        "text": "Explore #AccentureLifeTrends 2024 to learn more: https://accntu.re/3MfdMg4",
                        "total_likes": 325
                      },
                      {
                        "article_link": null,
                        "image": "https://assets.enrichlayer.com/pp/profilepic/ba497886e02c992d8fe1a74bf0bbe675",
                        "posted_on": {
                          "day": 25,
                          "month": 10,
                          "year": 2023
                        },
                        "text": "The ability to learn new things, without forgetting those that came before, is a huge differentiator between the #AI we're familiar with, and the #GenerativeAI powered by foundation models that we're seeing now.\n \nDiscover the trends shaping the next decade: https://accntu.re/474YxOH\n \n#TechVision2023",
                        "total_likes": 541
                      }
                    ],
                    "follower_count": 11125167,
                    "acquisitions": null,
                    "exit_data": null,
                    "extra": null,
                    "funding_data": null,
                    "categories": null,
                    "meta": {
                      "thin_profile": false,
                      "last_updated": "2023-10-26T11:34:30Z"
                    }
                  },
                  "last_updated": "2023-10-26T11:33:24Z"
                }
              }
            },
            "description": "Company Profile URL"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Company API"
        ],
        "operationId": "Company Lookup Endpoint"
      },
      "summary": "Company Lookup Endpoint"
    },
    "/api/v2/company/resolve-id": {
      "get": {
        "description": "Cost: 0 credit / successful request. Look up the vanity ID of a company by its numeric ID.",
        "parameters": [
          {
            "in": "query",
            "name": "id",
            "required": true,
            "description": "The company's internal, immutable numeric ID.",
            "example": 1441,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CompanyIDLookupResult"
                },
                "example": {
                  "vanity_id": "google"
                }
              }
            },
            "description": "Vanity ID"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Company API"
        ],
        "operationId": "Company ID Lookup Endpoint"
      },
      "summary": "Company ID Lookup Endpoint"
    },
    "/api/v2/company/employee/search/": {
      "get": {
        "description": "Cost: 10 credits / successful request. Search employees of a target company by their job title. This API endpoint is syntactic sugar for the `role_search` parameter under the [Employee Listing Endpoint](#company-api-employee-listing-endpoint). For a detailed comparison, see the [Role Lookup Endpoint](#people-api-role-lookup-endpoint) or the [Person Search Endpoint](#search-api-person-search-endpoint).",
        "parameters": [
          {
            "in": "query",
            "name": "company_profile_url",
            "required": true,
            "description": "Profile URL of the target company.",
            "example": "https://www.linkedin.com/company/microsoft/",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "keyword_boolean",
            "required": true,
            "description": "Job title keyword to search for in Boolean Search Syntax format. This parameter will take precedence over `keyword_regex` parameter if both are provided.\nThe value provided for this parameter must not exceed 255 characters.\nThis parameter is **case-insensitive**; matching ignores capitalization in both the input and our data.",
            "example": "ceo OR cto",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "keyword_regex",
            "required": false,
            "deprecated": true,
            "description": "Use `keyword_boolean` instead.\nJob title keyword to search for in regular expression format.\nThe accepted value for this parameter is a **case-insensitive** regular expression.",
            "example": "ceo|cto",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "page_size",
            "required": false,
            "description": "Tune the maximum results returned per API call. The default value of this parameter is `10`. Accepted values for this parameter is an integer ranging from `1` to `9999`. When `enrich_profiles=enrich`, this parameter accepts value ranging from `1` to `10` and the default value is `10`.",
            "example": "10",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "country",
            "required": false,
            "description": "Limit the result set to the country locality of the profile. For example, set the parameter of `country=us` if you only want profiles from the US.\nThis parameter accepts a case-insensitive [Alpha-2 ISO3166 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).\nCosts an extra `3` credit per result returned.",
            "example": "us",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "enrich_profiles",
            "required": false,
            "description": "Get the full profile of employees instead of only their profile urls.\nEach request respond with a streaming response of profiles.\nThe valid values are:\n* `skip` (default): lists employee's profile url\n* `enrich`: lists full profile of employees\nCalling this API endpoint with this parameter would add `1` credit per employee returned.",
            "example": "enrich",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "resolve_numeric_id",
            "required": false,
            "description": "Enable support for Company Profile URLs with numerical IDs.\nThis parameter accepts the following values:\n- `false` (default value) - Will not resolve numerical IDs.\n- `true` - Enable support for Company Profile URLs with numerical IDs.  Costs an extra `2` credit on top of the base cost of the endpoint.",
            "example": "false",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/EmployeeList"
                },
                "example": {
                  "employees": [
                    {
                      "profile_url": "https://www.linkedin.com/in/satyanadella",
                      "profile": {
                        "public_identifier": "williamhgates",
                        "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/a41217d5753de1f3f4906f9da43dbad6",
                        "background_cover_image_url": null,
                        "first_name": "Bill",
                        "last_name": "Gates",
                        "full_name": "Bill Gates",
                        "occupation": "Co-chair at Bill & Melinda Gates Foundation",
                        "headline": "Co-chair, Bill & Melinda Gates Foundation",
                        "summary": "Co-chair of the Bill & Melinda Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft. Voracious reader. Avid traveler. Active blogger.",
                        "country": "US",
                        "country_full_name": "United States of America",
                        "city": "Seattle",
                        "state": "Washington",
                        "experiences": [
                          {
                            "starts_at": {
                              "day": 1,
                              "month": 1,
                              "year": 2015
                            },
                            "ends_at": null,
                            "company": "Breakthrough Energy ",
                            "company_linkedin_profile_url": "https://www.linkedin.com/company/breakthrough-energy/",
                            "title": "Founder",
                            "description": null,
                            "location": null,
                            "logo_url": "https://assets.enrichlayer.com/ll/D560BAQFRMYiQN7-2kA/company-logo_100_100/B56ZoI4SGPI0AQ-/0/1761085563539/breakthrough_energy_logo?e=2147483647&v=beta&t=J6RbEvs17fl1uiEaXQm0hmXy4imx36mV_Hu80JcR1DE"
                          },
                          {
                            "starts_at": {
                              "day": 1,
                              "month": 1,
                              "year": 2000
                            },
                            "ends_at": null,
                            "company": "Bill & Melinda Gates Foundation",
                            "company_linkedin_profile_url": "https://www.linkedin.com/company/bill-&-melinda-gates-foundation/",
                            "title": "Co-chair",
                            "description": null,
                            "location": null,
                            "logo_url": "https://assets.enrichlayer.com/ll/D560BAQEgMqqFTd40Tg/company-logo_100_100/company-logo_100_100/0/1736784969376/bill__melinda_gates_foundation_logo?e=2147483647&v=beta&t=2JH2cMcZms60vPAMbvVZyMeYXosQ1Jjy5axDlyeQ1Ww"
                          }
                        ],
                        "education": [
                          {
                            "starts_at": {
                              "day": 1,
                              "month": 1,
                              "year": 1973
                            },
                            "ends_at": {
                              "day": 31,
                              "month": 12,
                              "year": 1975
                            },
                            "field_of_study": null,
                            "degree_name": null,
                            "school": "Harvard University",
                            "school_linkedin_profile_url": null,
                            "description": null,
                            "logo_url": "https://assets.enrichlayer.com/pp/profilepic/518005a5a755bd1d2fde90f216039bbc"
                          },
                          {
                            "starts_at": null,
                            "ends_at": null,
                            "field_of_study": null,
                            "degree_name": null,
                            "school": "Lakeside School",
                            "school_linkedin_profile_url": null,
                            "description": null,
                            "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f0d32d5de696536e8b46133cb042250a"
                          }
                        ],
                        "languages": [],
                        "accomplishment_organisations": [],
                        "accomplishment_publications": [],
                        "accomplishment_honors_awards": [],
                        "accomplishment_patents": [],
                        "accomplishment_courses": [],
                        "accomplishment_projects": [],
                        "accomplishment_test_scores": [],
                        "volunteer_work": [],
                        "certifications": [],
                        "connections": null,
                        "people_also_viewed": [],
                        "recommendations": [],
                        "activities": [],
                        "similarly_named_profiles": [],
                        "articles": [],
                        "groups": []
                      },
                      "last_updated": "2023-10-26T11:34:30Z"
                    }
                  ],
                  "next_page": null
                }
              }
            },
            "description": "List of employees"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Company API"
        ],
        "operationId": "Employee Search Endpoint"
      },
      "summary": "Employee Search Endpoint"
    },
    "/api/v2/school/students/": {
      "get": {
        "deprecated": true,
        "description": "Cost: 3 credits / student returned. Get a list of students from a school's profile.",
        "parameters": [
          {
            "in": "query",
            "name": "school_url",
            "required": true,
            "description": "URL of the School Profile to target.",
            "example": "https://www.linkedin.com/school/stanford-university",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "country",
            "required": false,
            "description": "Limit the result set to the country locality of the profile. For example, set the parameter of `country=us` if you only want profiles from the US.\nThis parameter accepts a case-insensitive [Alpha-2 ISO3166 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).\nCosts an extra `3` credit per result returned.",
            "example": "us",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "enrich_profiles",
            "required": false,
            "description": "Get the full profile of students instead of only their profile urls.\nEach request respond with a streaming response of profiles.\nThe valid values are:\n* `skip` (default): lists student's profile url\n* `enrich`: lists full profile of students\n*Calling this API endpoint with this parameter would add `1` credit per student returned.*",
            "example": "enrich",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "search_keyword",
            "required": false,
            "description": "Filter students by their major by matching the student's major against a *regular expression*.\nThe default value of this parameter is `null`.\nThe accepted value for this parameter is a **case-insensitive** regular expression.\n(The base cost of calling this API endpoint with this parameter would be `10` credits. Each student matched and returned would cost `6` credits per student returned.)",
            "example": "computer*|cs",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "page_size",
            "required": false,
            "description": "Limit the maximum results returned per API call.\nThe default value of this parameter is `10`.\nAccepted values for this parameter is an integer ranging from `1` to `200000`.\nWhen `enrich_profiles=enrich`, this parameter accepts value ranging from `1` to `10` and the default value is `10`.",
            "example": "10",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "student_status",
            "required": false,
            "description": "Parameter to tell the API to return past or current students.\nValid values are `current`, `past`, and `all`:\n* `current` (default) : lists current students\n* `past` : lists past students\n* `all` : lists current & past students",
            "example": "current",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "sort_by",
            "required": false,
            "description": "Sort students by matriculation or graduation dates.\nValid values are:\n* `recently-matriculated` - Sort students by their matriculation date. Students who had had most recently started school is on the top of the list.\n* `recently-graduated` - Sort students by their graduation date. The most recently graduated student is on the top of this list.\n* `none` - The default value. Do not sort.\nIf this parameter is supplied with a value other than `none`, will add `50` credits to the base cost of the API endpoint regardless number of results returned. It will also add an additional cost of `10` credits per student returned.",
            "example": "recently-matriculated",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "resolve_numeric_id",
            "required": false,
            "description": "Enable support for School Profile URLs with numerical IDs. \nThis parameter accepts the following values:\n- `false` (default value) - Will not resolve numerical IDs.\n- `true` - Enable support for School Profile URLs with numerical IDs.  Costs an extra `2` credit on top of the base cost of the endpoint.",
            "example": "false",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StudentList"
                },
                "example": {
                  "students": [
                    {
                      "profile_url": "https://www.linkedin.com/in/satyanadella",
                      "profile": {
                        "public_identifier": "satyanadella",
                        "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/7d369850c9fe8c35e78a6a50c75334f5",
                        "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/fe878f911fecd238e169a23b12103b0e",
                        "first_name": "Satya",
                        "last_name": "Nadella",
                        "full_name": "Satya Nadella",
                        "follower_count": 11888127,
                        "occupation": "Chairman and CEO at Microsoft",
                        "headline": "Chairman and CEO at Microsoft",
                        "summary": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every organization on the planet to achieve more.",
                        "country": "US",
                        "country_full_name": "United States of America",
                        "city": "Redmond",
                        "state": "Washington",
                        "experiences": [
                          {
                            "starts_at": {
                              "day": 1,
                              "month": 2,
                              "year": 2014
                            },
                            "ends_at": null,
                            "company": "Microsoft",
                            "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
                            "company_facebook_profile_url": null,
                            "title": "Chairman and CEO",
                            "description": null,
                            "location": "Greater Seattle Area",
                            "logo_url": "https://assets.enrichlayer.com/ll/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY"
                          },
                          {
                            "starts_at": {
                              "day": 1,
                              "month": 1,
                              "year": 2018
                            },
                            "ends_at": null,
                            "company": "University of Chicago",
                            "company_linkedin_profile_url": "https://www.linkedin.com/company/uchicago",
                            "company_facebook_profile_url": null,
                            "title": "Member Board Of Trustees",
                            "description": null,
                            "location": null,
                            "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f40c5f31ef246aeb1000ffb4e40f2991"
                          },
                          {
                            "starts_at": {
                              "day": 1,
                              "month": 1,
                              "year": 2017
                            },
                            "ends_at": {
                              "day": 31,
                              "month": 12,
                              "year": 2024
                            },
                            "company": "Starbucks",
                            "company_linkedin_profile_url": "https://www.linkedin.com/company/starbucks",
                            "company_facebook_profile_url": null,
                            "title": "Board Member",
                            "description": null,
                            "location": null,
                            "logo_url": "https://assets.enrichlayer.com/ll/C4D0BAQEQxk9y2rk7Hw/company-logo_100_100/company-logo_100_100/0/1631316692276?e=2147483647&v=beta&t=itdoVXP3gnqtQ7Grar4B3YoPyw-Ors9bKMZlZpb0QcY"
                          }
                        ],
                        "education": [
                          {
                            "starts_at": {
                              "day": 1,
                              "month": 1,
                              "year": 1994
                            },
                            "ends_at": {
                              "day": 31,
                              "month": 12,
                              "year": 1996
                            },
                            "field_of_study": null,
                            "degree_name": null,
                            "school": "The University of Chicago Booth School of Business",
                            "school_linkedin_profile_url": "https://www.linkedin.com/company/universityofchicagoboothschoolofbusiness",
                            "school_facebook_profile_url": null,
                            "description": null,
                            "logo_url": "https://assets.enrichlayer.com/pp/profilepic/88fa467a62fbfc5325394253f14e8700",
                            "grade": null,
                            "activities_and_societies": null
                          },
                          {
                            "starts_at": {
                              "day": null,
                              "month": null,
                              "year": null
                            },
                            "ends_at": null,
                            "field_of_study": "Electrical Engineering",
                            "degree_name": "Bachelor’s Degree",
                            "school": "Manipal Institute of Technology, Manipal",
                            "school_linkedin_profile_url": "https://www.linkedin.com/company/manipal-institute-of-technology",
                            "school_facebook_profile_url": null,
                            "description": null,
                            "logo_url": "https://assets.enrichlayer.com/pp/profilepic/2aef6f72c73e3b40dbd56163897bdc04",
                            "grade": null,
                            "activities_and_societies": null
                          },
                          {
                            "starts_at": {
                              "day": null,
                              "month": null,
                              "year": null
                            },
                            "ends_at": null,
                            "field_of_study": "Computer Science",
                            "degree_name": "Master’s Degree",
                            "school": "University of Wisconsin-Milwaukee",
                            "school_linkedin_profile_url": "https://www.linkedin.com/company/uwmilwaukee",
                            "school_facebook_profile_url": null,
                            "description": null,
                            "logo_url": "https://assets.enrichlayer.com/pp/profilepic/7916094135030c5846f34230e03dbaa2",
                            "grade": null,
                            "activities_and_societies": null
                          }
                        ],
                        "accomplishment_organisations": [],
                        "accomplishment_publications": [],
                        "accomplishment_honors_awards": [],
                        "accomplishment_patents": [],
                        "accomplishment_courses": [],
                        "accomplishment_projects": [],
                        "accomplishment_test_scores": [],
                        "volunteer_work": [],
                        "certifications": [],
                        "connections": 500,
                        "people_also_viewed": [
                          {
                            "link": "https://www.linkedin.com/in/kevinolearytv",
                            "name": "Kevin O'Leary",
                            "summary": "Chairman, O’Leary Ventures and Beanstox",
                            "location": "West Palm Beach"
                          },
                          {
                            "link": "https://www.linkedin.com/in/aaronmartinfc",
                            "name": "Aaron Martin",
                            "summary": "Vice President Healthcare at Amazon",
                            "location": "Seattle"
                          },
                          {
                            "link": "https://www.linkedin.com/in/guthriescott",
                            "name": "Scott Guthrie",
                            "summary": "Executive Vice President at Microsoft",
                            "location": "Bellevue"
                          },
                          {
                            "link": "https://www.linkedin.com/in/toufisaliba",
                            "name": "Toufi Saliba",
                            "summary": "Author TODA/IP  .  | . CEO HyperCycle.AI  .  | . Chair - International Protocols for AI Security IEEE",
                            "location": "San Francisco"
                          },
                          {
                            "link": "https://www.linkedin.com/in/rajeshgopinathan",
                            "name": "Rajesh Gopinathan",
                            "summary": null,
                            "location": "Mumbai"
                          }
                        ],
                        "recommendations": [],
                        "activities": [
                          {
                            "title": "Microsoft has been positioned as a Leader for the fourteenth consecutive year in the Gartner 2021 Magic Quadrant for Analytics and Business…",
                            "link": null,
                            "activity_status": null
                          },
                          {
                            "title": "On March 17, we’re trying something we’ve never done before: Microsoft will host #Include2021, a free, global, digital event focused on diversity &…",
                            "link": null,
                            "activity_status": null
                          },
                          {
                            "title": "I talked to Bill Gates about his important new book, which provides a framework to reduce our world’s greenhouse gas emissions to zero, including…",
                            "link": null,
                            "activity_status": null
                          }
                        ],
                        "similarly_named_profiles": [],
                        "articles": [],
                        "groups": [],
                        "meta": {
                          "thin_profile": false,
                          "last_updated": "2025-03-15T08:22:00Z"
                        }
                      },
                      "last_updated": "2023-10-26T11:34:30Z"
                    }
                  ],
                  "next_page": null
                }
              }
            },
            "description": "List of students"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "School API"
        ],
        "operationId": "Student Listing Endpoint"
      },
      "summary": "Student Listing Endpoint `DEPRECATED`"
    },
    "/api/v2/profile/resolve/email": {
      "get": {
        "description": "Cost: 3 credits / successful request. Resolve a person profile from an email address. Works with both personal and work email addresses.",
        "parameters": [
          {
            "in": "query",
            "name": "email",
            "required": true,
            "description": "Email address of the user you want to look up.",
            "example": "satya@microsoft.com",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "lookup_depth",
            "required": true,
            "description": "This parameter describes the depth options for our API lookup function. This endpoint can execute either a superficial or a deep lookup.\nA **superficial lookup** involves comparing the provided email with entries in our database. This approach tends to yield fewer results and is typically less effective for work-related email addresses. However, it does not consume any credits if no results are returned.\nOn the other hand, a **deep lookup** extends beyond our database to utilize advanced heuristics and identify the individual associated with a given email. This method is particularly recommended for work emails.\nPlease note the following valid values for the depth of the lookup:\n* `superficial`: No credits are consumed if no results are found.\n* `deep` (default): Credits are used regardless of whether any results are returned.",
            "example": "deep",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "enrich_profile",
            "required": false,
            "description": "Enrich the result with a cached profile (if any).\nValid values are:\n* `skip` (default): do not enrich the results with cached profile data.\n* `enrich`: enriches the result with cached profile data. \nCalling this API endpoint with this parameter would add `1` additional credit.\nIf you require fresh profile data, please chain this API call with the `linkedin_profile_url` result with the [Person Profile Endpoint](#people-api-person-profile-endpoint) with the `use_cache=if-recent` parameter.",
            "example": "enrich",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ReverseEmailUrlEnrichResult"
                },
                "example": {
                  "profile": {
                    "public_identifier": "satyanadella",
                    "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/7d369850c9fe8c35e78a6a50c75334f5",
                    "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/fe878f911fecd238e169a23b12103b0e",
                    "first_name": "Satya",
                    "last_name": "Nadella",
                    "full_name": "Satya Nadella",
                    "follower_count": 11888127,
                    "occupation": "Chairman and CEO at Microsoft",
                    "headline": "Chairman and CEO at Microsoft",
                    "summary": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every organization on the planet to achieve more.",
                    "country": "US",
                    "country_full_name": "United States of America",
                    "city": "Redmond",
                    "state": "Washington",
                    "experiences": [
                      {
                        "starts_at": {
                          "day": 1,
                          "month": 2,
                          "year": 2014
                        },
                        "ends_at": null,
                        "company": "Microsoft",
                        "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
                        "company_facebook_profile_url": null,
                        "title": "Chairman and CEO",
                        "description": null,
                        "location": "Greater Seattle Area",
                        "logo_url": "https://assets.enrichlayer.com/ll/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY"
                      },
                      {
                        "starts_at": {
                          "day": 1,
                          "month": 1,
                          "year": 2018
                        },
                        "ends_at": null,
                        "company": "University of Chicago",
                        "company_linkedin_profile_url": "https://www.linkedin.com/company/uchicago",
                        "company_facebook_profile_url": null,
                        "title": "Member Board Of Trustees",
                        "description": null,
                        "location": null,
                        "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f40c5f31ef246aeb1000ffb4e40f2991"
                      },
                      {
                        "starts_at": {
                          "day": 1,
                          "month": 1,
                          "year": 2017
                        },
                        "ends_at": {
                          "day": 31,
                          "month": 12,
                          "year": 2024
                        },
                        "company": "Starbucks",
                        "company_linkedin_profile_url": "https://www.linkedin.com/company/starbucks",
                        "company_facebook_profile_url": null,
                        "title": "Board Member",
                        "description": null,
                        "location": null,
                        "logo_url": "https://assets.enrichlayer.com/ll/C4D0BAQEQxk9y2rk7Hw/company-logo_100_100/company-logo_100_100/0/1631316692276?e=2147483647&v=beta&t=itdoVXP3gnqtQ7Grar4B3YoPyw-Ors9bKMZlZpb0QcY"
                      }
                    ],
                    "education": [
                      {
                        "starts_at": {
                          "day": 1,
                          "month": 1,
                          "year": 1994
                        },
                        "ends_at": {
                          "day": 31,
                          "month": 12,
                          "year": 1996
                        },
                        "field_of_study": null,
                        "degree_name": null,
                        "school": "The University of Chicago Booth School of Business",
                        "school_linkedin_profile_url": "https://www.linkedin.com/company/universityofchicagoboothschoolofbusiness",
                        "school_facebook_profile_url": null,
                        "description": null,
                        "logo_url": "https://assets.enrichlayer.com/pp/profilepic/88fa467a62fbfc5325394253f14e8700",
                        "grade": null,
                        "activities_and_societies": null
                      },
                      {
                        "starts_at": {
                          "day": null,
                          "month": null,
                          "year": null
                        },
                        "ends_at": null,
                        "field_of_study": "Electrical Engineering",
                        "degree_name": "Bachelor’s Degree",
                        "school": "Manipal Institute of Technology, Manipal",
                        "school_linkedin_profile_url": "https://www.linkedin.com/company/manipal-institute-of-technology",
                        "school_facebook_profile_url": null,
                        "description": null,
                        "logo_url": "https://assets.enrichlayer.com/pp/profilepic/2aef6f72c73e3b40dbd56163897bdc04",
                        "grade": null,
                        "activities_and_societies": null
                      },
                      {
                        "starts_at": {
                          "day": null,
                          "month": null,
                          "year": null
                        },
                        "ends_at": null,
                        "field_of_study": "Computer Science",
                        "degree_name": "Master’s Degree",
                        "school": "University of Wisconsin-Milwaukee",
                        "school_linkedin_profile_url": "https://www.linkedin.com/company/uwmilwaukee",
                        "school_facebook_profile_url": null,
                        "description": null,
                        "logo_url": "https://assets.enrichlayer.com/pp/profilepic/7916094135030c5846f34230e03dbaa2",
                        "grade": null,
                        "activities_and_societies": null
                      }
                    ],
                    "accomplishment_organisations": [],
                    "accomplishment_publications": [],
                    "accomplishment_honors_awards": [],
                    "accomplishment_patents": [],
                    "accomplishment_courses": [],
                    "accomplishment_projects": [],
                    "accomplishment_test_scores": [],
                    "volunteer_work": [],
                    "certifications": [],
                    "connections": 500,
                    "people_also_viewed": [
                      {
                        "link": "https://www.linkedin.com/in/kevinolearytv",
                        "name": "Kevin O'Leary",
                        "summary": "Chairman, O’Leary Ventures and Beanstox",
                        "location": "West Palm Beach"
                      },
                      {
                        "link": "https://www.linkedin.com/in/aaronmartinfc",
                        "name": "Aaron Martin",
                        "summary": "Vice President Healthcare at Amazon",
                        "location": "Seattle"
                      },
                      {
                        "link": "https://www.linkedin.com/in/guthriescott",
                        "name": "Scott Guthrie",
                        "summary": "Executive Vice President at Microsoft",
                        "location": "Bellevue"
                      },
                      {
                        "link": "https://www.linkedin.com/in/toufisaliba",
                        "name": "Toufi Saliba",
                        "summary": "Author TODA/IP  .  | . CEO HyperCycle.AI  .  | . Chair - International Protocols for AI Security IEEE",
                        "location": "San Francisco"
                      },
                      {
                        "link": "https://www.linkedin.com/in/rajeshgopinathan",
                        "name": "Rajesh Gopinathan",
                        "summary": null,
                        "location": "Mumbai"
                      }
                    ],
                    "recommendations": [],
                    "activities": [
                      {
                        "title": "Microsoft has been positioned as a Leader for the fourteenth consecutive year in the Gartner 2021 Magic Quadrant for Analytics and Business…",
                        "link": null,
                        "activity_status": null
                      },
                      {
                        "title": "On March 17, we’re trying something we’ve never done before: Microsoft will host #Include2021, a free, global, digital event focused on diversity &…",
                        "link": null,
                        "activity_status": null
                      },
                      {
                        "title": "I talked to Bill Gates about his important new book, which provides a framework to reduce our world’s greenhouse gas emissions to zero, including…",
                        "link": null,
                        "activity_status": null
                      }
                    ],
                    "similarly_named_profiles": [],
                    "articles": [],
                    "groups": [],
                    "meta": {
                      "thin_profile": false,
                      "last_updated": "2025-03-15T08:22:00Z"
                    }
                  },
                  "last_updated": "2023-10-26T11:34:30Z"
                }
              }
            },
            "description": "Twitter, Facebook, and Person Profile URL"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Contact API"
        ],
        "operationId": "Reverse Email Lookup Endpoint"
      },
      "summary": "Reverse Email Lookup Endpoint"
    },
    "/api/v2/resolve/phone": {
      "get": {
        "description": "Cost: 3 credits / successful request. Find social media profiles from a contact phone number.",
        "parameters": [
          {
            "in": "query",
            "name": "phone_number",
            "required": true,
            "description": "[E.164 formatted](/docs/guides/e164-phone-format) phone number of the person you want to identify social media profiles of.",
            "example": "+14155552671",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ReverseContactNumberResult"
                },
                "example": {
                  "linkedin_profile_url": "https://www.linkedin.com/in/kevinolearytv",
                  "twitter_profile_url": "https://www.twitter.com/enrichlayer",
                  "facebook_profile_url": "https://www.facebook.com/zuck"
                }
              }
            },
            "description": "Twitter, Facebook, and Profile URL"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Contact API"
        ],
        "operationId": "Reverse Contact Number Lookup Endpoint"
      },
      "summary": "Reverse Contact Number Lookup Endpoint"
    },
    "/api/v2/profile/email": {
      "get": {
        "description": "Cost: 3 credits / successful request. Look up the work email address of a Person Profile.\nEmail addresses returned are verified to not be role-based or catch-all emails. Email addresses returned by our API endpoint come with a 95+% deliverability guarantee.\n**Endpoint behavior**\n*This endpoint does not always return results immediately.*\nIf you provided a webhook in your request parameter, our application will call your webhook with the result once. See `Webhook request` below.",
        "parameters": [
          {
            "in": "query",
            "name": "profile_url",
            "required": true,
            "description": "Profile URL of the person you want to extract work email address from.",
            "example": "https://www.linkedin.com/in/williamhgates",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "callback_url",
            "required": false,
            "description": "Webhook to notify your application when the request has finished processing.",
            "example": "https://webhook.site/29e12f17-d5a2-400a-9d08-42ee9d83600a",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ExtractionEmailResult"
                },
                "example": {
                  "email_queue_count": 0
                }
              }
            },
            "description": "Work Email Address"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Contact API"
        ],
        "operationId": "Work Email Lookup Endpoint"
      },
      "summary": "Work Email Lookup Endpoint"
    },
    "/api/v2/job": {
      "get": {
        "description": "Cost: 2 credits / successful request. Get structured data of a Job Profile.",
        "parameters": [
          {
            "in": "query",
            "name": "url",
            "required": true,
            "description": "URL of the a Job Profile to target.\n[Jobs Listing Endpoint](#jobs-api-jobs-listing-endpoint) can be used to retrieve a job URL.",
            "example": "https://www.linkedin.com/jobs/view/4222036951/",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobProfile"
                },
                "example": {
                  "linkedin_internal_id": "content-strategist-at-microsoft-3257696537",
                  "job_description": "The Global Demand Center (GDC) within the Cloud Marketing group is leading the marketing transformation of Microsoft’s largest and fastest growing commercial businesses. Our always-on integrated marketing programs work to nurture and acquire new customers across segments, targeting business and technical audiences across our commercial cloud portfolio, with programs available in 42 markets and 30 languages. The GDC team is modernizing and integrating these channels through advanced analytics, marketing automation, and digital marketing. We are on a mission to drive market share, consumption, and consistent double-digit+ revenue growth. Content is the fuel that drives the digitally connected customer journeys at the core of the GDC engine, and we’re looking for a skilled, self-motivated, data-driven content strategist to build the content that motivates customers to take action. The Content Strategist will develop and execute content strategies for the ever-critical security space. You will be accountable for understanding the business priorities, getting close to our target audiences, defining the content journeys that attract, nurture, inspire, and retain customers, and manage quality execution and delivery of the content. You will work closely with your counterparts, the integrated marketing strategists, to drive business outcomes. Your network will include product marketers, integrated marketers, relationship marketers, sales, engineering, and agency partners to develop and execute on your plan. Our team: The Lifecycle Programs team is a fast-paced digital marketing organization. We put a focus on getting things done, simplifying anything and everything, and having fun while doing it. We all believe in connecting with customers at scale, supporting them at each stage of the customer journey, from early awareness and consideration, through onboarding and post purchase engagement. You will be in the middle of it all helping to identify the right content that delivers what customers want—where they want it, when they want it, and how they want it.   \n  \n**_Responsibilities  \n_**\n  * Define content journeys for Security and IT professionals across industries.\n  * Build the resulting content strategies designed to accelerate the customer through the lifecycle.\n  * Create a content plan to address the insights in the customer journey and strategy, ensuring the content is aligned to what the customer needs at each stage.\n  * Deliver the content through our internal Studio or with select agency partners.\n  * Be a customer advocate. Relentlessly champion the customer and the experiences they have with the content you create—how they find it, how they consume it, how they use it to make decisions.\n  * Leverage data and market insights for decision making including content optimization and new concept development.  \n\n\n**_Qualifications  \n  \n_** **Required/Minimum Qualifications  \n**\n  * Bachelor's Degree in Business, Marketing, Communications, Economics, Public Relations, or related field AND 1+ year(s) integrated marketing (e.g., digital, relationship, social media, campaign), event management, marketing strategy, business planning, marketing operations, or related work experience\n  * OR equivalent experience.  \n\n\n**_Additional Or Preferred Qualifications  \n_**\n  * Bachelor's Degree in Business, Marketing, Communications, Economics, Public Relations, or related field AND 3+ years integrated marketing (e.g., digital, relationship, social media, campaign), event management, marketing strategy, business planning, marketing operations, or related work experience\n  * OR equivalent experience.\n  * Strong customer centric mindset and demonstrated ability to put the customer first.\n  * Clear and persuasive communication skills, both written and verbal.\n  * Experience with program performance tracking and communications.\n  * Recognized as a self-starter with a bias for action.\n  * Creative problem-solving skills, and a growth mindset approach\n  * Experience managing across highly matrixed organizations, often with competing priorities.\n  * A demonstrated track record of business impact through content\n  * Well-versed in digital marketing best practices, including journey mapping.\n  * Understanding of content disciplines, including SEO, content strategy, and execution.\n  * Preferred, but not required: experience with commercial technology sales process  \n\n\nNarrative   \n  \nIntegrated Marketing IC3 - The typical base pay range for this role across the U.S. is USD $80,900 - $162,200 per year. There is a different range applicable to specific work locations, within the San Francisco Bay area and New York City metropolitan area, and the base pay range for this role in those locations is USD $105,300 - $176,900 per year.   \n  \nMicrosoft has different base pay ranges for different work locations within the United States, which allows us to pay employees competitively and consistently in different geographic markets (see below). The range above reflects the potential base pay across the U.S. for this role (except as noted below); the applicable base pay range will depend on what ultimately is determined to be the candidate’s primary work location. Individual base pay depends on various factors, in addition to primary work location, such as complexity and responsibility of role, job duties/requirements, and relevant experience and skills. Base pay ranges are reviewed and typically updated each year. Offers are made within the base pay range applicable at the time.   \n  \nAt Microsoft certain roles are eligible for additional rewards, including merit increases, annual bonus and stock. These awards are allocated based on individual performance. In addition, certain roles also have the opportunity to earn sales incentives based on revenue or utilization, depending on the terms of the plan and the employee’s role. Benefits/perks listed here may vary depending on the nature of employment with Microsoft and the country work location. U.S.-based employees have access to healthcare benefits, a 401(k) plan and company match, short-term and long-term disability coverage, basic life insurance, wellbeing benefits, paid vacation time, paid sick and mental health time, and several paid holidays, among others.   \n  \nOur commitment to pay equity   \n  \nWe are committed to the principle of pay equity – paying employees equitably for substantially similar work. To learn more about pay equity and our other commitments to increase representation and strengthen our culture of inclusion, check out our annual Diversity & Inclusion Report. ( https://www.microsoft.com/en-us/diversity/inside-microsoft/annual-report )   \n  \nUnderstanding roles at Microsoft   \n  \nThe top of this page displays the role for which the base pay ranges apply – Integrated Marketing IC3. The way we define roles includes two things: discipline (the type of work) and career stage (scope and complexity). The career stage has two parts – the first identifies whether the role is a manager (M), an individual contributor (IC), an admin-technician-retail (ATR) job, or an intern. The second part identifies the relative seniority of the role – a higher number (or later letter alphabetically in the case of ATR) indicates greater scope and complexity.   \n  \nMicrosoft is an equal opportunity employer. All qualified applicants will receive consideration for employment without regard to age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations and ordinances. We also consider qualified applicants regardless of criminal histories, consistent with legal requirements. If you need assistance and/or a reasonable accommodation due to a disability during the application or the recruiting process, please send a request via the Accommodation request form.   \n  \nThe salary for this role in the state of Colorado is between $108,200 and $162,200.   \n  \nAt Microsoft, certain roles are eligible for additional rewards, including annual bonus and stock. These awards are allocated based on individual performance. In addition, certain roles also have the opportunity to earn sales incentives based on revenue or utilization, depending on the terms of the plan and the employee’s role. Benefits/perks listed below may vary depending on the nature of your employment with Microsoft and the country where you work. \n",
                  "apply_url": "https://www.linkedin.com/jobs/view/externalApply/3257696537?url=https%3A%2F%2Fcareers%2Emicrosoft%2Ecom%2Fus%2Fen%2Fjob%2F1451110%2FContent-Strategist%3Fjobsource%3Dlinkedin%26utm_source%3Dlinkedin%26utm_medium%3Dlinkedin%26utm_campaign%3Dlinkedin-feed&urlHash=I9BQ&trk=public_jobs_apply-link-offsite",
                  "title": "Content Strategist",
                  "location": {
                    "country": "United States",
                    "region": "Hawaii",
                    "city": null,
                    "postal_code": null,
                    "latitude": null,
                    "longitude": null,
                    "street": null
                  },
                  "company": {
                    "name": "Microsoft",
                    "url": "https://www.linkedin.com/company/microsoft",
                    "logo": "https://assets.enrichlayer.com/pp/profilepic/4a59d4a33444509d96ad84be4aef3593"
                  },
                  "seniority_level": "Mid-Senior level",
                  "industry": [
                    "IT Services and IT Consulting, Computer Hardware Manufacturing, and Software Development"
                  ],
                  "employment_type": "Full-time",
                  "job_functions": [
                    "Marketing"
                  ],
                  "total_applicants": 200
                }
              }
            },
            "description": "Detailed job data"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Jobs API"
        ],
        "operationId": "Job Profile Endpoint"
      },
      "summary": "Job Profile Endpoint"
    },
    "/api/v2/company/job": {
      "get": {
        "description": "Cost: 2 credits / successful request. List jobs posted by a company.",
        "parameters": [
          {
            "in": "query",
            "name": "job_type",
            "required": false,
            "description": "The nature of the job. It accepts the following 7 case-insensitive values only:\n- `full-time`\n- `part-time`\n- `contract`\n- `internship`\n- `temporary`\n- `volunteer`\n- `anything` (default)",
            "example": "full-time",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "experience_level",
            "required": false,
            "description": "The experience level needed for the job. It accepts the following 6 case-insensitive values only:\n- `internship`\n- `entry_level`\n- `associate`\n- `mid_senior_level`\n- `director`\n- `anything` (default)",
            "example": "mid_senior_level",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "when",
            "required": false,
            "description": "The time when the job is posted, It accepts the following case-insensitive values only:\n- `yesterday`\n- `past-week`\n- `past-month`\n- `anytime` (default)",
            "example": "past-month",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "flexibility",
            "required": false,
            "description": "The flexibility of the job. It accepts the following 3 case insensitive values only:\n- `remote`\n- `on-site`\n- `hybrid`\n- `anything` (default)",
            "example": "remote",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "geo_id",
            "required": false,
            "description": "The `geo_id` of the location to search for. For example, `92000000` is the `geo_id` of world wide.",
            "example": "92000000",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "keyword",
            "required": false,
            "description": "The keyword to search for.",
            "example": "engineer",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "search_id",
            "required": false,
            "description": "The `search_id` of the company. You can get the `search_id` of a company via [Company Profile API](#company-api-company-profile-endpoint).",
            "example": "1035",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobListPage"
                },
                "example": {
                  "job": [
                    {
                      "company": "Microsoft",
                      "company_url": "https://www.linkedin.com/company/microsoft",
                      "job_title": "Product Management: Intern Opportunities for University Students",
                      "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203330682",
                      "list_date": "2022-10-09",
                      "location": "New York, NY"
                    },
                    {
                      "company": "Microsoft",
                      "company_url": "https://www.linkedin.com/company/microsoft",
                      "job_title": "Content Strategist",
                      "job_url": "https://www.linkedin.com/jobs/view/content-strategist-at-microsoft-3257692764",
                      "list_date": "2022-10-21",
                      "location": "United States"
                    }
                  ],
                  "next_page_no": 1,
                  "next_page_api_url": "http://enrichlayer.com/api/pc/company/job?pagination=eyJwYWdlIjogMX0&search_id=1035",
                  "previous_page_no": null,
                  "previous_page_api_url": null
                }
              }
            },
            "description": "List of open job position"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Jobs API"
        ],
        "operationId": "Job Search Endpoint"
      },
      "summary": "Job Search Endpoint"
    },
    "/api/v2/company/job/count": {
      "get": {
        "description": "Cost: 2 credits / successful request. Count the number of jobs posted by a company.",
        "parameters": [
          {
            "in": "query",
            "name": "job_type",
            "required": false,
            "description": "The nature of the job. It accepts the following 7 case-insensitive values only:\n- `full-time`\n- `part-time`\n- `contract`\n- `internship`\n- `temporary`\n- `volunteer`\n- `anything` (default)",
            "example": "full-time",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "experience_level",
            "required": false,
            "description": "The experience level needed for the job. It accepts the following 6 case-insensitive values only:\n- `internship`\n- `entry_level`\n- `associate`\n- `mid_senior_level`\n- `director`\n- `anything` (default)",
            "example": "mid_senior_level",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "when",
            "required": false,
            "description": "The time when the job is posted, It accepts the following case-insensitive values only:\n- `yesterday`\n- `past-week`\n- `past-month`\n- `anytime` (default)",
            "example": "past-month",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "flexibility",
            "required": false,
            "description": "The flexibility of the job. It accepts the following 3 case insensitive values only:\n- `remote`\n- `on-site`\n- `hybrid`\n- `anything` (default)",
            "example": "remote",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "geo_id",
            "required": false,
            "description": "The `geo_id` of the location to search for. For example, `92000000` is the `geo_id` of world wide.",
            "example": "92000000",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "keyword",
            "required": false,
            "description": "The keyword to search for.",
            "example": "engineer",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "search_id",
            "required": false,
            "description": "The `search_id` of the company. You can get the `search_id` of a company via [Company Profile API](#company-api-company-profile-endpoint).",
            "example": "1035",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobListCount"
                },
                "example": {
                  "count": 887622
                }
              }
            },
            "description": "Count number of jobs posted"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Jobs API"
        ],
        "operationId": "Jobs Listing Count Endpoint"
      },
      "summary": "Jobs Listing Count Endpoint"
    },
    "/api/v2/followers": {
      "get": {
        "deprecated": true,
        "description": "Cost: 10 credits / Company Profile URL for users on an annual subscription or Enterprise plan. Get a list of individual followers of the target company. Available for users on an annual subscription or Enterprise plan.",
        "parameters": [
          {
            "in": "query",
            "name": "company_profile_url",
            "required": false,
            "description": "The Company Profile URL of the company from which you want to get a list of followers of.\n\nInclude only one of: `company_profile_url` or `twitter_profile_url`.",
            "example": "https://www.linkedin.com/company/henry-schein",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "twitter_profile_url",
            "required": false,
            "description": "The Twitter/X Profile URL belonging to the company that you want to get a list of followers of.\nURL should be in the format of `https://x.com/<public-identifier>`\n\nInclude only one of: `company_profile_url` or `twitter_profile_url`.",
            "example": "https://x.com/henryschein",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "page_size",
            "required": false,
            "description": "Limit the maximum results of followers returned per API call.\nThe default value of this parameter is 10.\nAccepted values for this parameter is an integer ranging from 0 to 1000.",
            "example": "10",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FollowerList"
                },
                "example": {
                  "followers": [
                    {
                      "linkedin_profile_url": "https://www.linkedin.com/in/agiliosoftware",
                      "twitter_profile_url": "https://www.x.com/agilio_software",
                      "email": null
                    },
                    {
                      "linkedin_profile_url": "https://www.linkedin.com/in/air-techniques",
                      "twitter_profile_url": "https://www.x.com/airtechniques",
                      "email": null
                    }
                  ],
                  "next_page": null
                }
              }
            },
            "description": "A list of individual followers of the company"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Customer API"
        ],
        "operationId": "Follower Listing Endpoint"
      },
      "summary": "Follower Listing Endpoint `DEPRECATED`"
    },
    "/api/v2/followers/count": {
      "get": {
        "deprecated": true,
        "description": "Cost: 1 credit / successful request for users on an annual subscription or Enterprise plan. Count individuals following the target company. Available for users on an annual subscription or Enterprise plan.",
        "parameters": [
          {
            "in": "query",
            "name": "company_profile_url",
            "required": false,
            "description": "The Company Profile URL of the company from which you want to get a list of followers of.\n\nInclude only one of: `company_profile_url` or `twitter_profile_url`.",
            "example": "https://www.linkedin.com/company/henry-schein",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "twitter_profile_url",
            "required": false,
            "description": "The Twitter/X Profile URL belonging to the company that you want to get a list of followers of.\nURL should be in the format of `https://x.com/<public-identifier>`\n\nInclude only one of: `company_profile_url` or `twitter_profile_url`.",
            "example": "https://x.com/henryschein",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FollowerListCount"
                },
                "example": {
                  "follower_count": 74
                }
              }
            },
            "description": "Count individuals of that company's followers"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Customer API"
        ],
        "operationId": "Follower Listing Count Endpoint"
      },
      "summary": "Follower Listing Count Endpoint `DEPRECATED`"
    },
    "/api/v2/search/company": {
      "get": {
        "description": "Cost: 3 credits / Company URL. Search for companies that meet a set of criteria within our exhaustive dataset of company profiles.\nThis API endpoint can return at most 10,000,000 results per search.\nEach search expression for a parameter is limited to a maximum of 255 characters. Search expressions follow the Boolean Search Syntax.",
        "parameters": [
          {
            "in": "query",
            "name": "country",
            "required": false,
            "description": "Filter companies with an office based in this country. This parameter accepts a case-insensitive [Alpha-2 ISO3166 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).",
            "example": "US",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "region",
            "required": false,
            "description": "Filter companies with an office based in this region. A “region” in this context means “state,” “province,” or similar political division, depending on what country you’re querying.",
            "example": "Maryland OR \"New York\"",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "city",
            "required": false,
            "description": "Filter companies based in cities matching the provided search expression.",
            "example": "\"Los Angeles\"",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "type",
            "required": false,
            "description": "Filter companies of the provided type.\nPossible values:\n* `EDUCATIONAL`: Educational Institution\n* `GOVERNMENT_AGENCY`: Government Agency\n* `NON_PROFIT` : Nonprofit\n* `PARTNERSHIP` : Partnership\n* `PRIVATELY_HELD` : Privately Held\n* `PUBLIC_COMPANY` : Public Company\n* `SELF_EMPLOYED` : Self-Employed\n* `SELF_OWNED` : Sole Proprietorship",
            "example": "PRIVATELY_HELD",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "follower_count_min",
            "required": false,
            "description": "Filter companies with a follower count of **more than** this value.",
            "example": "1000",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "follower_count_max",
            "required": false,
            "description": "Filter companies with a follower count **less than** this value.",
            "example": "10000",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "name",
            "required": false,
            "description": "Filter companies with a name matching the provided search expression.",
            "example": "circle || amelex",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "industry",
            "required": false,
            "description": "Filter companies belonging to an `industry` that matches the provided search expression. The `industry` attribute, found in a Company profile, describes the primary industry in which the company operates. The value of this attribute is an enumerator. [See the full list of possible values for this attribute](/docs/guides/industry-values).\nWe also infer a company's industry from various attributes. For example, the primary industry for `https://www.linkedin.com/company/apple` may be `Computers and Electronics Manufacturing`, but we may also classify it under `Software Development`.\nIf you want to filter by the primary industry only, please refer to the `primary_industry` parameter.",
            "example": "technology || manufacturing",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "primary_industry",
            "required": false,
            "description": "Filter companies that has an industry that matches the provided search expression as the primary industry. The `industry` attribute, found in a Company profile, describes the primary industry in which the company operates. The value of this attribute is an enumerator. [See the full list of possible values for this attribute](/docs/guides/industry-values).",
            "example": "software development",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "employee_count_max",
            "required": false,
            "description": "Filter companies with **at most** this many employees.",
            "example": "1000",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "employee_count_min",
            "required": false,
            "description": "Filter companies with **at least** this many employees.",
            "example": "100",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "description",
            "required": false,
            "description": "Filter companies with a description matching the provided search expression.",
            "example": "navy or naval",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "founded_after_year",
            "required": false,
            "description": "Filter companies founded **after** this year.",
            "example": "1985",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "founded_before_year",
            "required": false,
            "description": "Filter companies founded **before** this year.",
            "example": "2015",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "funding_amount_max",
            "required": false,
            "description": "Filter companies that have raised **at most** this much (USD) funding amount.",
            "example": "1000000",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "funding_amount_min",
            "required": false,
            "description": "Filter companies that have raised **at least** this much (USD) funding amount.",
            "example": "1000000",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "funding_raised_after",
            "required": false,
            "description": "Filter companies that have raised funding **after** this date.",
            "example": "2019-12-30",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "funding_raised_before",
            "required": false,
            "description": "Filter companies that have raised funding **before** this date.",
            "example": "2019-12-30",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "public_identifier_in_list",
            "required": false,
            "description": "A list of public identifiers (the identifying portion of the company’s profile URL). The target company’s identifier must be a member of this list.",
            "example": "stripe,amazon",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "public_identifier_not_in_list",
            "required": false,
            "description": "A list of public identifiers (the identifying portion of the company’s profile URL). The target company’s identifier must **not** be a member of this list.",
            "example": "stripe,amazon",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "domain_name",
            "required": false,
            "description": "Filter companies with a domain name matching the provided search expression.",
            "example": "pfizer.com",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "page_size",
            "required": false,
            "description": "Tune the maximum results returned per API call.\nThe default value of this parameter is 100.\nAccepted values for this parameter is an integer ranging from 1 to 100.\nWhen `enrich_profiles=enrich`, this parameter accepts value ranging from `1` to `10`.",
            "example": "10",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "enrich_profiles",
            "required": false,
            "description": "Get the company's complete profile data rather than just the URLs to their profiles.\nEach request respond with a streaming response of profiles.\nThe valid values are:\n- skip (default): lists company's profile url\n- enrich: include company's profile data in the list\nCalling this API endpoint with this parameter would add 1 credit per enriched result returned.",
            "example": "enrich",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "use_cache",
            "required": false,
            "description": "Define the freshness guarantee on the results returned.\nThis parameter accepts the following values: if-present (default value) - Returns result as it is without any freshness guarantee if-recent - Will make a best effort to return results of profiles no older than 29 days. Costs 1 extra credit per result on top of the base cost of the endpoint for users on the Growth or larger subscription. For all other users, it will cost 2 extra credits per result on top of the base cost of the endpoint.\nNote: If use_cache=if-recent, page_size is limited to a value of 10 or smaller.",
            "example": "if-present",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CompanySearchResult"
                },
                "example": {
                  "results": [
                    {
                      "linkedin_profile_url": "https://www.linkedin.com/company/apple/",
                      "profile": {
                        "linkedin_internal_id": "1441",
                        "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.\nCheck out our career opportunities at careers.google.com.",
                        "website": "https://goo.gle/3m1IN7m",
                        "industry": "Software Development",
                        "company_size": [
                          10001,
                          null
                        ],
                        "company_size_on_linkedin": 319856,
                        "hq": {
                          "country": "US",
                          "city": "Mountain View",
                          "postal_code": "94043",
                          "line_1": "1600 Amphitheatre Parkway",
                          "is_hq": true,
                          "state": "CA"
                        },
                        "company_type": "PUBLIC_COMPANY",
                        "founded_year": null,
                        "specialities": [
                          "search",
                          "ads"
                        ],
                        "locations": [
                          {
                            "country": "US",
                            "city": "Mountain View",
                            "postal_code": "94043",
                            "line_1": "1600 Amphitheatre Parkway",
                            "is_hq": true,
                            "state": "CA"
                          },
                          {
                            "country": "US",
                            "city": "New York",
                            "postal_code": "10011",
                            "line_1": "111 8th Ave",
                            "is_hq": false,
                            "state": "NY"
                          }
                        ],
                        "name": "Google",
                        "tagline": null,
                        "universal_name_id": "google",
                        "profile_pic_url": "https://assets.enrichlayer.com/pp/...",
                        "background_cover_image_url": "https://assets.enrichlayer.com/pp/...",
                        "search_id": "1441",
                        "similar_companies": [
                          {
                            "name": "Amazon",
                            "link": "https://www.linkedin.com/company/amazon",
                            "industry": "Software Development",
                            "location": "Seattle, WA"
                          },
                          {
                            "name": "Microsoft",
                            "link": "https://www.linkedin.com/company/microsoft",
                            "industry": "Software Development",
                            "location": "Redmond, Washington"
                          }
                        ],
                        "affiliated_companies": [
                          {
                            "name": "YouTube",
                            "link": "https://www.linkedin.com/company/youtube",
                            "industry": "Software Development",
                            "location": "San Bruno, CA"
                          },
                          {
                            "name": "Google Cloud",
                            "link": "https://www.linkedin.com/showcase/google-cloud",
                            "industry": "Software Development",
                            "location": "Mountain View, California"
                          }
                        ],
                        "updates": [
                          {
                            "article_link": null,
                            "image": "https://assets.enrichlayer.com/pp/profilepic/57ef9922f8484ada3bd6001d1c68afa1",
                            "posted_on": {
                              "day": 13,
                              "month": 9,
                              "year": 2022
                            },
                            "text": "Want to kick start your #LifeAtGoogle but not sure where to begin? Explore our Build Your Future site, where you can learn about developmental programs, learn tips for future interviews, sign up for informational events, and even hear real stories from Googlers who’ve been where you are now. Get started → https://bit.ly/3SKPzQB",
                            "total_likes": 4267
                          },
                          {
                            "article_link": null,
                            "image": "https://assets.enrichlayer.com/pp/profilepic/57ef9922f8484ada3bd6001d1c68afa1",
                            "posted_on": null,
                            "text": "Ariana, welcome to Google. Here’s to a year full of growth, learning, and experiences at #LifeAtGoogle! 🎉",
                            "total_likes": 397
                          }
                        ],
                        "follower_count": 27472792,
                        "meta": {
                          "thin_profile": false,
                          "last_updated": "2023-10-26T11:34:30Z"
                        }
                      },
                      "last_updated": "2023-10-26T11:34:30Z"
                    }
                  ],
                  "next_page": null,
                  "total_result_count": 1
                }
              }
            },
            "description": "List of Company Profile URL"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Search API"
        ],
        "operationId": "Company Search Endpoint"
      },
      "summary": "Company Search Endpoint"
    },
    "/api/v2/search/person": {
      "get": {
        "description": "Cost: 3 credits / Profile URL. Search for people who meet a set of criteria within our exhaustive dataset of people profiles.\nThis API endpoint can return at most 10,000,000 results per search.\nEach search expression for a parameter is limited to a maximum of 255 characters. Search expressions follow the Boolean Search Syntax.",
        "parameters": [
          {
            "in": "query",
            "name": "country",
            "required": false,
            "description": "Filter people located in this country. This parameter accepts a case-insensitive [Alpha-2 ISO3166 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).",
            "example": "US",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "first_name",
            "required": false,
            "description": "Filter people whose first names match the provided search expression.",
            "example": "Bill OR Mark",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "last_name",
            "required": false,
            "description": "Filter people whose last names match the provided search expression.",
            "example": "Gates or Zuckerberg",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "education_field_of_study",
            "required": false,
            "description": "Filter people with a field of study matching the provided search expression, based on education history.",
            "example": "computer science",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "education_degree_name",
            "required": false,
            "description": "Filter people who earned a degree matching the provided search expression, based on education history.",
            "example": "MBA",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "education_school_name",
            "required": false,
            "description": "Filter people who have attended a school whose name matches the provided search expression, based on education history.",
            "example": "\"Harvard University\"",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "education_school_profile_url",
            "required": false,
            "description": "Filter people who have attended a school with a specific profile URL, based on education history.",
            "example": "https://www.linkedin.com/school/mit/",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_role_title",
            "required": false,
            "description": "Filter people who are **currently** working as a role whose title matches the provided search expression. You'll be looking for profiles that show a person's current job. However, keep in mind that some of these profiles may not be up-to-date, which means you might sometimes see a person's old job instead of their current job.",
            "example": "CEO || Founder",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "past_role_title",
            "required": false,
            "description": "Filter people who have **in the past** worked as a role whose title matches the provided search expression.",
            "example": "founder",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_role_before",
            "required": false,
            "description": "Filter people who started their current role **before** this date. You'll be looking for profiles that show a person's current job. However, keep in mind that some of these profiles may not be up-to-date, which means you might sometimes see a person's old job instead of their current job.\nThis parameter takes a ISO8601 date. Default value of this parameter is `null`.",
            "example": "2019-12-30",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_role_after",
            "required": false,
            "description": "Filter people who started their current role **after** this date. You'll be looking for profiles that show a person's current job. However, keep in mind that some of these profiles may not be up-to-date, which means you might sometimes see a person's old job instead of their current job.\nThis parameter takes a ISO8601 date. Default value of this parameter is `null`.",
            "example": "2019-12-30",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_profile_url",
            "required": false,
            "description": "Filter people who are **currently** working at a company represented by this Company Profile URL.\nDefault value of this parameter is `null`.",
            "example": "https://www.linkedin.com/company/apple",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "past_company_profile_url",
            "required": false,
            "description": "Filter people who have **in the past** worked at the company represented by this Company Profile URL.\nThis parameter takes a Company Profile URL. Default value of this parameter is `null`.",
            "example": "https://www.linkedin.com/company/apple",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_job_description",
            "required": false,
            "description": "Filter people with **current** job descriptions matching the provided search expression.",
            "example": "education",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "past_job_description",
            "required": false,
            "description": "Filter people with **past** job descriptions matching the provided search expression.",
            "example": "education",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_name",
            "required": false,
            "description": "Filter people who are **currently** working at a company whose name matches the provided search expression.",
            "example": "Stripe OR Apple",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "past_company_name",
            "required": false,
            "description": "Filter people who **have previously** worked at a company whose name matches the provided search expression.",
            "example": "Stripe OR Apple",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "groups",
            "required": false,
            "description": "Filter people who are members of groups whose names match the provided search expression.",
            "example": "haskell",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "languages",
            "required": false,
            "description": "Filter people who list a language matching the provided search expression.",
            "example": "Mandarin OR Chinese",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "region",
            "required": false,
            "description": "Filter people located in a region matching the provided search expression. A “region” in this context means “state,” “province,” or similar political division, depending on what country you’re querying.",
            "example": "California or Washington",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "city",
            "required": false,
            "description": "Filter people located in a city matching the provided search expression.",
            "example": "Seattle OR \"Palo Alto\"",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "headline",
            "required": false,
            "description": "Filter people whose headline fields match the provided search expression.",
            "example": "founder",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "summary",
            "required": false,
            "description": "Filter people whose summary fields match the provided search expression.",
            "example": "founder",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "industries",
            "required": false,
            "description": "Person's inferred industry. May sometimes exist when `current_company_industry` does not, but `current_company_industry` should be preferred when it exists.",
            "example": "technology and software",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "interests",
            "required": false,
            "description": "Filter people whose interest fields match the provided search expression.",
            "example": "technology",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "skills",
            "required": false,
            "description": "Filter people whose skill fields match the provided search expression.",
            "example": "accounting",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_country",
            "required": false,
            "description": "Filter people who are currently working at a company with an office based in this country.\nThis parameter accepts a case-insensitive [Alpha-2 ISO3166 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).",
            "example": "US",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_region",
            "required": false,
            "description": "Filter people who are currently working at a company based in a region matching the provided search expression.",
            "example": "Texas",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_city",
            "required": false,
            "description": "Filter people who are currently working at a company based in a city matching the provided search expression.",
            "example": "Seattle OR \"Los Angeles\"",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_type",
            "required": false,
            "description": "Filter people who are currently working at a company of the provided type.\nPossible values:\n* `EDUCATIONAL`: Educational Institution\n* `GOVERNMENT_AGENCY`: Government Agency\n* `NON_PROFIT` : Nonprofit\n* `PARTNERSHIP` : Partnership\n* `PRIVATELY_HELD` : Privately Held\n* `PUBLIC_COMPANY` : Public Company\n* `SELF_EMPLOYED` : Self-Employed\n* `SELF_OWNED` : Sole Proprietorship",
            "example": "NON_PROFIT",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_follower_count_min",
            "required": false,
            "description": "Filter people who are currently working at a company with a follower count of **more than** this value.",
            "example": "100000",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_follower_count_max",
            "required": false,
            "description": "Filter people who are currently working at a company with a follower count **less than** this value.",
            "example": "1000",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_industry",
            "required": false,
            "description": "Filter people who are currently working at a company belonging to an `industry` that matches the provided search expression. The `industry` attribute, found in a Company profile, describes the primary industry in which the company operates. The value of this attribute is an enumerator. [See the full list of possible values for this attribute](/docs/guides/industry-values).\nWe also infer a company's industry from various attributes. For example, the primary industry for `https://www.linkedin.com/company/apple` may be `Computers and Electronics Manufacturing`, but we may also classify it under `Software Development`.\nIf you want to filter by the primary industry only, please refer to the `current_company_primary_industry` parameter.",
            "example": "higher AND education",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_primary_industry",
            "required": false,
            "description": "Filter people who are currently working at a company belonging to an `industry` that matches the provided search expression. The `industry` attribute, found in a Company profile, describes the primary industry in which the company operates. The value of this attribute is an enumerator. [See the full list of possible values for this attribute](/docs/guides/industry-values).",
            "example": "technology",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_employee_count_min",
            "required": false,
            "description": "Filter people who are currently working at a company with **at least** this many employees.",
            "example": "1000",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_employee_count_max",
            "required": false,
            "description": "Filter people who are currently working at a company with **at most** this many employees.",
            "example": "1000",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_description",
            "required": false,
            "description": "Filter people who are currently working at a company with a description matching the provided search expression.",
            "example": "medical device",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_founded_after_year",
            "required": false,
            "description": "Filter people who are currently working at a company that was founded **after** this year.",
            "example": "1999",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_founded_before_year",
            "required": false,
            "description": "Filter people who are currently working at a company that was founded **before** this year.",
            "example": "1999",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_funding_amount_min",
            "required": false,
            "description": "Filter people who are currently working at a company that has raised **at least** this much (USD) funding amount.",
            "example": "1000000",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_funding_amount_max",
            "required": false,
            "description": "Filter people who are currently working at a company that has raised **at most** this much (USD) funding amount.",
            "example": "1000000",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_funding_raised_after",
            "required": false,
            "description": "Filter people who are currently working at a company that has raised funding **after** this date.",
            "example": "2019-12-30",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_funding_raised_before",
            "required": false,
            "description": "Filter people who are currently working at a company that has raised funding **before** this date.",
            "example": "2019-12-30",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "current_company_domain_name",
            "required": false,
            "description": "Filter people who are currently working at a company with a domain name matching the provided search expression.",
            "example": "pfizer.com",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "public_identifier_in_list",
            "required": false,
            "description": "A list of public identifiers (the identifying portion of the person’s profile URL). The target person’s identifier must be a member of this list.",
            "example": "williamhgates,satyanadella",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "public_identifier_not_in_list",
            "required": false,
            "description": "A list of public identifiers (the identifying portion of the person’s profile URL). The target person’s identifier must **not** be a member of this list.",
            "example": "mark-zuckerberg-618bba58,jeff-bezos-879307323",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "page_size",
            "required": false,
            "description": "Tune the maximum results returned per API call.\nThe default value of this parameter is `100`.\nAccepted values for this parameter is an integer ranging from `1` to `100`.\nWhen `enrich_profiles=enrich`, this parameter accepts value ranging from `1` to `10`.",
            "example": "10",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "follower_count_min",
            "required": false,
            "description": "Filter people with a follower count of **more than** this value.",
            "example": "1000",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "follower_count_max",
            "required": false,
            "description": "Filter people with a follower count **less than** this value.",
            "example": "1000",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "enrich_profiles",
            "required": false,
            "description": "Get the person's complete profile data rather than just the URLs to their profiles.\nEach request respond with a streaming response of profiles.\nThe valid values are:\n* `skip` (default): lists person's profile url only\n* `enrich`: include person's profile data in the list\nCalling this API endpoint with this parameter would add `1` credit per enriched result returned. A profile returned without enrichment will not incur any per-profile charges.",
            "example": "enrich",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "use_cache",
            "required": false,
            "description": "Define the freshness guarantee on the results returned.\nThis parameter accepts the following values: if-present (default value) - Returns result as it is without any freshness guarantee if-recent - Will make a best effort to return results of profiles no older than 29 days. Costs 1 extra credit per result on top of the base cost of the endpoint for users on the Growth or larger subscription. For all other users, it will cost 2 extra credits per result on top of the base cost of the endpoint.\nNote: If use_cache=if-recent, page_size is limited to a value of 10 or smaller.",
            "example": "if-present",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PersonSearchResult"
                },
                "example": {
                  "results": [
                    {
                      "linkedin_profile_url": "https://www.linkedin.com/in/satyanadella",
                      "profile": {
                        "public_identifier": "satyanadella",
                        "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/7d369850c9fe8c35e78a6a50c75334f5",
                        "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/fe878f911fecd238e169a23b12103b0e",
                        "first_name": "Satya",
                        "last_name": "Nadella",
                        "full_name": "Satya Nadella",
                        "follower_count": 11888127,
                        "occupation": "Chairman and CEO at Microsoft",
                        "headline": "Chairman and CEO at Microsoft",
                        "summary": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every organization on the planet to achieve more.",
                        "country": "US",
                        "country_full_name": "United States of America",
                        "city": "Redmond",
                        "state": "Washington",
                        "experiences": [
                          {
                            "starts_at": {
                              "day": 1,
                              "month": 2,
                              "year": 2014
                            },
                            "ends_at": null,
                            "company": "Microsoft",
                            "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
                            "company_facebook_profile_url": null,
                            "title": "Chairman and CEO",
                            "description": null,
                            "location": "Greater Seattle Area",
                            "logo_url": "https://assets.enrichlayer.com/ll/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY"
                          },
                          {
                            "starts_at": {
                              "day": 1,
                              "month": 1,
                              "year": 2018
                            },
                            "ends_at": null,
                            "company": "University of Chicago",
                            "company_linkedin_profile_url": "https://www.linkedin.com/company/uchicago",
                            "company_facebook_profile_url": null,
                            "title": "Member Board Of Trustees",
                            "description": null,
                            "location": null,
                            "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f40c5f31ef246aeb1000ffb4e40f2991"
                          },
                          {
                            "starts_at": {
                              "day": 1,
                              "month": 1,
                              "year": 2017
                            },
                            "ends_at": {
                              "day": 31,
                              "month": 12,
                              "year": 2024
                            },
                            "company": "Starbucks",
                            "company_linkedin_profile_url": "https://www.linkedin.com/company/starbucks",
                            "company_facebook_profile_url": null,
                            "title": "Board Member",
                            "description": null,
                            "location": null,
                            "logo_url": "https://assets.enrichlayer.com/ll/C4D0BAQEQxk9y2rk7Hw/company-logo_100_100/company-logo_100_100/0/1631316692276?e=2147483647&v=beta&t=itdoVXP3gnqtQ7Grar4B3YoPyw-Ors9bKMZlZpb0QcY"
                          }
                        ],
                        "education": [
                          {
                            "starts_at": {
                              "day": 1,
                              "month": 1,
                              "year": 1994
                            },
                            "ends_at": {
                              "day": 31,
                              "month": 12,
                              "year": 1996
                            },
                            "field_of_study": null,
                            "degree_name": null,
                            "school": "The University of Chicago Booth School of Business",
                            "school_linkedin_profile_url": "https://www.linkedin.com/company/universityofchicagoboothschoolofbusiness",
                            "school_facebook_profile_url": null,
                            "description": null,
                            "logo_url": "https://assets.enrichlayer.com/pp/profilepic/88fa467a62fbfc5325394253f14e8700",
                            "grade": null,
                            "activities_and_societies": null
                          },
                          {
                            "starts_at": {
                              "day": null,
                              "month": null,
                              "year": null
                            },
                            "ends_at": null,
                            "field_of_study": "Electrical Engineering",
                            "degree_name": "Bachelor’s Degree",
                            "school": "Manipal Institute of Technology, Manipal",
                            "school_linkedin_profile_url": "https://www.linkedin.com/company/manipal-institute-of-technology",
                            "school_facebook_profile_url": null,
                            "description": null,
                            "logo_url": "https://assets.enrichlayer.com/pp/profilepic/2aef6f72c73e3b40dbd56163897bdc04",
                            "grade": null,
                            "activities_and_societies": null
                          },
                          {
                            "starts_at": {
                              "day": null,
                              "month": null,
                              "year": null
                            },
                            "ends_at": null,
                            "field_of_study": "Computer Science",
                            "degree_name": "Master’s Degree",
                            "school": "University of Wisconsin-Milwaukee",
                            "school_linkedin_profile_url": "https://www.linkedin.com/company/uwmilwaukee",
                            "school_facebook_profile_url": null,
                            "description": null,
                            "logo_url": "https://assets.enrichlayer.com/pp/profilepic/7916094135030c5846f34230e03dbaa2",
                            "grade": null,
                            "activities_and_societies": null
                          }
                        ],
                        "accomplishment_organisations": [],
                        "accomplishment_publications": [],
                        "accomplishment_honors_awards": [],
                        "accomplishment_patents": [],
                        "accomplishment_courses": [],
                        "accomplishment_projects": [],
                        "accomplishment_test_scores": [],
                        "volunteer_work": [],
                        "certifications": [],
                        "connections": 500,
                        "people_also_viewed": [
                          {
                            "link": "https://www.linkedin.com/in/kevinolearytv",
                            "name": "Kevin O'Leary",
                            "summary": "Chairman, O’Leary Ventures and Beanstox",
                            "location": "West Palm Beach"
                          },
                          {
                            "link": "https://www.linkedin.com/in/aaronmartinfc",
                            "name": "Aaron Martin",
                            "summary": "Vice President Healthcare at Amazon",
                            "location": "Seattle"
                          },
                          {
                            "link": "https://www.linkedin.com/in/guthriescott",
                            "name": "Scott Guthrie",
                            "summary": "Executive Vice President at Microsoft",
                            "location": "Bellevue"
                          },
                          {
                            "link": "https://www.linkedin.com/in/toufisaliba",
                            "name": "Toufi Saliba",
                            "summary": "Author TODA/IP  .  | . CEO HyperCycle.AI  .  | . Chair - International Protocols for AI Security IEEE",
                            "location": "San Francisco"
                          },
                          {
                            "link": "https://www.linkedin.com/in/rajeshgopinathan",
                            "name": "Rajesh Gopinathan",
                            "summary": null,
                            "location": "Mumbai"
                          }
                        ],
                        "recommendations": [],
                        "activities": [
                          {
                            "title": "Microsoft has been positioned as a Leader for the fourteenth consecutive year in the Gartner 2021 Magic Quadrant for Analytics and Business…",
                            "link": null,
                            "activity_status": null
                          },
                          {
                            "title": "On March 17, we’re trying something we’ve never done before: Microsoft will host #Include2021, a free, global, digital event focused on diversity &…",
                            "link": null,
                            "activity_status": null
                          },
                          {
                            "title": "I talked to Bill Gates about his important new book, which provides a framework to reduce our world’s greenhouse gas emissions to zero, including…",
                            "link": null,
                            "activity_status": null
                          }
                        ],
                        "similarly_named_profiles": [],
                        "articles": [],
                        "groups": [],
                        "meta": {
                          "thin_profile": false,
                          "last_updated": "2025-03-15T08:22:00Z"
                        }
                      },
                      "last_updated": "2023-10-26T11:34:30Z"
                    }
                  ],
                  "next_page": null,
                  "total_result_count": 1
                }
              }
            },
            "description": "List of Person Profile URL"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Search API"
        ],
        "operationId": "Person Search Endpoint"
      },
      "summary": "Person Search Endpoint"
    },
    "/api/v2/credit-balance": {
      "get": {
        "description": "Cost: 0 credit / successful request. Get your current credit balance.",
        "parameters": [],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CreditBalance"
                },
                "example": {
                  "credit_balance": 100000
                }
              }
            },
            "description": "Balance of credits"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Meta API"
        ],
        "operationId": "View Credit Balance Endpoint"
      },
      "summary": "View Credit Balance Endpoint"
    },
    "/api/v2/disposable-email": {
      "get": {
        "description": "Cost: 0 credit / successful request. Check whether an email address belongs to a disposable email service.",
        "parameters": [
          {
            "in": "query",
            "name": "email",
            "required": true,
            "description": "Email address to check",
            "example": "satya@microsoft.com",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DisposableEmail"
                },
                "example": {
                  "is_disposable_email": false,
                  "is_free_email": false
                }
              }
            },
            "description": "Disposable Email Check"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Contact API"
        ],
        "operationId": "Disposable Email Address Check Endpoint"
      },
      "summary": "Disposable Email Address Check Endpoint"
    },
    "/api/v2/contact-api/personal-contact": {
      "get": {
        "description": "Cost: 1 credit / contact number returned. Find personal phone numbers associated with a given social media profile.",
        "parameters": [
          {
            "in": "query",
            "name": "profile_url",
            "required": false,
            "description": "The Profile URL from which you wish to extract personal contact numbers\n\nInclude only one of: `profile_url`, `twitter_profile_url`, or `facebook_profile_url`.",
            "example": "https://www.linkedin.com/in/williamhgates",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "twitter_profile_url",
            "required": false,
            "description": "The Twitter/X Profile URL from which you wish to extract personal contact numbers\n\nInclude only one of: `profile_url`, `twitter_profile_url`, or `facebook_profile_url`.",
            "example": "https://x.com/enrichlayer",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "facebook_profile_url",
            "required": false,
            "description": "The Facebook Profile URL from which you wish to extract personal contact numbers\n\nInclude only one of: `profile_url`, `twitter_profile_url`, or `facebook_profile_url`.",
            "example": "https://www.facebook.com/zuck",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "page_size",
            "required": false,
            "description": "This controls the maximum number of numbers returned per API call. It's useful for limiting credit consumption as the number of numbers per identity can vary. The default value is 0, meaning there's no limit to the number of returned results.",
            "example": "0",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PersonalContactNumbers"
                },
                "example": {
                  "numbers": [
                    "+19707495020"
                  ]
                }
              }
            },
            "description": "List of Personal Contact Numbers"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Contact API"
        ],
        "operationId": "Personal Contact Number Lookup Endpoint"
      },
      "summary": "Personal Contact Number Lookup Endpoint"
    },
    "/api/v2/contact-api/personal-email": {
      "get": {
        "description": "Cost: 1 credit / email returned. Find personal email addresses associated with a given social media profile.",
        "parameters": [
          {
            "in": "query",
            "name": "profile_url",
            "required": false,
            "description": "The Profile URL from which you wish to extract personal email addresses. Include only one of: `profile_url`, `twitter_profile_url`, or `facebook_profile_url`.",
            "example": "https://www.linkedin.com/in/williamhgates",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "twitter_profile_url",
            "required": false,
            "description": "The Twitter/X Profile URL from which you wish to extract personal email addresses. Include only one of: `profile_url`, `twitter_profile_url`, or `facebook_profile_url`.",
            "example": "https://x.com/enrichlayer",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "facebook_profile_url",
            "required": false,
            "description": "The Facebook Profile URL from which you wish to extract personal email addresses. Include only one of: `profile_url`, `twitter_profile_url`, or `facebook_profile_url`.",
            "example": "https://www.facebook.com/zuck",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "email_validation",
            "required": false,
            "description": "How to validate each email.\nTakes the following values:\n * `none` (default) - Do not perform email validation.\n * `fast` - Perform fast email validation (does not cost extra credit).\n * `precise` - Perform deliverability validation (costs 1 extra credit per email found).\n\nFor backward-compatibility these are also accepted:\n * `include` - Equivalent to `precise`\n * `exclude` - Equivalent to `none`",
            "example": "include",
            "schema": {
              "type": "string"
            }
          },
          {
            "in": "query",
            "name": "page_size",
            "required": false,
            "description": "This controls the maximum number of emails returned per API call. It's useful for limiting credit consumption as the number of emails per identity can vary. The default value is `0`, meaning there's no limit to the number of returned results.",
            "example": 0,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PDLEmailResult"
                },
                "example": {
                  "emails": [
                    "bill.gates@gatesfoundation.org",
                    "billg@microsoft.com",
                    "billgates@hotmail.com"
                  ],
                  "invalid_emails": []
                }
              }
            },
            "description": "List of Personal Emails"
          },
          "400": {
            "description": "Invalid parameters provided. Refer to the documentation and message body for more info"
          },
          "401": {
            "description": "Invalid API key"
          },
          "403": {
            "description": "You have run out of credits"
          },
          "404": {
            "description": "The requested resource (e.g: user profile, company) could not be found"
          },
          "429": {
            "description": "Rate limited. Please retry"
          },
          "500": {
            "description": "Internal Server Error"
          },
          "503": {
            "description": "Enrichment failed, please retry."
          }
        },
        "tags": [
          "Contact API"
        ],
        "operationId": "Personal Email Lookup Endpoint"
      },
      "summary": "Personal Email Lookup Endpoint"
    }
  },
  "info": {
    "title": "Enrich Layer API",
    "version": "1.0.0"
  },
  "openapi": "3.0.0",
  "components": {
    "schemas": {
      "CompanyLocation": {
        "type": "object",
        "properties": {
          "country": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "postal_code": {
            "type": "string",
            "nullable": true
          },
          "line_1": {
            "type": "string",
            "nullable": true
          },
          "is_hq": {
            "type": "boolean"
          },
          "state": {
            "type": "string",
            "nullable": true
          }
        },
        "example": {
          "country": "US",
          "city": "Cambridge, MA",
          "postal_code": "02139-4307",
          "line_1": "77 Massachusetts Avenue",
          "is_hq": true,
          "state": "Massachusetts"
        }
      },
      "CompanyType": {
        "type": "string",
        "enum": [
          "EDUCATIONAL_INSTITUTION",
          "GOVERNMENT_AGENCY",
          "NON_PROFIT",
          "PARTNERSHIP",
          "PRIVATELY_HELD",
          "PUBLIC_COMPANY",
          "SELF_EMPLOYED",
          "SELF_OWNED"
        ]
      },
      "SimilarCompany": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "nullable": true
          },
          "link": {
            "type": "string",
            "nullable": true
          },
          "industry": {
            "type": "string",
            "nullable": true
          },
          "location": {
            "type": "string",
            "nullable": true
          }
        },
        "example": {
          "name": "MIT Sloan School of Management",
          "link": "https://www.linkedin.com/school/mitsloan/",
          "industry": "Higher Education",
          "location": null
        }
      },
      "AffiliatedCompany": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "nullable": true
          },
          "link": {
            "type": "string",
            "nullable": true
          },
          "industry": {
            "type": "string",
            "nullable": true
          },
          "location": {
            "type": "string",
            "nullable": true
          }
        },
        "example": {
          "name": "LinkedIn",
          "link": "https://www.linkedin.com/company/linkedin",
          "industry": "Internet",
          "location": "Sunnyvale, California"
        }
      },
      "Date": {
        "type": "object",
        "properties": {
          "day": {
            "type": "integer",
            "nullable": true
          },
          "month": {
            "type": "integer",
            "nullable": true
          },
          "year": {
            "type": "integer"
          }
        },
        "example": {
          "day": 30,
          "month": 9,
          "year": 2021
        }
      },
      "CompanyUpdate": {
        "type": "object",
        "properties": {
          "article_link": {
            "type": "string",
            "nullable": true,
            "description": "The URL for which the post links out to"
          },
          "image": {
            "type": "string",
            "nullable": true,
            "description": "The URL to the image to the post (if it exists)"
          },
          "posted_on": {
            "$ref": "#/components/schemas/Date",
            "nullable": true
          },
          "text": {
            "type": "string",
            "nullable": true,
            "description": "The body of the update"
          },
          "total_likes": {
            "type": "integer",
            "nullable": true,
            "description": "The total likes a post has received"
          }
        },
        "example": {
          "article_link": "https://lnkd.in/gr7cb5by",
          "image": "https://assets.enrichlayer.com/ll/D5612AQHXKV_XhT0W_A/article-cover_image-shrink_720_1280/B56Zr1w1eSK4AI-/0/1765059814903?e=2147483647&v=beta&t=gKhTu-PogMfQzIvtwIqoJOlm6-05kg63OSE_UosVrrM",
          "posted_on": {
            "day": 30,
            "month": 9,
            "year": 2021
          },
          "text": "Introducing Personal Email Lookup API https://lnkd.in/gr7cb5by",
          "total_likes": 3
        }
      },
      "ProfileMeta": {
        "type": "object",
        "properties": {
          "thin_profile": {
            "type": "boolean",
            "nullable": true,
            "description": "If a profile is classified as a thin profile, it means it doesn't contain enough data to be considered a full profile."
          },
          "last_updated": {
            "type": "string",
            "nullable": true,
            "description": "ISO 8601 timestamp since the profile was last fetched."
          }
        },
        "example": {
          "thin_profile": null,
          "last_updated": "2023-10-26T11:34:30Z"
        }
      },
      "LinkedinSchool": {
        "type": "object",
        "properties": {
          "linkedin_internal_id": {
            "type": "string",
            "description": "Internal and immutable ID of this Company profile."
          },
          "description": {
            "type": "string",
            "nullable": true,
            "description": "A textual description of the company."
          },
          "website": {
            "type": "string",
            "nullable": true,
            "description": "The URL of the company's website."
          },
          "industry": {
            "type": "string",
            "nullable": true,
            "description": "The `industry` attribute, found in a Company            profile, describes the industry in which the company operates.            The value of this attribute is an enumerator. [See the full list of possible values for this attribute](/docs/guides/industry-values)."
          },
          "company_size": {
            "type": "array",
            "items": {
              "oneOf": [
                {
                  "type": "integer",
                  "nullable": true
                },
                {
                  "type": "integer",
                  "nullable": true
                }
              ]
            },
            "minItems": 2,
            "maxItems": 2,
            "description": "Sequenced range of company head count"
          },
          "company_size_on_linkedin": {
            "type": "integer",
            "description": "The size of the company."
          },
          "hq": {
            "$ref": "#/components/schemas/CompanyLocation",
            "nullable": true
          },
          "company_type": {
            "$ref": "#/components/schemas/CompanyType",
            "nullable": true,
            "description": "Possible values:\n`EDUCATIONAL`: Educational Institution\n`GOVERNMENT_AGENCY`: Government Agency\n`NON_PROFIT` : Nonprofit\n`PARTNERSHIP` : Partnership\n`PRIVATELY_HELD`: Privately Held\n`PUBLIC_COMPANY`: Public Company\n`SELF_EMPLOYED`: Self-Employed\n`SELF_OWNED`: Sole Proprietorship"
          },
          "founded_year": {
            "type": "integer",
            "nullable": true,
            "description": "The year the company was founded."
          },
          "specialities": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "A list of specialities."
          },
          "locations": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CompanyLocation"
            }
          },
          "name": {
            "type": "string",
            "nullable": true,
            "description": "The name of the company."
          },
          "tagline": {
            "type": "string",
            "nullable": true,
            "description": "A short, catchy phrase that represents                the company's mission or brand."
          },
          "universal_name_id": {
            "type": "string",
            "nullable": true,
            "description": "A unique numerical identifier for                the company."
          },
          "profile_pic_url": {
            "type": "string",
            "nullable": true,
            "description": "The URL of the company's profile picture."
          },
          "background_cover_image_url": {
            "type": "string",
            "nullable": true,
            "description": "The URL of the company's background cover image."
          },
          "search_id": {
            "type": "string",
            "description": "Unique identifier used for search operations."
          },
          "similar_companies": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/SimilarCompany"
            }
          },
          "affiliated_companies": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AffiliatedCompany"
            }
          },
          "updates": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CompanyUpdate"
            },
            "description": "A list of post updates made by the company. This field is not guaranteed to be returned. Do not rely on this attribute in production."
          },
          "follower_count": {
            "type": "integer",
            "nullable": true,
            "description": "The number of followers                the company has."
          },
          "meta": {
            "$ref": "#/components/schemas/ProfileMeta",
            "description": "Profile metadata."
          }
        },
        "example": {
          "linkedin_internal_id": "1503",
          "description": "The Massachusetts Institute of Technology (MIT) is a private research university located in Cambridge, Massachusetts. MIT is devoted to the advancement of knowledge and education of students in areas that contribute to or prosper in an environment of science and technology.",
          "website": "http://web.mit.edu/",
          "industry": "Higher Education",
          "company_size": [
            5001,
            10000
          ],
          "company_size_on_linkedin": 23329,
          "hq": {
            "country": "US",
            "city": "Cambridge, MA",
            "postal_code": "02139-4307",
            "line_1": "77 Massachusetts Avenue",
            "is_hq": true,
            "state": "Massachusetts"
          },
          "company_type": "EDUCATIONAL_INSTITUTION",
          "founded_year": 1861,
          "specialities": [
            "education",
            "science",
            "research",
            "engineering"
          ],
          "locations": [
            {
              "country": "US",
              "city": "Cambridge",
              "postal_code": "02139",
              "line_1": "Massachusetts Ave",
              "is_hq": true,
              "state": "Massachusetts"
            }
          ],
          "name": "Massachusetts Institute of Technology",
          "tagline": null,
          "universal_name_id": "mit",
          "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/35d64df1cce08965de8b857ecc88d2ff",
          "background_cover_image_url": null,
          "search_id": "1503",
          "similar_companies": [
            {
              "name": "MIT Sloan School of Management",
              "link": "https://www.linkedin.com/school/mitsloan/",
              "industry": "Higher Education",
              "location": null
            },
            {
              "name": "Harvard University",
              "link": "https://www.linkedin.com/school/harvard-university/",
              "industry": "Higher Education",
              "location": null
            }
          ],
          "affiliated_companies": [
            {
              "name": "LinkedIn",
              "link": "https://www.linkedin.com/company/linkedin",
              "industry": "Internet",
              "location": "Sunnyvale, California"
            }
          ],
          "updates": [
            {
              "article_link": "https://lnkd.in/gr7cb5by",
              "image": "https://assets.enrichlayer.com/ll/D5612AQHXKV_XhT0W_A/article-cover_image-shrink_720_1280/B56Zr1w1eSK4AI-/0/1765059814903?e=2147483647&v=beta&t=gKhTu-PogMfQzIvtwIqoJOlm6-05kg63OSE_UosVrrM",
              "posted_on": {
                "day": 30,
                "month": 9,
                "year": 2021
              },
              "text": "Introducing Personal Email Lookup API https://lnkd.in/gr7cb5by",
              "total_likes": 3
            }
          ],
          "follower_count": 539321,
          "meta": {
            "thin_profile": null,
            "last_updated": "2023-10-26T11:34:30Z"
          }
        }
      },
      "AcquiredCompany": {
        "type": "object",
        "properties": {
          "linkedin_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Company Profile URL of company that was involved"
          },
          "crunchbase_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Crunchbase Profile URL of company that was involved"
          },
          "announced_date": {
            "$ref": "#/components/schemas/Date",
            "nullable": true,
            "description": "Date by which this event was announced"
          },
          "price": {
            "type": "integer",
            "nullable": true,
            "description": "Price of acquisition"
          }
        },
        "example": {
          "linkedin_profile_url": "https://www.linkedin.com/company/apple",
          "crunchbase_profile_url": "https://www.crunchbase.com/organization/apple",
          "announced_date": {
            "day": 1,
            "month": 4,
            "year": 1976
          },
          "price": 300000000
        }
      },
      "Acquisitor": {
        "type": "object",
        "properties": {
          "linkedin_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Company Profile URL of company that was involved"
          },
          "crunchbase_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Crunchbase Profile URL of company that was involved"
          },
          "announced_date": {
            "$ref": "#/components/schemas/Date",
            "nullable": true,
            "description": "Date by which this event was announced"
          },
          "price": {
            "type": "integer",
            "nullable": true,
            "description": "Price of acquisition"
          }
        },
        "example": {
          "linkedin_profile_url": "https://www.linkedin.com/company/nvidia",
          "crunchbase_profile_url": "https://www.crunchbase.com/organization/nvidia",
          "announced_date": {
            "day": 6,
            "month": 3,
            "year": 2020
          },
          "price": 10000
        }
      },
      "Acquisition": {
        "type": "object",
        "properties": {
          "acquired": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AcquiredCompany"
            }
          },
          "acquired_by": {
            "$ref": "#/components/schemas/Acquisitor",
            "nullable": true
          }
        },
        "example": {
          "acquired": [
            {
              "linkedin_profile_url": "https://www.linkedin.com/company/apple",
              "crunchbase_profile_url": "https://www.crunchbase.com/organization/apple",
              "announced_date": {
                "day": 1,
                "month": 4,
                "year": 1976
              },
              "price": 300000000
            }
          ],
          "acquired_by": {
            "linkedin_profile_url": "https://www.linkedin.com/company/nvidia",
            "crunchbase_profile_url": "https://www.crunchbase.com/organization/nvidia",
            "announced_date": {
              "day": 6,
              "month": 3,
              "year": 2020
            },
            "price": 10000
          }
        }
      },
      "Exit": {
        "type": "object",
        "properties": {
          "linkedin_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Profile URL of the company that has exited"
          },
          "crunchbase_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Crunchbase Profile URL of the company that has exited"
          },
          "name": {
            "type": "string",
            "nullable": true,
            "description": "Name of the company"
          }
        },
        "example": {
          "linkedin_profile_url": "https://www.linkedin.com/company/motiondsp",
          "crunchbase_profile_url": "https://www.crunchbase.com/organization/motiondsp",
          "name": "MotionDSP"
        }
      },
      "CompanyDetails": {
        "type": "object",
        "properties": {
          "crunchbase_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Crunchbase Profile URL of the company"
          },
          "ipo_status": {
            "type": "string",
            "nullable": true,
            "description": "IPO status of the company"
          },
          "crunchbase_rank": {
            "type": "integer",
            "nullable": true,
            "description": "A measure of prominence of this company by Crunchbase"
          },
          "founding_date": {
            "$ref": "#/components/schemas/Date",
            "nullable": true,
            "description": "Date of founding"
          },
          "operating_status": {
            "type": "string",
            "nullable": true,
            "description": "Status of the company's operational status"
          },
          "company_type": {
            "type": "string",
            "nullable": true,
            "description": "Type of company"
          },
          "contact_email": {
            "type": "string",
            "nullable": true,
            "description": "General contact email of the company"
          },
          "phone_number": {
            "type": "string",
            "nullable": true,
            "description": "General contact number of the company"
          },
          "facebook_id": {
            "type": "string",
            "nullable": true,
            "description": "ID of the company's official Facebook account"
          },
          "twitter_id": {
            "type": "string",
            "nullable": true,
            "description": "ID of the company's official Twitter account"
          },
          "number_of_funding_rounds": {
            "type": "integer",
            "nullable": true,
            "description": "Total rounds of funding that this company has raised"
          },
          "total_funding_amount": {
            "type": "integer",
            "nullable": true,
            "description": "Total venture capital raised by this company"
          },
          "stock_symbol": {
            "type": "string",
            "nullable": true,
            "description": "Stock symbol of this public company"
          },
          "ipo_date": {
            "$ref": "#/components/schemas/Date",
            "nullable": true,
            "description": "The date by which this public company went public"
          },
          "number_of_lead_investors": {
            "type": "integer",
            "nullable": true,
            "description": "Total lead investors"
          },
          "number_of_investors": {
            "type": "integer",
            "nullable": true,
            "description": "Total investors"
          },
          "total_fund_raised": {
            "type": "integer",
            "nullable": true,
            "description": "The total amount of funds raised (by this VC firm) to be deployed as subsidiary investments (applicable only for VC firms)"
          },
          "number_of_investments": {
            "type": "integer",
            "nullable": true,
            "description": "Total investments made by this VC firm (applicable only for VC firms)"
          },
          "number_of_lead_investments": {
            "type": "integer",
            "nullable": true,
            "description": "Total investments that was led by this VC firm (applicable only for VC firms)"
          },
          "number_of_exits": {
            "type": "integer",
            "nullable": true,
            "description": "Total exits by this VC (applicable only for VC firms)"
          },
          "number_of_acquisitions": {
            "type": "integer",
            "nullable": true,
            "description": "Total companies acquired by this company"
          }
        },
        "example": {
          "crunchbase_profile_url": "https://www.crunchbase.com/organization/nvidia",
          "ipo_status": "Public",
          "crunchbase_rank": 13,
          "founding_date": {
            "day": 1,
            "month": 1,
            "year": 2000
          },
          "operating_status": "Active",
          "company_type": "For Profit",
          "contact_email": "info@nvidia.com",
          "phone_number": "(140) 848-6200",
          "facebook_id": "NVIDIA.IN",
          "twitter_id": "nvidia",
          "number_of_funding_rounds": 3,
          "total_funding_amount": 4000000,
          "stock_symbol": "NASDAQ:NVDA",
          "ipo_date": {
            "day": 1,
            "month": 1,
            "year": 2000
          },
          "number_of_lead_investors": 3,
          "number_of_investors": 4,
          "total_fund_raised": 1000,
          "number_of_investments": 50,
          "number_of_lead_investments": 3,
          "number_of_exits": 7,
          "number_of_acquisitions": 2
        }
      },
      "Investor": {
        "type": "object",
        "properties": {
          "linkedin_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Profile URL of investor"
          },
          "name": {
            "type": "string",
            "nullable": true,
            "description": "Name of investor"
          },
          "type": {
            "type": "string",
            "nullable": true,
            "description": "Type of investor"
          }
        },
        "example": {
          "linkedin_profile_url": "https://linkedin.com/company/darpa",
          "name": "DARPA",
          "type": "organization"
        }
      },
      "Funding": {
        "type": "object",
        "properties": {
          "funding_type": {
            "type": "string",
            "nullable": true,
            "description": "Type of funding"
          },
          "money_raised": {
            "type": "integer",
            "nullable": true,
            "description": "Amount of money raised"
          },
          "announced_date": {
            "$ref": "#/components/schemas/Date",
            "nullable": true,
            "description": "Date of announcement"
          },
          "number_of_investor": {
            "type": "integer",
            "nullable": true,
            "description": "Number of investors in this round"
          },
          "investor_list": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Investor"
            },
            "nullable": true
          }
        },
        "example": {
          "funding_type": "Grant",
          "money_raised": 25000000,
          "announced_date": {
            "day": 1,
            "month": 1,
            "year": 2001
          },
          "number_of_investor": 1,
          "investor_list": [
            {
              "linkedin_profile_url": "https://linkedin.com/company/darpa",
              "name": "DARPA",
              "type": "organization"
            }
          ]
        }
      },
      "LinkedinCompany": {
        "type": "object",
        "properties": {
          "linkedin_internal_id": {
            "type": "string",
            "description": "Internal and immutable ID of this Company profile."
          },
          "description": {
            "type": "string",
            "nullable": true,
            "description": "A textual description of the company."
          },
          "website": {
            "type": "string",
            "nullable": true,
            "description": "The URL of the company's website."
          },
          "industry": {
            "type": "string",
            "nullable": true,
            "description": "The `industry` attribute, found in a Company            profile, describes the industry in which the company operates.            The value of this attribute is an enumerator. [See the full list of possible values for this attribute](/docs/guides/industry-values)."
          },
          "company_size": {
            "type": "array",
            "items": {
              "oneOf": [
                {
                  "type": "integer",
                  "nullable": true
                },
                {
                  "type": "integer",
                  "nullable": true
                }
              ]
            },
            "minItems": 2,
            "maxItems": 2,
            "description": "Sequenced range of company head count"
          },
          "company_size_on_linkedin": {
            "type": "integer",
            "description": "The size of the company."
          },
          "hq": {
            "$ref": "#/components/schemas/CompanyLocation",
            "nullable": true
          },
          "company_type": {
            "$ref": "#/components/schemas/CompanyType",
            "nullable": true,
            "description": "Possible values:\n`EDUCATIONAL`: Educational Institution\n`GOVERNMENT_AGENCY`: Government Agency\n`NON_PROFIT` : Nonprofit\n`PARTNERSHIP` : Partnership\n`PRIVATELY_HELD`: Privately Held\n`PUBLIC_COMPANY`: Public Company\n`SELF_EMPLOYED`: Self-Employed\n`SELF_OWNED`: Sole Proprietorship"
          },
          "founded_year": {
            "type": "integer",
            "nullable": true,
            "description": "The year the company was founded."
          },
          "specialities": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "A list of specialities."
          },
          "locations": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CompanyLocation"
            }
          },
          "name": {
            "type": "string",
            "nullable": true,
            "description": "The name of the company."
          },
          "tagline": {
            "type": "string",
            "nullable": true,
            "description": "A short, catchy phrase that represents                the company's mission or brand."
          },
          "universal_name_id": {
            "type": "string",
            "nullable": true,
            "description": "A unique numerical identifier for                the company."
          },
          "profile_pic_url": {
            "type": "string",
            "nullable": true,
            "description": "The URL of the company's profile picture."
          },
          "background_cover_image_url": {
            "type": "string",
            "nullable": true,
            "description": "The URL of the company's background cover image."
          },
          "search_id": {
            "type": "string",
            "description": "Unique identifier used for search operations."
          },
          "similar_companies": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/SimilarCompany"
            }
          },
          "affiliated_companies": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AffiliatedCompany"
            }
          },
          "updates": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CompanyUpdate"
            },
            "description": "A list of post updates made by the company. This field is not guaranteed to be returned. Do not rely on this attribute in production."
          },
          "follower_count": {
            "type": "integer",
            "nullable": true,
            "description": "The number of followers                the company has."
          },
          "acquisitions": {
            "$ref": "#/components/schemas/Acquisition",
            "nullable": true
          },
          "exit_data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Exit"
            },
            "nullable": true
          },
          "extra": {
            "$ref": "#/components/schemas/CompanyDetails",
            "nullable": true,
            "description": "Company extra when `extra=include`"
          },
          "funding_data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Funding"
            },
            "description": "Company Funding data when `funding_data=include`"
          },
          "categories": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true,
            "description": "The `categories` attribute is fetched from the                 company's Crunchbase profile. Values for this attribute are                 free-form text, and there is no exhaustive list of categories.                Consider the categories attribute as \"hints\" regarding the                 products or services offered by the company."
          },
          "customer_list": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "meta": {
            "$ref": "#/components/schemas/ProfileMeta",
            "description": "Profile metadata."
          }
        },
        "example": {
          "linkedin_internal_id": "1441",
          "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.\nCheck out our career opportunities at careers.google.com.",
          "website": "https://goo.gle/3m1IN7m",
          "industry": "Software Development",
          "company_size": [
            10001,
            null
          ],
          "company_size_on_linkedin": 319856,
          "hq": {
            "country": "US",
            "city": "Mountain View",
            "postal_code": "94043",
            "line_1": "1600 Amphitheatre Parkway",
            "is_hq": true,
            "state": "CA"
          },
          "company_type": "PUBLIC_COMPANY",
          "founded_year": null,
          "specialities": [
            "search",
            "ads"
          ],
          "locations": [
            {
              "country": "US",
              "city": "Mountain View",
              "postal_code": "94043",
              "line_1": "1600 Amphitheatre Parkway",
              "is_hq": true,
              "state": "CA"
            },
            {
              "country": "US",
              "city": "New York",
              "postal_code": "10011",
              "line_1": "111 8th Ave",
              "is_hq": null,
              "state": "NY"
            }
          ],
          "name": "Google",
          "tagline": "Think Different - But Not Too Different",
          "universal_name_id": "google",
          "profile_pic_url": "https://assets.enrichlayer.com/pp/...",
          "background_cover_image_url": "https://assets.enrichlayer.com/pp/...",
          "search_id": "1441",
          "similar_companies": [
            {
              "name": "Amazon",
              "link": "https://www.linkedin.com/company/amazon",
              "industry": "Software Development",
              "location": "Seattle, WA"
            },
            {
              "name": "Microsoft",
              "link": "https://www.linkedin.com/company/microsoft",
              "industry": "Software Development",
              "location": "Redmond, Washington"
            }
          ],
          "affiliated_companies": [
            {
              "name": "YouTube",
              "link": "https://www.linkedin.com/company/youtube",
              "industry": "Software Development",
              "location": "San Bruno, CA"
            },
            {
              "name": "Google Cloud",
              "link": "https://www.linkedin.com/showcase/google-cloud",
              "industry": "Software Development",
              "location": "Mountain View, California"
            }
          ],
          "updates": [
            {
              "article_link": null,
              "image": "https://assets.enrichlayer.com/pp/profilepic/57ef9922f8484ada3bd6001d1c68afa1",
              "posted_on": {
                "day": 13,
                "month": 9,
                "year": 2022
              },
              "text": "Want to kick start your #LifeAtGoogle but not sure where to begin? Explore our Build Your Future site, where you can learn about developmental programs, learn tips for future interviews, sign up for informational events, and even hear real stories from Googlers who’ve been where you are now. Get started → https://bit.ly/3SKPzQB",
              "total_likes": 4267
            },
            {
              "article_link": null,
              "image": "https://assets.enrichlayer.com/pp/profilepic/57ef9922f8484ada3bd6001d1c68afa1",
              "posted_on": null,
              "text": "Ariana, welcome to Google. Here’s to a year full of growth, learning, and experiences at #LifeAtGoogle! 🎉",
              "total_likes": 397
            }
          ],
          "follower_count": 27472792,
          "acquisitions": {
            "acquired": [
              {
                "linkedin_profile_url": "https://www.linkedin.com/company/apple",
                "crunchbase_profile_url": "https://www.crunchbase.com/organization/apple",
                "announced_date": {
                  "day": 1,
                  "month": 4,
                  "year": 1976
                },
                "price": 300000000
              }
            ],
            "acquired_by": {
              "linkedin_profile_url": "https://www.linkedin.com/company/nvidia",
              "crunchbase_profile_url": "https://www.crunchbase.com/organization/nvidia",
              "announced_date": {
                "day": 6,
                "month": 3,
                "year": 2020
              },
              "price": 10000
            }
          },
          "exit_data": [
            {
              "linkedin_profile_url": "https://www.linkedin.com/company/motiondsp",
              "crunchbase_profile_url": "https://www.crunchbase.com/organization/motiondsp",
              "name": "MotionDSP"
            }
          ],
          "extra": {
            "crunchbase_profile_url": "https://www.crunchbase.com/organization/nvidia",
            "ipo_status": "Public",
            "crunchbase_rank": 13,
            "founding_date": {
              "day": 1,
              "month": 1,
              "year": 2000
            },
            "operating_status": "Active",
            "company_type": "For Profit",
            "contact_email": "info@nvidia.com",
            "phone_number": "(140) 848-6200",
            "facebook_id": "NVIDIA.IN",
            "twitter_id": "nvidia",
            "number_of_funding_rounds": 3,
            "total_funding_amount": 4000000,
            "stock_symbol": "NASDAQ:NVDA",
            "ipo_date": {
              "day": 1,
              "month": 1,
              "year": 2000
            },
            "number_of_lead_investors": 3,
            "number_of_investors": 4,
            "total_fund_raised": 1000,
            "number_of_investments": 50,
            "number_of_lead_investments": 3,
            "number_of_exits": 7,
            "number_of_acquisitions": 2
          },
          "funding_data": [
            {
              "funding_type": "Grant",
              "money_raised": 25000000,
              "announced_date": {
                "day": 1,
                "month": 1,
                "year": 2001
              },
              "number_of_investor": 1,
              "investor_list": [
                {
                  "linkedin_profile_url": "https://linkedin.com/company/darpa",
                  "name": "DARPA",
                  "type": "organization"
                }
              ]
            }
          ],
          "categories": [
            "artificial-intelligence",
            "virtual-reality"
          ],
          "meta": {
            "thin_profile": null,
            "last_updated": "2023-10-26T11:34:30Z"
          }
        }
      },
      "Experience": {
        "type": "object",
        "properties": {
          "starts_at": {
            "$ref": "#/components/schemas/Date",
            "nullable": true
          },
          "ends_at": {
            "$ref": "#/components/schemas/Date",
            "nullable": true
          },
          "company": {
            "type": "string",
            "nullable": true,
            "description": "The company's display name."
          },
          "company_linkedin_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "The company's profile URL. If present, could be used with [Company Profile Endpoint](#company-api-company-profile-endpoint) for more info."
          },
          "company_facebook_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "The company's profile URL on Facebook."
          },
          "title": {
            "type": "string",
            "nullable": true
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "location": {
            "type": "string",
            "nullable": true
          },
          "logo_url": {
            "type": "string",
            "nullable": true,
            "description": "URL of the logo of the organisation."
          }
        },
        "example": {
          "starts_at": {
            "day": 1,
            "month": 2,
            "year": 2014
          },
          "ends_at": null,
          "company": "Microsoft",
          "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
          "company_facebook_profile_url": null,
          "title": "Chairman and CEO",
          "description": null,
          "location": "Greater Seattle Area",
          "logo_url": "https://assets.enrichlayer.com/ll/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY"
        }
      },
      "Education": {
        "type": "object",
        "properties": {
          "starts_at": {
            "$ref": "#/components/schemas/Date",
            "nullable": true
          },
          "ends_at": {
            "$ref": "#/components/schemas/Date",
            "nullable": true
          },
          "field_of_study": {
            "type": "string",
            "nullable": true,
            "description": "The field of study that the user majored in."
          },
          "degree_name": {
            "type": "string",
            "nullable": true,
            "description": "The degree that the user obtained."
          },
          "school": {
            "type": "string",
            "nullable": true,
            "description": "The school that the user attended."
          },
          "school_linkedin_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "The school's profile URL. If present, could be used with [School Profile Endpoint](#school-api-school-profile-endpoint) for more info."
          },
          "school_facebook_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "The school's profile URL on Facebook."
          },
          "description": {
            "type": "string",
            "nullable": true,
            "description": "Description of the education."
          },
          "logo_url": {
            "type": "string",
            "nullable": true,
            "description": "URL of the logo of the organisation."
          },
          "grade": {
            "type": "string",
            "nullable": true,
            "description": "The grade that the user obtained."
          },
          "activities_and_societies": {
            "type": "string",
            "nullable": true,
            "description": "The activities and societies that the user participated in."
          }
        },
        "example": {
          "starts_at": {
            "day": 1,
            "month": 1,
            "year": 1994
          },
          "ends_at": {
            "day": 31,
            "month": 12,
            "year": 1996
          },
          "field_of_study": null,
          "degree_name": null,
          "school": "The University of Chicago Booth School of Business",
          "school_linkedin_profile_url": "https://www.linkedin.com/company/universityofchicagoboothschoolofbusiness",
          "school_facebook_profile_url": null,
          "description": null,
          "logo_url": "https://assets.enrichlayer.com/pp/profilepic/88fa467a62fbfc5325394253f14e8700",
          "grade": null,
          "activities_and_societies": null
        }
      },
      "Language": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "nullable": true,
            "description": "Name of the language."
          },
          "proficiency": {
            "type": "string",
            "nullable": true,
            "description": "Proficiency level of the user in the language.\nPossible values:\n- `ELEMENTARY` (Elementary proficiency)\n- `LIMITED_WORKING` (Limited working proficiency)\n- `PROFESSIONAL_WORKING` (Professional working proficiency)\n- `FULL_PROFESSIONAL` (Full professional proficiency)\n- `NATIVE_OR_BILINGUAL` (Native or bilingual proficiency)"
          }
        },
        "example": {
          "name": "English",
          "proficiency": "NATIVE_OR_BILINGUAL"
        }
      },
      "AccomplishmentOrg": {
        "type": "object",
        "properties": {
          "starts_at": {
            "$ref": "#/components/schemas/Date",
            "nullable": true
          },
          "ends_at": {
            "$ref": "#/components/schemas/Date",
            "nullable": true
          },
          "org_name": {
            "type": "string",
            "nullable": true
          },
          "title": {
            "type": "string",
            "nullable": true
          },
          "description": {
            "type": "string",
            "nullable": true
          }
        },
        "example": {
          "starts_at": {
            "day": 1,
            "month": 1,
            "year": 2012
          },
          "ends_at": {
            "day": 1,
            "month": 8,
            "year": 2016
          },
          "org_name": "Microsoft",
          "title": "Software Developer",
          "description": null
        }
      },
      "Publication": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "nullable": true,
            "description": "Name of the Publication."
          },
          "publisher": {
            "type": "string",
            "nullable": true,
            "description": "The publishing organisation body."
          },
          "published_on": {
            "$ref": "#/components/schemas/Date",
            "nullable": true,
            "description": "Date of Publication."
          },
          "description": {
            "type": "string",
            "nullable": true,
            "description": "Description of the Publication."
          },
          "url": {
            "type": "string",
            "nullable": true,
            "description": "URL of the Publication."
          }
        },
        "example": {
          "name": "Nobel Peace Prize",
          "publisher": "Acme Corp",
          "published_on": {
            "day": 1,
            "month": 1,
            "year": 1970
          },
          "description": "Comprehensive analysis of strategic decision-making in competitive environments.",
          "url": "https://doi.org/10.1000/example"
        }
      },
      "HonourAward": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "nullable": true,
            "description": "Title of the honour/award."
          },
          "issuer": {
            "type": "string",
            "nullable": true,
            "description": "The organisation body issuing this honour/award."
          },
          "issued_on": {
            "$ref": "#/components/schemas/Date",
            "nullable": true,
            "description": "Date that this honour/awared was issued."
          },
          "description": {
            "type": "string",
            "nullable": true,
            "description": "Description of the honour/award."
          }
        },
        "example": {
          "title": "Nobel Peace Prize",
          "issuer": "Acme Corp",
          "issued_on": {
            "day": 1,
            "month": 1,
            "year": 1970
          },
          "description": "Awarded for outstanding contributions to the field and demonstrated leadership excellence."
        }
      },
      "Patent": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "nullable": true,
            "description": "Title of the patent."
          },
          "issuer": {
            "type": "string",
            "nullable": true,
            "description": "The organisation body that issued the patent."
          },
          "issued_on": {
            "$ref": "#/components/schemas/Date",
            "nullable": true,
            "description": "Date of patent issuance."
          },
          "description": {
            "type": "string",
            "nullable": true,
            "description": "Description of the patent."
          },
          "application_number": {
            "type": "string",
            "nullable": true,
            "description": "Numerical representation that identifies the patent."
          },
          "patent_number": {
            "type": "string",
            "nullable": true,
            "description": "Application number of the patent."
          },
          "url": {
            "type": "string",
            "nullable": true
          }
        },
        "example": {
          "title": "The art of war",
          "issuer": "Acme Corp",
          "issued_on": {
            "day": 1,
            "month": 1,
            "year": 1970
          },
          "description": "A method and system for optimizing resource allocation in distributed computing environments.",
          "application_number": "123",
          "patent_number": "123",
          "url": null
        }
      },
      "Course": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "nullable": true,
            "description": "Name of the course"
          },
          "number": {
            "type": "string",
            "nullable": true,
            "description": "The numerical representation of the course"
          }
        },
        "example": {
          "name": "The course about ABCs",
          "number": "123"
        }
      },
      "Project": {
        "type": "object",
        "properties": {
          "starts_at": {
            "$ref": "#/components/schemas/Date",
            "nullable": true
          },
          "ends_at": {
            "$ref": "#/components/schemas/Date",
            "nullable": true
          },
          "title": {
            "type": "string",
            "nullable": true,
            "description": "Name of the project that has been or is currently being worked on."
          },
          "description": {
            "type": "string",
            "nullable": true,
            "description": "Description of the project."
          },
          "url": {
            "type": "string",
            "nullable": true,
            "description": "A web location related to the project."
          }
        },
        "example": {
          "starts_at": {
            "day": 1,
            "month": 1,
            "year": 2017
          },
          "ends_at": null,
          "title": "Hit Refresh",
          "description": "Book about the transformation of Microsoft under new leadership and the role of empathy and technology in shaping the future.",
          "url": "https://news.microsoft.com/hitrefresh/"
        }
      },
      "TestScore": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "nullable": true,
            "description": "Title of the course for which test score was derived from."
          },
          "score": {
            "type": "string",
            "nullable": true,
            "description": "Test score"
          },
          "date_on": {
            "$ref": "#/components/schemas/Date",
            "nullable": true,
            "description": "Date of test was assesed."
          },
          "description": {
            "type": "string",
            "nullable": true,
            "description": "Description of the test score."
          }
        },
        "example": {
          "name": "CS1101S",
          "score": "A",
          "date_on": {
            "day": 1,
            "month": 1,
            "year": 2010
          },
          "description": "Nailed it without studying."
        }
      },
      "VolunteeringExperience": {
        "type": "object",
        "properties": {
          "starts_at": {
            "$ref": "#/components/schemas/Date",
            "nullable": true
          },
          "ends_at": {
            "$ref": "#/components/schemas/Date",
            "nullable": true
          },
          "title": {
            "type": "string",
            "nullable": true,
            "description": "Name of volunteer activity."
          },
          "cause": {
            "type": "string",
            "nullable": true
          },
          "company": {
            "type": "string",
            "nullable": true,
            "description": "The company's display name."
          },
          "company_linkedin_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "The company's profile URL. If present, could be used with [Company Profile Endpoint](#company-api-company-profile-endpoint) for more info."
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "logo_url": {
            "type": "string",
            "nullable": true,
            "description": "URL of the logo of the organisation."
          }
        },
        "example": {
          "starts_at": {
            "day": 1,
            "month": 1,
            "year": 2012
          },
          "ends_at": {
            "day": 1,
            "month": 8,
            "year": 2016
          },
          "title": "Surveyor",
          "cause": "To help the world",
          "company": "Microsoft",
          "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
          "description": null,
          "logo_url": null
        }
      },
      "Certification": {
        "type": "object",
        "properties": {
          "starts_at": {
            "$ref": "#/components/schemas/Date",
            "nullable": true
          },
          "ends_at": {
            "$ref": "#/components/schemas/Date",
            "nullable": true
          },
          "name": {
            "type": "string",
            "nullable": true,
            "description": "Name of the course or program."
          },
          "license_number": {
            "type": "string",
            "nullable": true
          },
          "display_source": {
            "type": "string",
            "nullable": true
          },
          "authority": {
            "type": "string",
            "nullable": true,
            "description": "The organisation body issuing this certificate."
          },
          "url": {
            "type": "string",
            "nullable": true
          }
        },
        "example": {
          "starts_at": null,
          "ends_at": null,
          "name": null,
          "license_number": null,
          "display_source": null,
          "authority": null,
          "url": null
        }
      },
      "PeopleAlsoViewed": {
        "type": "object",
        "properties": {
          "link": {
            "type": "string",
            "nullable": true,
            "description": "URL of the profile. Useable with [Person profile endpoint](#people-api-person-profile-endpoint)"
          },
          "name": {
            "type": "string",
            "nullable": true
          },
          "summary": {
            "type": "string",
            "nullable": true
          },
          "location": {
            "type": "string",
            "nullable": true
          }
        },
        "example": {
          "link": "https://www.linkedin.com/in/janesmith",
          "name": "Jane Smith",
          "summary": "Software Engineer at Google",
          "location": "San Francisco, United States"
        }
      },
      "Activity": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "nullable": true
          },
          "link": {
            "type": "string",
            "nullable": true
          },
          "activity_status": {
            "type": "string",
            "nullable": true
          }
        },
        "example": {
          "title": "Microsoft has been positioned as a Leader for the fourteenth consecutive year in the Gartner 2021 Magic Quadrant for Analytics and Business…",
          "link": null,
          "activity_status": null
        }
      },
      "SimilarProfile": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "nullable": true
          },
          "link": {
            "type": "string",
            "nullable": true
          },
          "summary": {
            "type": "string",
            "nullable": true
          },
          "location": {
            "type": "string",
            "nullable": true
          }
        },
        "example": {
          "name": "Kevin O’Leary",
          "link": "https://www.linkedin.com/in/kevinolearytv",
          "summary": "‘Chairman, O’’Leary Ventures and Beanstox’",
          "location": "West Palm Beach"
        }
      },
      "Article": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "nullable": true
          },
          "link": {
            "type": "string",
            "nullable": true
          },
          "published_date": {
            "$ref": "#/components/schemas/Date",
            "nullable": true
          },
          "author": {
            "type": "string",
            "nullable": true
          },
          "image_url": {
            "type": "string",
            "nullable": true
          }
        },
        "example": {
          "title": "Manufacturing opportunity",
          "link": "https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates/",
          "published_date": {
            "day": 27,
            "month": 11,
            "year": 2019
          },
          "author": "Bill Gates",
          "image_url": "https://assets.enrichlayer.com/ll/D5612AQE-eZUAKTbmyQ/article-cover_image-shrink_720_1280/B56Zs5D6pMKIAI-/0/1766188887129?e=2147483647&v=beta&t=KUFGzvOCeBOeoGDNEwYbpS7AvFn0d-iQN-iKoHtXs9Q"
        }
      },
      "PersonGroup": {
        "type": "object",
        "properties": {
          "profile_pic_url": {
            "type": "string",
            "nullable": true,
            "description": "The URL to the profile picture of this Group"
          },
          "name": {
            "type": "string",
            "nullable": true,
            "description": "Name of group for which this user is in"
          },
          "url": {
            "type": "string",
            "nullable": true,
            "description": "URL to the Group"
          }
        },
        "example": {
          "profile_pic_url": "https://assets.enrichlayer.com/ll/D560BAQFRMYiQN7-2kA/company-logo_100_100/B56ZoI4SGPI0AQ-/0/1761085563539/breakthrough_energy_logo?e=2147483647&v=beta&t=J6RbEvs17fl1uiEaXQm0hmXy4imx36mV_Hu80JcR1DE",
          "name": "Hadoop Users",
          "url": "https://www.linkedin.com/groups/988957"
        }
      },
      "InferredSalary": {
        "type": "object",
        "properties": {
          "min": {
            "type": "number",
            "nullable": true
          },
          "max": {
            "type": "number",
            "nullable": true
          }
        },
        "example": {
          "min": 35000,
          "max": 45000
        }
      },
      "PersonExtra": {
        "type": "object",
        "properties": {
          "github_profile_id": {
            "type": "string",
            "nullable": true,
            "description": "This profile's GitHub account."
          },
          "facebook_profile_id": {
            "type": "string",
            "nullable": true,
            "description": "This profile's Facebook account."
          },
          "twitter_profile_id": {
            "type": "string",
            "nullable": true,
            "description": "This profile's twitter account."
          },
          "website": {
            "type": "string",
            "nullable": true,
            "description": "This account's website listed on his profile."
          }
        },
        "example": {
          "github_profile_id": "github-username",
          "facebook_profile_id": "facebook-username",
          "twitter_profile_id": "twitter-username",
          "website": "https://enrichlayer.com"
        }
      },
      "PersonEndpointResponse": {
        "type": "object",
        "properties": {
          "public_identifier": {
            "type": "string",
            "nullable": true,
            "description": "The vanity identifier of the profile."
          },
          "profile_pic_url": {
            "type": "string",
            "nullable": true,
            "description": "A link to the user's profile picture."
          },
          "background_cover_image_url": {
            "type": "string",
            "nullable": true,
            "description": "A background cover picture"
          },
          "first_name": {
            "type": "string",
            "nullable": true,
            "description": "First name of the user."
          },
          "last_name": {
            "type": "string",
            "nullable": true,
            "description": "Last name of the user."
          },
          "full_name": {
            "type": "string",
            "nullable": true,
            "description": "Full name of the user (`first_name` + `last_name`)"
          },
          "follower_count": {
            "type": "integer",
            "nullable": true,
            "description": "Follower count for this profile"
          },
          "occupation": {
            "type": "string",
            "nullable": true,
            "description": "The title and company name of the user's current employment."
          },
          "headline": {
            "type": "string",
            "nullable": true,
            "description": "The tagline written by the user for his profile."
          },
          "summary": {
            "type": "string",
            "nullable": true,
            "description": "A blurb (longer than the tagline) written by the user for his profile."
          },
          "country": {
            "type": "string",
            "nullable": true,
            "description": "The user's country of residence depicted by a 2-letter country code (ISO 3166-1 alpha-2)."
          },
          "country_full_name": {
            "type": "string",
            "nullable": true,
            "description": "The user's country of residence, in English words."
          },
          "city": {
            "type": "string",
            "nullable": true,
            "description": "The city that the user is living at."
          },
          "state": {
            "type": "string",
            "nullable": true,
            "description": "The state that the user is living at."
          },
          "experiences": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Experience"
            },
            "description": "The user's list of historic work experiences. This data may be partial due to public access limitations on source platforms."
          },
          "education": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Education"
            },
            "description": "The user's list of education background. This data may be partial due to public access limitations on source platforms."
          },
          "languages": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "A list of languages that the user claims to be familiar with, and has added to his/her profile. Do note that we do not have the proficiency level as that data point is not available on a profile."
          },
          "languages_and_proficiencies": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Language"
            },
            "description": "The user's list of languages along with their proficiency level."
          },
          "accomplishment_organisations": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AccomplishmentOrg"
            },
            "description": "List of noteworthy organizations that this user is part of."
          },
          "accomplishment_publications": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Publication"
            },
            "description": "List of noteworthy publications that this user has partook in."
          },
          "accomplishment_honors_awards": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/HonourAward"
            },
            "description": "List of noteworthy honours and awards that this user has won."
          },
          "accomplishment_patents": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Patent"
            },
            "description": "List of noteworthy patents won by this user."
          },
          "accomplishment_courses": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Course"
            },
            "description": "List of noteworthy courses partook by this user."
          },
          "accomplishment_projects": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Project"
            },
            "description": "List of noteworthy projects undertaken by this user."
          },
          "accomplishment_test_scores": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TestScore"
            },
            "description": "List of noteworthy test scores accomplished by this user."
          },
          "volunteer_work": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/VolunteeringExperience"
            },
            "description": "List of historic volunteer work experiences."
          },
          "certifications": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Certification"
            },
            "description": "List of noteworthy certifications accomplished by this user."
          },
          "connections": {
            "type": "integer",
            "nullable": true,
            "description": "Total *count* of connections."
          },
          "people_also_viewed": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PeopleAlsoViewed"
            },
            "description": "A list of other profiles closely related to this user."
          },
          "recommendations": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "List of recommendations made by other users about this profile."
          },
          "activities": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Activity"
            },
            "description": "A list of status activities. This field is not guaranteed to be returned. Do not rely on this attribute in production."
          },
          "similarly_named_profiles": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/SimilarProfile"
            },
            "description": "A list of other profiles with similar names."
          },
          "articles": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Article"
            },
            "description": "A list of content-based articles posted by this user. This field is not guaranteed to be returned. Do not rely on this attribute in production."
          },
          "groups": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PersonGroup"
            },
            "deprecated": true,
            "description": "A list of groups that this user is a part of."
          },
          "skills": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "deprecated": true,
            "description": "A list of keyword-based skills that this user boasts of on his profile."
          },
          "inferred_salary": {
            "$ref": "#/components/schemas/InferredSalary",
            "nullable": true,
            "deprecated": true,
            "description": "A salary range inferred from the user's current job title and company."
          },
          "gender": {
            "type": "string",
            "nullable": true,
            "deprecated": true,
            "description": "Gender of the user."
          },
          "birth_date": {
            "$ref": "#/components/schemas/Date",
            "nullable": true,
            "description": "Birth date of the user."
          },
          "industry": {
            "type": "string",
            "nullable": true,
            "description": "Industry that the user works in."
          },
          "extra": {
            "$ref": "#/components/schemas/PersonExtra",
            "nullable": true,
            "description": "A bundle of extra data on this user."
          },
          "interests": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "A list of interests that the user has."
          },
          "personal_emails": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "A list of personal emails associated with this user."
          },
          "personal_numbers": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "A list of personal mobile phone numbers associated with this user."
          },
          "meta": {
            "$ref": "#/components/schemas/ProfileMeta",
            "description": "Profile metadata."
          }
        },
        "example": {
          "public_identifier": "satyanadella",
          "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/7d369850c9fe8c35e78a6a50c75334f5",
          "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/fe878f911fecd238e169a23b12103b0e",
          "first_name": "Satya",
          "last_name": "Nadella",
          "full_name": "Satya Nadella",
          "follower_count": 11888127,
          "occupation": "Chairman and CEO at Microsoft",
          "headline": "Chairman and CEO at Microsoft",
          "summary": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every organization on the planet to achieve more.",
          "country": "US",
          "country_full_name": "United States of America",
          "city": "Redmond",
          "state": "Washington",
          "experiences": [
            {
              "starts_at": {
                "day": 1,
                "month": 2,
                "year": 2014
              },
              "ends_at": null,
              "company": "Microsoft",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
              "company_facebook_profile_url": null,
              "title": "Chairman and CEO",
              "description": null,
              "location": "Greater Seattle Area",
              "logo_url": "https://assets.enrichlayer.com/ll/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY"
            },
            {
              "starts_at": {
                "day": 1,
                "month": 1,
                "year": 2018
              },
              "ends_at": null,
              "company": "University of Chicago",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/uchicago",
              "company_facebook_profile_url": null,
              "title": "Member Board Of Trustees",
              "description": null,
              "location": null,
              "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f40c5f31ef246aeb1000ffb4e40f2991"
            },
            {
              "starts_at": {
                "day": 1,
                "month": 1,
                "year": 2017
              },
              "ends_at": {
                "day": 31,
                "month": 12,
                "year": 2024
              },
              "company": "Starbucks",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/starbucks",
              "company_facebook_profile_url": null,
              "title": "Board Member",
              "description": null,
              "location": null,
              "logo_url": "https://assets.enrichlayer.com/ll/C4D0BAQEQxk9y2rk7Hw/company-logo_100_100/company-logo_100_100/0/1631316692276?e=2147483647&v=beta&t=itdoVXP3gnqtQ7Grar4B3YoPyw-Ors9bKMZlZpb0QcY"
            }
          ],
          "education": [
            {
              "starts_at": {
                "day": 1,
                "month": 1,
                "year": 1994
              },
              "ends_at": {
                "day": 31,
                "month": 12,
                "year": 1996
              },
              "field_of_study": null,
              "degree_name": null,
              "school": "The University of Chicago Booth School of Business",
              "school_linkedin_profile_url": "https://www.linkedin.com/company/universityofchicagoboothschoolofbusiness",
              "school_facebook_profile_url": null,
              "description": null,
              "logo_url": "https://assets.enrichlayer.com/pp/profilepic/88fa467a62fbfc5325394253f14e8700",
              "grade": null,
              "activities_and_societies": null
            },
            {
              "starts_at": {
                "day": null,
                "month": null,
                "year": null
              },
              "ends_at": null,
              "field_of_study": "Electrical Engineering",
              "degree_name": "Bachelor’s Degree",
              "school": "Manipal Institute of Technology, Manipal",
              "school_linkedin_profile_url": "https://www.linkedin.com/company/manipal-institute-of-technology",
              "school_facebook_profile_url": null,
              "description": null,
              "logo_url": "https://assets.enrichlayer.com/pp/profilepic/2aef6f72c73e3b40dbd56163897bdc04",
              "grade": null,
              "activities_and_societies": null
            },
            {
              "starts_at": {
                "day": null,
                "month": null,
                "year": null
              },
              "ends_at": null,
              "field_of_study": "Computer Science",
              "degree_name": "Master’s Degree",
              "school": "University of Wisconsin-Milwaukee",
              "school_linkedin_profile_url": "https://www.linkedin.com/company/uwmilwaukee",
              "school_facebook_profile_url": null,
              "description": null,
              "logo_url": "https://assets.enrichlayer.com/pp/profilepic/7916094135030c5846f34230e03dbaa2",
              "grade": null,
              "activities_and_societies": null
            }
          ],
          "accomplishment_organisations": [],
          "accomplishment_publications": [],
          "accomplishment_honors_awards": [],
          "accomplishment_patents": [],
          "accomplishment_courses": [],
          "accomplishment_projects": [],
          "accomplishment_test_scores": [],
          "volunteer_work": [],
          "certifications": [],
          "connections": 500,
          "people_also_viewed": [
            {
              "link": "https://www.linkedin.com/in/kevinolearytv",
              "name": "Kevin O'Leary",
              "summary": "Chairman, O’Leary Ventures and Beanstox",
              "location": "West Palm Beach"
            },
            {
              "link": "https://www.linkedin.com/in/aaronmartinfc",
              "name": "Aaron Martin",
              "summary": "Vice President Healthcare at Amazon",
              "location": "Seattle"
            },
            {
              "link": "https://www.linkedin.com/in/guthriescott",
              "name": "Scott Guthrie",
              "summary": "Executive Vice President at Microsoft",
              "location": "Bellevue"
            },
            {
              "link": "https://www.linkedin.com/in/toufisaliba",
              "name": "Toufi Saliba",
              "summary": "Author TODA/IP  .  | . CEO HyperCycle.AI  .  | . Chair - International Protocols for AI Security IEEE",
              "location": "San Francisco"
            },
            {
              "link": "https://www.linkedin.com/in/rajeshgopinathan",
              "name": "Rajesh Gopinathan",
              "summary": null,
              "location": "Mumbai"
            }
          ],
          "recommendations": [],
          "activities": [
            {
              "title": "Microsoft has been positioned as a Leader for the fourteenth consecutive year in the Gartner 2021 Magic Quadrant for Analytics and Business…",
              "link": null,
              "activity_status": null
            },
            {
              "title": "On March 17, we’re trying something we’ve never done before: Microsoft will host #Include2021, a free, global, digital event focused on diversity &…",
              "link": null,
              "activity_status": null
            },
            {
              "title": "I talked to Bill Gates about his important new book, which provides a framework to reduce our world’s greenhouse gas emissions to zero, including…",
              "link": null,
              "activity_status": null
            }
          ],
          "similarly_named_profiles": [],
          "articles": [],
          "groups": [],
          "meta": {
            "thin_profile": false,
            "last_updated": "2025-03-15T08:22:00Z"
          }
        }
      },
      "CompanyCustomer": {
        "type": "object",
        "properties": {
          "linkedin_company_profile_url": {
            "type": "string",
            "description": "Company Profile URL of a probable customer"
          },
          "twitter_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Twitter Profile URL of a probable customer"
          },
          "email": {
            "type": "string",
            "nullable": true,
            "description": "General Email address of company (if any)"
          }
        },
        "example": {
          "linkedin_company_profile_url": "https://www.linkedin.com/company/spire-solicitors-llp",
          "twitter_profile_url": "https://twitter.com/spirellp",
          "email": "info@spiresolicitors.co.uk"
        }
      },
      "CustomerList": {
        "type": "object",
        "properties": {
          "companies": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CompanyCustomer"
            },
            "description": "A list of companies that are probable customers."
          },
          "next_page": {
            "type": "string",
            "nullable": true,
            "description": "The API URI that will lead to the next page of results. This will be null for the final page."
          },
          "update_url": {
            "type": "string",
            "nullable": true,
            "description": "This will lead to the next set of results. Should the company acquire new customers, it will contain the new set of customers. Otherwise, the result set will be empty."
          }
        },
        "example": {
          "companies": [
            {
              "linkedin_company_profile_url": "https://www.linkedin.com/company/spire-solicitors-llp",
              "twitter_profile_url": "https://twitter.com/spirellp",
              "email": "info@spiresolicitors.co.uk"
            },
            {
              "linkedin_company_profile_url": "https://www.linkedin.com/company/mall-wood-insurance-services-ltd",
              "twitter_profile_url": "https://twitter.com/draytonins",
              "email": "info@mallwoodinsurance.co.uk"
            }
          ],
          "next_page": null,
          "update_url": "https://enrichlayer.com/api/pc/customers?linkedin_company_profile_url=https%3A%2F%2Fwww.linkedin.com%2Fcompany%2Fwatsons&after=mall-wood-insurance-services-ltd"
        }
      },
      "CustomerCount": {
        "type": "object",
        "properties": {
          "company_count": {
            "type": "integer",
            "nullable": true,
            "description": "A count of of companies that are probable customers."
          }
        },
        "example": {
          "company_count": 125
        }
      },
      "PublicPerson": {
        "type": "object",
        "properties": {
          "public_identifier": {
            "type": "string",
            "nullable": true,
            "description": "The vanity identifier of the profile."
          },
          "profile_pic_url": {
            "type": "string",
            "nullable": true,
            "description": "A link to the user's profile picture."
          },
          "background_cover_image_url": {
            "type": "string",
            "nullable": true,
            "description": "A background cover picture"
          },
          "first_name": {
            "type": "string",
            "nullable": true,
            "description": "First name of the user."
          },
          "last_name": {
            "type": "string",
            "nullable": true,
            "description": "Last name of the user."
          },
          "full_name": {
            "type": "string",
            "nullable": true,
            "description": "Full name of the user (`first_name` + `last_name`)"
          },
          "follower_count": {
            "type": "integer",
            "nullable": true,
            "description": "Follower count for this profile"
          },
          "occupation": {
            "type": "string",
            "nullable": true,
            "description": "The title and company name of the user's current employment."
          },
          "headline": {
            "type": "string",
            "nullable": true,
            "description": "The tagline written by the user for his profile."
          },
          "summary": {
            "type": "string",
            "nullable": true,
            "description": "A blurb (longer than the tagline) written by the user for his profile."
          },
          "country": {
            "type": "string",
            "nullable": true,
            "description": "The user's country of residence depicted by a 2-letter country code (ISO 3166-1 alpha-2)."
          },
          "country_full_name": {
            "type": "string",
            "nullable": true,
            "description": "The user's country of residence, in English words."
          },
          "city": {
            "type": "string",
            "nullable": true,
            "description": "The city that the user is living at."
          },
          "state": {
            "type": "string",
            "nullable": true,
            "description": "The state that the user is living at."
          },
          "experiences": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Experience"
            },
            "description": "The user's list of historic work experiences. This data may be partial due to public access limitations on source platforms."
          },
          "education": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Education"
            },
            "description": "The user's list of education background. This data may be partial due to public access limitations on source platforms."
          },
          "languages": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "A list of languages that the user claims to be familiar with, and has added to his/her profile. Do note that we do not have the proficiency level as that data point is not available on a profile."
          },
          "languages_and_proficiencies": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Language"
            },
            "description": "The user's list of languages along with their proficiency level."
          },
          "accomplishment_organisations": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AccomplishmentOrg"
            },
            "description": "List of noteworthy organizations that this user is part of."
          },
          "accomplishment_publications": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Publication"
            },
            "description": "List of noteworthy publications that this user has partook in."
          },
          "accomplishment_honors_awards": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/HonourAward"
            },
            "description": "List of noteworthy honours and awards that this user has won."
          },
          "accomplishment_patents": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Patent"
            },
            "description": "List of noteworthy patents won by this user."
          },
          "accomplishment_courses": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Course"
            },
            "description": "List of noteworthy courses partook by this user."
          },
          "accomplishment_projects": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Project"
            },
            "description": "List of noteworthy projects undertaken by this user."
          },
          "accomplishment_test_scores": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TestScore"
            },
            "description": "List of noteworthy test scores accomplished by this user."
          },
          "volunteer_work": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/VolunteeringExperience"
            },
            "description": "List of historic volunteer work experiences."
          },
          "certifications": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Certification"
            },
            "description": "List of noteworthy certifications accomplished by this user."
          },
          "connections": {
            "type": "integer",
            "nullable": true,
            "description": "Total *count* of connections."
          },
          "people_also_viewed": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PeopleAlsoViewed"
            },
            "description": "A list of other profiles closely related to this user."
          },
          "recommendations": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "List of recommendations made by other users about this profile."
          },
          "activities": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Activity"
            },
            "description": "A list of status activities. This field is not guaranteed to be returned. Do not rely on this attribute in production."
          },
          "similarly_named_profiles": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/SimilarProfile"
            },
            "description": "A list of other profiles with similar names."
          },
          "articles": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Article"
            },
            "description": "A list of content-based articles posted by this user. This field is not guaranteed to be returned. Do not rely on this attribute in production."
          },
          "groups": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PersonGroup"
            },
            "deprecated": true,
            "description": "A list of groups that this user is a part of."
          },
          "skills": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "deprecated": true,
            "description": "A list of keyword-based skills that this user boasts of on his profile."
          }
        },
        "example": {
          "public_identifier": "williamhgates",
          "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/a41217d5753de1f3f4906f9da43dbad6",
          "background_cover_image_url": null,
          "first_name": "Bill",
          "last_name": "Gates",
          "full_name": "Bill Gates",
          "follower_count": null,
          "occupation": "Co-chair at Bill & Melinda Gates Foundation",
          "headline": "Co-chair, Bill & Melinda Gates Foundation",
          "summary": "Co-chair of the Bill & Melinda Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft. Voracious reader. Avid traveler. Active blogger.",
          "country": "US",
          "country_full_name": "United States of America",
          "city": "Seattle",
          "state": "Washington",
          "experiences": [
            {
              "starts_at": {
                "day": 1,
                "month": 1,
                "year": 2015
              },
              "ends_at": null,
              "company": "Breakthrough Energy ",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/breakthrough-energy/",
              "company_facebook_profile_url": null,
              "title": "Founder",
              "description": null,
              "location": null,
              "logo_url": "https://assets.enrichlayer.com/ll/D560BAQFRMYiQN7-2kA/company-logo_100_100/B56ZoI4SGPI0AQ-/0/1761085563539/breakthrough_energy_logo?e=2147483647&v=beta&t=J6RbEvs17fl1uiEaXQm0hmXy4imx36mV_Hu80JcR1DE"
            },
            {
              "starts_at": {
                "day": 1,
                "month": 1,
                "year": 2000
              },
              "ends_at": null,
              "company": "Bill & Melinda Gates Foundation",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/bill-&-melinda-gates-foundation/",
              "company_facebook_profile_url": null,
              "title": "Co-chair",
              "description": null,
              "location": null,
              "logo_url": "https://assets.enrichlayer.com/ll/D560BAQEgMqqFTd40Tg/company-logo_100_100/company-logo_100_100/0/1736784969376/bill__melinda_gates_foundation_logo?e=2147483647&v=beta&t=2JH2cMcZms60vPAMbvVZyMeYXosQ1Jjy5axDlyeQ1Ww"
            }
          ],
          "education": [
            {
              "starts_at": {
                "day": 1,
                "month": 1,
                "year": 1973
              },
              "ends_at": {
                "day": 31,
                "month": 12,
                "year": 1975
              },
              "field_of_study": null,
              "degree_name": null,
              "school": "Harvard University",
              "school_linkedin_profile_url": null,
              "school_facebook_profile_url": null,
              "description": null,
              "logo_url": "https://assets.enrichlayer.com/pp/profilepic/518005a5a755bd1d2fde90f216039bbc",
              "grade": null,
              "activities_and_societies": null
            },
            {
              "starts_at": null,
              "ends_at": null,
              "field_of_study": null,
              "degree_name": null,
              "school": "Lakeside School",
              "school_linkedin_profile_url": null,
              "school_facebook_profile_url": null,
              "description": null,
              "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f0d32d5de696536e8b46133cb042250a",
              "grade": null,
              "activities_and_societies": null
            }
          ],
          "languages_and_proficiencies": [
            {
              "name": "English",
              "proficiency": "NATIVE_OR_BILINGUAL"
            },
            {
              "name": "Hindi",
              "proficiency": "LIMITED_WORKING"
            }
          ],
          "accomplishment_organisations": [
            {
              "starts_at": {
                "day": 1,
                "month": 1,
                "year": 2012
              },
              "ends_at": {
                "day": 1,
                "month": 8,
                "year": 2016
              },
              "org_name": "Microsoft",
              "title": "Software Developer",
              "description": null
            }
          ],
          "accomplishment_publications": [
            {
              "name": "Nobel Peace Prize",
              "publisher": "Acme Corp",
              "published_on": {
                "day": 1,
                "month": 1,
                "year": 1970
              },
              "description": "Comprehensive analysis of strategic decision-making in competitive environments.",
              "url": "https://doi.org/10.1000/example"
            }
          ],
          "accomplishment_honors_awards": [
            {
              "title": "Nobel Peace Prize",
              "issuer": "Acme Corp",
              "issued_on": {
                "day": 1,
                "month": 1,
                "year": 1970
              },
              "description": "Awarded for outstanding contributions to the field and demonstrated leadership excellence."
            }
          ],
          "accomplishment_patents": [
            {
              "title": "The art of war",
              "issuer": "Acme Corp",
              "issued_on": {
                "day": 1,
                "month": 1,
                "year": 1970
              },
              "description": "A method and system for optimizing resource allocation in distributed computing environments.",
              "application_number": "123",
              "patent_number": "123",
              "url": null
            }
          ],
          "accomplishment_courses": [
            {
              "name": "The course about ABCs",
              "number": "123"
            }
          ],
          "accomplishment_projects": [],
          "accomplishment_test_scores": [
            {
              "name": "CS1101S",
              "score": "A",
              "date_on": {
                "day": 1,
                "month": 1,
                "year": 2010
              },
              "description": "Nailed it without studying."
            }
          ],
          "volunteer_work": [
            {
              "starts_at": {
                "day": 1,
                "month": 1,
                "year": 2012
              },
              "ends_at": {
                "day": 1,
                "month": 8,
                "year": 2016
              },
              "title": "Surveyor",
              "cause": "To help the world",
              "company": "Microsoft",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
              "description": null,
              "logo_url": null
            }
          ],
          "certifications": [],
          "connections": null,
          "people_also_viewed": [
            {
              "link": "https://www.linkedin.com/in/janesmith",
              "name": "Jane Smith",
              "summary": "Software Engineer at Google",
              "location": "San Francisco, United States"
            }
          ],
          "recommendations": [
            "Professional and dedicated approach towards clients and collegues."
          ],
          "activities": [
            {
              "title": "I am hiring!",
              "link": "https://www.linkedin.com/feed/update/urn:li:activity:666",
              "activity_status": "posted"
            }
          ],
          "similarly_named_profiles": [],
          "articles": [
            {
              "title": "Manufacturing opportunity",
              "link": "https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates/",
              "published_date": {
                "day": 27,
                "month": 11,
                "year": 2019
              },
              "author": "Bill Gates",
              "image_url": "https://assets.enrichlayer.com/ll/D5612AQE-eZUAKTbmyQ/article-cover_image-shrink_720_1280/B56Zs5D6pMKIAI-/0/1766188887129?e=2147483647&v=beta&t=KUFGzvOCeBOeoGDNEwYbpS7AvFn0d-iQN-iKoHtXs9Q"
            }
          ],
          "groups": [
            {
              "profile_pic_url": "https://assets.enrichlayer.com/ll/D560BAQFRMYiQN7-2kA/company-logo_100_100/B56ZoI4SGPI0AQ-/0/1761085563539/breakthrough_energy_logo?e=2147483647&v=beta&t=J6RbEvs17fl1uiEaXQm0hmXy4imx36mV_Hu80JcR1DE",
              "name": "Hadoop Users",
              "url": "https://www.linkedin.com/groups/988957"
            }
          ]
        }
      },
      "Employee": {
        "type": "object",
        "properties": {
          "profile_url": {
            "type": "string",
            "description": "Profile URL of the employee."
          },
          "profile": {
            "$ref": "#/components/schemas/PublicPerson",
            "nullable": true,
            "description": "Enriched profile data of the employee."
          },
          "last_updated": {
            "type": "string",
            "nullable": true,
            "description": "ISO 8601 timestamp since the enriched profile was last retrieved."
          }
        },
        "example": {
          "profile_url": "https://www.linkedin.com/in/williamhgates",
          "profile": {
            "public_identifier": "williamhgates",
            "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/a41217d5753de1f3f4906f9da43dbad6",
            "background_cover_image_url": null,
            "first_name": "Bill",
            "last_name": "Gates",
            "full_name": "Bill Gates",
            "follower_count": null,
            "occupation": "Co-chair at Bill & Melinda Gates Foundation",
            "headline": "Co-chair, Bill & Melinda Gates Foundation",
            "summary": "Co-chair of the Bill & Melinda Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft. Voracious reader. Avid traveler. Active blogger.",
            "country": "US",
            "country_full_name": "United States of America",
            "city": "Seattle",
            "state": "Washington",
            "experiences": [
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 2015
                },
                "ends_at": null,
                "company": "Breakthrough Energy ",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/breakthrough-energy/",
                "company_facebook_profile_url": null,
                "title": "Founder",
                "description": null,
                "location": null,
                "logo_url": "https://assets.enrichlayer.com/ll/D560BAQFRMYiQN7-2kA/company-logo_100_100/B56ZoI4SGPI0AQ-/0/1761085563539/breakthrough_energy_logo?e=2147483647&v=beta&t=J6RbEvs17fl1uiEaXQm0hmXy4imx36mV_Hu80JcR1DE"
              },
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 2000
                },
                "ends_at": null,
                "company": "Bill & Melinda Gates Foundation",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/bill-&-melinda-gates-foundation/",
                "company_facebook_profile_url": null,
                "title": "Co-chair",
                "description": null,
                "location": null,
                "logo_url": "https://assets.enrichlayer.com/ll/D560BAQEgMqqFTd40Tg/company-logo_100_100/company-logo_100_100/0/1736784969376/bill__melinda_gates_foundation_logo?e=2147483647&v=beta&t=2JH2cMcZms60vPAMbvVZyMeYXosQ1Jjy5axDlyeQ1Ww"
              }
            ],
            "education": [
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 1973
                },
                "ends_at": {
                  "day": 31,
                  "month": 12,
                  "year": 1975
                },
                "field_of_study": null,
                "degree_name": null,
                "school": "Harvard University",
                "school_linkedin_profile_url": null,
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/518005a5a755bd1d2fde90f216039bbc",
                "grade": null,
                "activities_and_societies": null
              },
              {
                "starts_at": null,
                "ends_at": null,
                "field_of_study": null,
                "degree_name": null,
                "school": "Lakeside School",
                "school_linkedin_profile_url": null,
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f0d32d5de696536e8b46133cb042250a",
                "grade": null,
                "activities_and_societies": null
              }
            ],
            "languages_and_proficiencies": [
              {
                "name": "English",
                "proficiency": "NATIVE_OR_BILINGUAL"
              },
              {
                "name": "Hindi",
                "proficiency": "LIMITED_WORKING"
              }
            ],
            "accomplishment_organisations": [
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 2012
                },
                "ends_at": {
                  "day": 1,
                  "month": 8,
                  "year": 2016
                },
                "org_name": "Microsoft",
                "title": "Software Developer",
                "description": null
              }
            ],
            "accomplishment_publications": [
              {
                "name": "Nobel Peace Prize",
                "publisher": "Acme Corp",
                "published_on": {
                  "day": 1,
                  "month": 1,
                  "year": 1970
                },
                "description": "Comprehensive analysis of strategic decision-making in competitive environments.",
                "url": "https://doi.org/10.1000/example"
              }
            ],
            "accomplishment_honors_awards": [
              {
                "title": "Nobel Peace Prize",
                "issuer": "Acme Corp",
                "issued_on": {
                  "day": 1,
                  "month": 1,
                  "year": 1970
                },
                "description": "Awarded for outstanding contributions to the field and demonstrated leadership excellence."
              }
            ],
            "accomplishment_patents": [
              {
                "title": "The art of war",
                "issuer": "Acme Corp",
                "issued_on": {
                  "day": 1,
                  "month": 1,
                  "year": 1970
                },
                "description": "A method and system for optimizing resource allocation in distributed computing environments.",
                "application_number": "123",
                "patent_number": "123",
                "url": null
              }
            ],
            "accomplishment_courses": [
              {
                "name": "The course about ABCs",
                "number": "123"
              }
            ],
            "accomplishment_projects": [],
            "accomplishment_test_scores": [
              {
                "name": "CS1101S",
                "score": "A",
                "date_on": {
                  "day": 1,
                  "month": 1,
                  "year": 2010
                },
                "description": "Nailed it without studying."
              }
            ],
            "volunteer_work": [
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 2012
                },
                "ends_at": {
                  "day": 1,
                  "month": 8,
                  "year": 2016
                },
                "title": "Surveyor",
                "cause": "To help the world",
                "company": "Microsoft",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
                "description": null,
                "logo_url": null
              }
            ],
            "certifications": [],
            "connections": null,
            "people_also_viewed": [
              {
                "link": "https://www.linkedin.com/in/janesmith",
                "name": "Jane Smith",
                "summary": "Software Engineer at Google",
                "location": "San Francisco, United States"
              }
            ],
            "recommendations": [
              "Professional and dedicated approach towards clients and collegues."
            ],
            "activities": [
              {
                "title": "I am hiring!",
                "link": "https://www.linkedin.com/feed/update/urn:li:activity:666",
                "activity_status": "posted"
              }
            ],
            "similarly_named_profiles": [],
            "articles": [
              {
                "title": "Manufacturing opportunity",
                "link": "https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates/",
                "published_date": {
                  "day": 27,
                  "month": 11,
                  "year": 2019
                },
                "author": "Bill Gates",
                "image_url": "https://assets.enrichlayer.com/ll/D5612AQE-eZUAKTbmyQ/article-cover_image-shrink_720_1280/B56Zs5D6pMKIAI-/0/1766188887129?e=2147483647&v=beta&t=KUFGzvOCeBOeoGDNEwYbpS7AvFn0d-iQN-iKoHtXs9Q"
              }
            ],
            "groups": [
              {
                "profile_pic_url": "https://assets.enrichlayer.com/ll/D560BAQFRMYiQN7-2kA/company-logo_100_100/B56ZoI4SGPI0AQ-/0/1761085563539/breakthrough_energy_logo?e=2147483647&v=beta&t=J6RbEvs17fl1uiEaXQm0hmXy4imx36mV_Hu80JcR1DE",
                "name": "Hadoop Users",
                "url": "https://www.linkedin.com/groups/988957"
              }
            ]
          },
          "last_updated": "2023-10-26T11:34:30Z"
        }
      },
      "EmployeeList": {
        "type": "object",
        "properties": {
          "employees": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Employee"
            },
            "description": "A list of employee profiles (if enriched) and their associated profile URL."
          },
          "next_page": {
            "type": "string",
            "nullable": true,
            "description": "The API URI that will lead to the next page of results. This will be null for the final page."
          }
        },
        "example": {
          "employees": [
            {
              "profile_url": "https://www.linkedin.com/in/williamhgates",
              "profile": {
                "public_identifier": "williamhgates",
                "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/a41217d5753de1f3f4906f9da43dbad6",
                "background_cover_image_url": null,
                "first_name": "Bill",
                "last_name": "Gates",
                "full_name": "Bill Gates",
                "follower_count": null,
                "occupation": "Co-chair at Bill & Melinda Gates Foundation",
                "headline": "Co-chair, Bill & Melinda Gates Foundation",
                "summary": "Co-chair of the Bill & Melinda Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft. Voracious reader. Avid traveler. Active blogger.",
                "country": "US",
                "country_full_name": "United States of America",
                "city": "Seattle",
                "state": "Washington",
                "experiences": [
                  {
                    "starts_at": {
                      "day": 1,
                      "month": 1,
                      "year": 2015
                    },
                    "ends_at": null,
                    "company": "Breakthrough Energy ",
                    "company_linkedin_profile_url": "https://www.linkedin.com/company/breakthrough-energy/",
                    "company_facebook_profile_url": null,
                    "title": "Founder",
                    "description": null,
                    "location": null,
                    "logo_url": "https://assets.enrichlayer.com/ll/D560BAQFRMYiQN7-2kA/company-logo_100_100/B56ZoI4SGPI0AQ-/0/1761085563539/breakthrough_energy_logo?e=2147483647&v=beta&t=J6RbEvs17fl1uiEaXQm0hmXy4imx36mV_Hu80JcR1DE"
                  },
                  {
                    "starts_at": {
                      "day": 1,
                      "month": 1,
                      "year": 2000
                    },
                    "ends_at": null,
                    "company": "Bill & Melinda Gates Foundation",
                    "company_linkedin_profile_url": "https://www.linkedin.com/company/bill-&-melinda-gates-foundation/",
                    "company_facebook_profile_url": null,
                    "title": "Co-chair",
                    "description": null,
                    "location": null,
                    "logo_url": "https://assets.enrichlayer.com/ll/D560BAQEgMqqFTd40Tg/company-logo_100_100/company-logo_100_100/0/1736784969376/bill__melinda_gates_foundation_logo?e=2147483647&v=beta&t=2JH2cMcZms60vPAMbvVZyMeYXosQ1Jjy5axDlyeQ1Ww"
                  }
                ],
                "education": [
                  {
                    "starts_at": {
                      "day": 1,
                      "month": 1,
                      "year": 1973
                    },
                    "ends_at": {
                      "day": 31,
                      "month": 12,
                      "year": 1975
                    },
                    "field_of_study": null,
                    "degree_name": null,
                    "school": "Harvard University",
                    "school_linkedin_profile_url": null,
                    "school_facebook_profile_url": null,
                    "description": null,
                    "logo_url": "https://assets.enrichlayer.com/pp/profilepic/518005a5a755bd1d2fde90f216039bbc",
                    "grade": null,
                    "activities_and_societies": null
                  },
                  {
                    "starts_at": null,
                    "ends_at": null,
                    "field_of_study": null,
                    "degree_name": null,
                    "school": "Lakeside School",
                    "school_linkedin_profile_url": null,
                    "school_facebook_profile_url": null,
                    "description": null,
                    "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f0d32d5de696536e8b46133cb042250a",
                    "grade": null,
                    "activities_and_societies": null
                  }
                ],
                "languages_and_proficiencies": [
                  {
                    "name": "English",
                    "proficiency": "NATIVE_OR_BILINGUAL"
                  },
                  {
                    "name": "Hindi",
                    "proficiency": "LIMITED_WORKING"
                  }
                ],
                "accomplishment_organisations": [
                  {
                    "starts_at": {
                      "day": 1,
                      "month": 1,
                      "year": 2012
                    },
                    "ends_at": {
                      "day": 1,
                      "month": 8,
                      "year": 2016
                    },
                    "org_name": "Microsoft",
                    "title": "Software Developer",
                    "description": null
                  }
                ],
                "accomplishment_publications": [
                  {
                    "name": "Nobel Peace Prize",
                    "publisher": "Acme Corp",
                    "published_on": {
                      "day": 1,
                      "month": 1,
                      "year": 1970
                    },
                    "description": "Comprehensive analysis of strategic decision-making in competitive environments.",
                    "url": "https://doi.org/10.1000/example"
                  }
                ],
                "accomplishment_honors_awards": [
                  {
                    "title": "Nobel Peace Prize",
                    "issuer": "Acme Corp",
                    "issued_on": {
                      "day": 1,
                      "month": 1,
                      "year": 1970
                    },
                    "description": "Awarded for outstanding contributions to the field and demonstrated leadership excellence."
                  }
                ],
                "accomplishment_patents": [
                  {
                    "title": "The art of war",
                    "issuer": "Acme Corp",
                    "issued_on": {
                      "day": 1,
                      "month": 1,
                      "year": 1970
                    },
                    "description": "A method and system for optimizing resource allocation in distributed computing environments.",
                    "application_number": "123",
                    "patent_number": "123",
                    "url": null
                  }
                ],
                "accomplishment_courses": [
                  {
                    "name": "The course about ABCs",
                    "number": "123"
                  }
                ],
                "accomplishment_projects": [],
                "accomplishment_test_scores": [
                  {
                    "name": "CS1101S",
                    "score": "A",
                    "date_on": {
                      "day": 1,
                      "month": 1,
                      "year": 2010
                    },
                    "description": "Nailed it without studying."
                  }
                ],
                "volunteer_work": [
                  {
                    "starts_at": {
                      "day": 1,
                      "month": 1,
                      "year": 2012
                    },
                    "ends_at": {
                      "day": 1,
                      "month": 8,
                      "year": 2016
                    },
                    "title": "Surveyor",
                    "cause": "To help the world",
                    "company": "Microsoft",
                    "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
                    "description": null,
                    "logo_url": null
                  }
                ],
                "certifications": [],
                "connections": null,
                "people_also_viewed": [
                  {
                    "link": "https://www.linkedin.com/in/janesmith",
                    "name": "Jane Smith",
                    "summary": "Software Engineer at Google",
                    "location": "San Francisco, United States"
                  }
                ],
                "recommendations": [
                  "Professional and dedicated approach towards clients and collegues."
                ],
                "activities": [
                  {
                    "title": "I am hiring!",
                    "link": "https://www.linkedin.com/feed/update/urn:li:activity:666",
                    "activity_status": "posted"
                  }
                ],
                "similarly_named_profiles": [],
                "articles": [
                  {
                    "title": "Manufacturing opportunity",
                    "link": "https://www.linkedin.com/pulse/manufacturing-opportunity-bill-gates/",
                    "published_date": {
                      "day": 27,
                      "month": 11,
                      "year": 2019
                    },
                    "author": "Bill Gates",
                    "image_url": "https://assets.enrichlayer.com/ll/D5612AQE-eZUAKTbmyQ/article-cover_image-shrink_720_1280/B56Zs5D6pMKIAI-/0/1766188887129?e=2147483647&v=beta&t=KUFGzvOCeBOeoGDNEwYbpS7AvFn0d-iQN-iKoHtXs9Q"
                  }
                ],
                "groups": [
                  {
                    "profile_pic_url": "https://assets.enrichlayer.com/ll/D560BAQFRMYiQN7-2kA/company-logo_100_100/B56ZoI4SGPI0AQ-/0/1761085563539/breakthrough_energy_logo?e=2147483647&v=beta&t=J6RbEvs17fl1uiEaXQm0hmXy4imx36mV_Hu80JcR1DE",
                    "name": "Hadoop Users",
                    "url": "https://www.linkedin.com/groups/988957"
                  }
                ]
              },
              "last_updated": "2023-10-26T11:34:30Z"
            }
          ],
          "next_page": null
        }
      },
      "EmployeeCount": {
        "type": "object",
        "properties": {
          "estimated_employee_count": {
            "type": "integer",
            "nullable": true,
            "description": "The retrieved value of employee count of this company. This value does not respect `employement_status` parameter. It will always return the curent employee count of this company. This value is derived from the number of employees listed on the company profile."
          },
          "verified_employee_count": {
            "type": "integer",
            "description": "The total number of employees found for this company. This value is derived from the aggregation of employees whose work experience matches the provided input parameter."
          }
        },
        "example": {
          "estimated_employee_count": 529274,
          "verified_employee_count": 3
        }
      },
      "ProfilePicture": {
        "type": "object",
        "properties": {
          "tmp_profile_pic_url": {
            "type": "string",
            "description": "A URL to the profile picture."
          }
        },
        "example": {
          "tmp_profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/a41217d5753de1f3f4906f9da43dbad6"
        }
      },
      "PersonLookupUrlEnrichResult": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "nullable": true,
            "description": "The profile URL"
          },
          "name_similarity_score": {
            "type": "number",
            "nullable": true,
            "description": "A measure of how similar the input name is to the name in the returned profile. Values can range from `0` to `1` , with `0` indicating no similarity and `1` implying high similarity. In cases where a current profile for comparison is not available in our dataset, the result may be `null`."
          },
          "company_similarity_score": {
            "type": "number",
            "nullable": true,
            "description": "A measure of how similar the input company name/domain is to the name/domain of past or present companies in the returned profile. The score ranges from `0` to `1` , with `0` signifying no similarity and `1` denoting high similarity. If a relevant profile is unavailable in our dataset for comparison, a `null` score may be returned."
          },
          "title_similarity_score": {
            "type": "number",
            "nullable": true,
            "description": "A measure of how similar the input title is to the returned profile's past or present titles. Scores vary from `0` to `1` , where `0` means no similarity and `1` indicates high similarity. If a relevant profile for comparison isn't available in our dataset, a `null` result may occur."
          },
          "location_similarity_score": {
            "type": "number",
            "nullable": true,
            "description": "A measure of how similar the input location is to the returned profile's current location. The range is from `0` to `1` , with `0` representing no similarity and `1` signifying high similarity. If there isn't a relevant profile in our dataset for comparison, the score might be `null`. "
          },
          "profile": {
            "$ref": "#/components/schemas/PersonEndpointResponse"
          },
          "last_updated": {
            "type": "string",
            "nullable": true,
            "description": "ISO 8601 timestamp since the enriched profile was last retrieved."
          }
        },
        "example": {
          "url": "https://www.linkedin.com/in/kevinolearytv",
          "name_similarity_score": 0.5,
          "company_similarity_score": 0.5,
          "title_similarity_score": 0.5,
          "location_similarity_score": 0.5,
          "profile": {
            "public_identifier": "satyanadella",
            "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/7d369850c9fe8c35e78a6a50c75334f5",
            "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/fe878f911fecd238e169a23b12103b0e",
            "first_name": "Satya",
            "last_name": "Nadella",
            "full_name": "Satya Nadella",
            "follower_count": 11888127,
            "occupation": "Chairman and CEO at Microsoft",
            "headline": "Chairman and CEO at Microsoft",
            "summary": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every organization on the planet to achieve more.",
            "country": "US",
            "country_full_name": "United States of America",
            "city": "Redmond",
            "state": "Washington",
            "experiences": [
              {
                "starts_at": {
                  "day": 1,
                  "month": 2,
                  "year": 2014
                },
                "ends_at": null,
                "company": "Microsoft",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
                "company_facebook_profile_url": null,
                "title": "Chairman and CEO",
                "description": null,
                "location": "Greater Seattle Area",
                "logo_url": "https://assets.enrichlayer.com/ll/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY"
              },
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 2018
                },
                "ends_at": null,
                "company": "University of Chicago",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/uchicago",
                "company_facebook_profile_url": null,
                "title": "Member Board Of Trustees",
                "description": null,
                "location": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f40c5f31ef246aeb1000ffb4e40f2991"
              },
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 2017
                },
                "ends_at": {
                  "day": 31,
                  "month": 12,
                  "year": 2024
                },
                "company": "Starbucks",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/starbucks",
                "company_facebook_profile_url": null,
                "title": "Board Member",
                "description": null,
                "location": null,
                "logo_url": "https://assets.enrichlayer.com/ll/C4D0BAQEQxk9y2rk7Hw/company-logo_100_100/company-logo_100_100/0/1631316692276?e=2147483647&v=beta&t=itdoVXP3gnqtQ7Grar4B3YoPyw-Ors9bKMZlZpb0QcY"
              }
            ],
            "education": [
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 1994
                },
                "ends_at": {
                  "day": 31,
                  "month": 12,
                  "year": 1996
                },
                "field_of_study": null,
                "degree_name": null,
                "school": "The University of Chicago Booth School of Business",
                "school_linkedin_profile_url": "https://www.linkedin.com/company/universityofchicagoboothschoolofbusiness",
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/88fa467a62fbfc5325394253f14e8700",
                "grade": null,
                "activities_and_societies": null
              },
              {
                "starts_at": {
                  "day": null,
                  "month": null,
                  "year": null
                },
                "ends_at": null,
                "field_of_study": "Electrical Engineering",
                "degree_name": "Bachelor’s Degree",
                "school": "Manipal Institute of Technology, Manipal",
                "school_linkedin_profile_url": "https://www.linkedin.com/company/manipal-institute-of-technology",
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/2aef6f72c73e3b40dbd56163897bdc04",
                "grade": null,
                "activities_and_societies": null
              },
              {
                "starts_at": {
                  "day": null,
                  "month": null,
                  "year": null
                },
                "ends_at": null,
                "field_of_study": "Computer Science",
                "degree_name": "Master’s Degree",
                "school": "University of Wisconsin-Milwaukee",
                "school_linkedin_profile_url": "https://www.linkedin.com/company/uwmilwaukee",
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/7916094135030c5846f34230e03dbaa2",
                "grade": null,
                "activities_and_societies": null
              }
            ],
            "accomplishment_organisations": [],
            "accomplishment_publications": [],
            "accomplishment_honors_awards": [],
            "accomplishment_patents": [],
            "accomplishment_courses": [],
            "accomplishment_projects": [],
            "accomplishment_test_scores": [],
            "volunteer_work": [],
            "certifications": [],
            "connections": 500,
            "people_also_viewed": [
              {
                "link": "https://www.linkedin.com/in/kevinolearytv",
                "name": "Kevin O'Leary",
                "summary": "Chairman, O’Leary Ventures and Beanstox",
                "location": "West Palm Beach"
              },
              {
                "link": "https://www.linkedin.com/in/aaronmartinfc",
                "name": "Aaron Martin",
                "summary": "Vice President Healthcare at Amazon",
                "location": "Seattle"
              },
              {
                "link": "https://www.linkedin.com/in/guthriescott",
                "name": "Scott Guthrie",
                "summary": "Executive Vice President at Microsoft",
                "location": "Bellevue"
              },
              {
                "link": "https://www.linkedin.com/in/toufisaliba",
                "name": "Toufi Saliba",
                "summary": "Author TODA/IP  .  | . CEO HyperCycle.AI  .  | . Chair - International Protocols for AI Security IEEE",
                "location": "San Francisco"
              },
              {
                "link": "https://www.linkedin.com/in/rajeshgopinathan",
                "name": "Rajesh Gopinathan",
                "summary": null,
                "location": "Mumbai"
              }
            ],
            "recommendations": [],
            "activities": [
              {
                "title": "Microsoft has been positioned as a Leader for the fourteenth consecutive year in the Gartner 2021 Magic Quadrant for Analytics and Business…",
                "link": null,
                "activity_status": null
              },
              {
                "title": "On March 17, we’re trying something we’ve never done before: Microsoft will host #Include2021, a free, global, digital event focused on diversity &…",
                "link": null,
                "activity_status": null
              },
              {
                "title": "I talked to Bill Gates about his important new book, which provides a framework to reduce our world’s greenhouse gas emissions to zero, including…",
                "link": null,
                "activity_status": null
              }
            ],
            "similarly_named_profiles": [],
            "articles": [],
            "groups": [],
            "meta": {
              "thin_profile": false,
              "last_updated": "2025-03-15T08:22:00Z"
            }
          },
          "last_updated": "2023-10-26T11:34:30Z"
        }
      },
      "RoleSearchEnrichedResult": {
        "type": "object",
        "properties": {
          "linkedin_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Profile URL of the person that most closely matches the role"
          },
          "profile": {
            "$ref": "#/components/schemas/PersonEndpointResponse"
          },
          "last_updated": {
            "type": "string",
            "nullable": true,
            "description": "ISO 8601 timestamp since the enriched profile was last retrieved."
          }
        },
        "example": {
          "linkedin_profile_url": "https://www.linkedin.com/in/kevinolearytv",
          "profile": {
            "public_identifier": "satyanadella",
            "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/7d369850c9fe8c35e78a6a50c75334f5",
            "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/fe878f911fecd238e169a23b12103b0e",
            "first_name": "Satya",
            "last_name": "Nadella",
            "full_name": "Satya Nadella",
            "follower_count": 11888127,
            "occupation": "Chairman and CEO at Microsoft",
            "headline": "Chairman and CEO at Microsoft",
            "summary": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every organization on the planet to achieve more.",
            "country": "US",
            "country_full_name": "United States of America",
            "city": "Redmond",
            "state": "Washington",
            "experiences": [
              {
                "starts_at": {
                  "day": 1,
                  "month": 2,
                  "year": 2014
                },
                "ends_at": null,
                "company": "Microsoft",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
                "company_facebook_profile_url": null,
                "title": "Chairman and CEO",
                "description": null,
                "location": "Greater Seattle Area",
                "logo_url": "https://assets.enrichlayer.com/ll/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY"
              },
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 2018
                },
                "ends_at": null,
                "company": "University of Chicago",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/uchicago",
                "company_facebook_profile_url": null,
                "title": "Member Board Of Trustees",
                "description": null,
                "location": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f40c5f31ef246aeb1000ffb4e40f2991"
              },
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 2017
                },
                "ends_at": {
                  "day": 31,
                  "month": 12,
                  "year": 2024
                },
                "company": "Starbucks",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/starbucks",
                "company_facebook_profile_url": null,
                "title": "Board Member",
                "description": null,
                "location": null,
                "logo_url": "https://assets.enrichlayer.com/ll/C4D0BAQEQxk9y2rk7Hw/company-logo_100_100/company-logo_100_100/0/1631316692276?e=2147483647&v=beta&t=itdoVXP3gnqtQ7Grar4B3YoPyw-Ors9bKMZlZpb0QcY"
              }
            ],
            "education": [
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 1994
                },
                "ends_at": {
                  "day": 31,
                  "month": 12,
                  "year": 1996
                },
                "field_of_study": null,
                "degree_name": null,
                "school": "The University of Chicago Booth School of Business",
                "school_linkedin_profile_url": "https://www.linkedin.com/company/universityofchicagoboothschoolofbusiness",
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/88fa467a62fbfc5325394253f14e8700",
                "grade": null,
                "activities_and_societies": null
              },
              {
                "starts_at": {
                  "day": null,
                  "month": null,
                  "year": null
                },
                "ends_at": null,
                "field_of_study": "Electrical Engineering",
                "degree_name": "Bachelor’s Degree",
                "school": "Manipal Institute of Technology, Manipal",
                "school_linkedin_profile_url": "https://www.linkedin.com/company/manipal-institute-of-technology",
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/2aef6f72c73e3b40dbd56163897bdc04",
                "grade": null,
                "activities_and_societies": null
              },
              {
                "starts_at": {
                  "day": null,
                  "month": null,
                  "year": null
                },
                "ends_at": null,
                "field_of_study": "Computer Science",
                "degree_name": "Master’s Degree",
                "school": "University of Wisconsin-Milwaukee",
                "school_linkedin_profile_url": "https://www.linkedin.com/company/uwmilwaukee",
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/7916094135030c5846f34230e03dbaa2",
                "grade": null,
                "activities_and_societies": null
              }
            ],
            "accomplishment_organisations": [],
            "accomplishment_publications": [],
            "accomplishment_honors_awards": [],
            "accomplishment_patents": [],
            "accomplishment_courses": [],
            "accomplishment_projects": [],
            "accomplishment_test_scores": [],
            "volunteer_work": [],
            "certifications": [],
            "connections": 500,
            "people_also_viewed": [
              {
                "link": "https://www.linkedin.com/in/kevinolearytv",
                "name": "Kevin O'Leary",
                "summary": "Chairman, O’Leary Ventures and Beanstox",
                "location": "West Palm Beach"
              },
              {
                "link": "https://www.linkedin.com/in/aaronmartinfc",
                "name": "Aaron Martin",
                "summary": "Vice President Healthcare at Amazon",
                "location": "Seattle"
              },
              {
                "link": "https://www.linkedin.com/in/guthriescott",
                "name": "Scott Guthrie",
                "summary": "Executive Vice President at Microsoft",
                "location": "Bellevue"
              },
              {
                "link": "https://www.linkedin.com/in/toufisaliba",
                "name": "Toufi Saliba",
                "summary": "Author TODA/IP  .  | . CEO HyperCycle.AI  .  | . Chair - International Protocols for AI Security IEEE",
                "location": "San Francisco"
              },
              {
                "link": "https://www.linkedin.com/in/rajeshgopinathan",
                "name": "Rajesh Gopinathan",
                "summary": null,
                "location": "Mumbai"
              }
            ],
            "recommendations": [],
            "activities": [
              {
                "title": "Microsoft has been positioned as a Leader for the fourteenth consecutive year in the Gartner 2021 Magic Quadrant for Analytics and Business…",
                "link": null,
                "activity_status": null
              },
              {
                "title": "On March 17, we’re trying something we’ve never done before: Microsoft will host #Include2021, a free, global, digital event focused on diversity &…",
                "link": null,
                "activity_status": null
              },
              {
                "title": "I talked to Bill Gates about his important new book, which provides a framework to reduce our world’s greenhouse gas emissions to zero, including…",
                "link": null,
                "activity_status": null
              }
            ],
            "similarly_named_profiles": [],
            "articles": [],
            "groups": [],
            "meta": {
              "thin_profile": false,
              "last_updated": "2025-03-15T08:22:00Z"
            }
          },
          "last_updated": "2023-10-26T11:34:30Z"
        }
      },
      "CompanyUrlEnrichResult": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "nullable": true,
            "description": "The profile URL"
          },
          "profile": {
            "$ref": "#/components/schemas/LinkedinCompany"
          },
          "last_updated": {
            "type": "string",
            "nullable": true,
            "description": "ISO 8601 timestamp since the enriched profile was last retrieved."
          }
        },
        "example": {
          "url": "https://www.linkedin.com/company/accenture",
          "profile": {
            "linkedin_internal_id": "1033",
            "description": "Accenture is a global professional services company with leading capabilities in digital, cloud, and security. Combining unmatched experience and specialized skills across more than 40 industries, we offer Strategy and Consulting, Technology and Operations Services, and Accenture Song—all powered by the world’s largest network of Advanced Technology and Intelligent Operations centers. \nOur people deliver on the promise of technology and human ingenuity every day, serving clients in more than 120 countries. We embrace the power of change to create value and shared success for our clients, people, shareholders, partners, and communities. \nVisit us at accenture.com.",
            "website": "http://www.accenture.com",
            "industry": "Business Consulting and Services",
            "company_size": [
              10001,
              null
            ],
            "company_size_on_linkedin": 541251,
            "hq": {
              "country": "IE",
              "city": "Dublin 2",
              "postal_code": null,
              "line_1": "Grand Canal Harbour",
              "is_hq": true,
              "state": null
            },
            "company_type": "PUBLIC_COMPANY",
            "founded_year": null,
            "specialities": [
              "Management Consulting",
              "Systems Integration and Technology"
            ],
            "locations": [
              {
                "country": "IE",
                "city": "Dublin 2",
                "postal_code": null,
                "line_1": "Grand Canal Harbour",
                "is_hq": true,
                "state": null
              },
              {
                "country": "US",
                "city": "San Francisco",
                "postal_code": "94105",
                "line_1": "415 Mission Street Floor 31-34",
                "is_hq": null,
                "state": "California"
              }
            ],
            "name": "Accenture",
            "tagline": "Think Different - But Not Too Different",
            "universal_name_id": "accenture",
            "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/ba497886e02c992d8fe1a74bf0bbe675",
            "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/b09e74d93f184f16c3249b63bdf60317",
            "search_id": "1033",
            "similar_companies": [
              {
                "name": "Deloitte",
                "link": "https://www.linkedin.com/company/deloitte",
                "industry": "Business Consulting and Services",
                "location": null
              },
              {
                "name": "Tata Consultancy Services",
                "link": "https://in.linkedin.com/company/tata-consultancy-services",
                "industry": "IT Services and IT Consulting",
                "location": "Mumbai, Maharashtra"
              }
            ],
            "affiliated_companies": [
              {
                "name": "Accenture in India",
                "link": "https://in.linkedin.com/company/accentureindia",
                "industry": "IT Services and IT Consulting",
                "location": "Bengaluru, Karnatka"
              },
              {
                "name": "Accenture Brasil",
                "link": "https://br.linkedin.com/company/accenturebrasil",
                "industry": "IT Services and IT Consulting",
                "location": "São Paulo, São Paulo"
              }
            ],
            "updates": [
              {
                "article_link": null,
                "image": null,
                "posted_on": {
                  "day": 25,
                  "month": 10,
                  "year": 2023
                },
                "text": "Explore #AccentureLifeTrends 2024 to learn more: https://accntu.re/3MfdMg4",
                "total_likes": 325
              },
              {
                "article_link": null,
                "image": "https://assets.enrichlayer.com/pp/profilepic/ba497886e02c992d8fe1a74bf0bbe675",
                "posted_on": {
                  "day": 25,
                  "month": 10,
                  "year": 2023
                },
                "text": "The ability to learn new things, without forgetting those that came before, is a huge differentiator between the #AI we're familiar with, and the #GenerativeAI powered by foundation models that we're seeing now.\n \nDiscover the trends shaping the next decade: https://accntu.re/474YxOH\n \n#TechVision2023",
                "total_likes": 541
              }
            ],
            "follower_count": 11125167,
            "acquisitions": {
              "acquired": [
                {
                  "linkedin_profile_url": "https://www.linkedin.com/company/apple",
                  "crunchbase_profile_url": "https://www.crunchbase.com/organization/apple",
                  "announced_date": {
                    "day": 1,
                    "month": 4,
                    "year": 1976
                  },
                  "price": 300000000
                }
              ],
              "acquired_by": {
                "linkedin_profile_url": "https://www.linkedin.com/company/nvidia",
                "crunchbase_profile_url": "https://www.crunchbase.com/organization/nvidia",
                "announced_date": {
                  "day": 6,
                  "month": 3,
                  "year": 2020
                },
                "price": 10000
              }
            },
            "exit_data": [
              {
                "linkedin_profile_url": "https://www.linkedin.com/company/motiondsp",
                "crunchbase_profile_url": "https://www.crunchbase.com/organization/motiondsp",
                "name": "MotionDSP"
              }
            ],
            "extra": {
              "crunchbase_profile_url": "https://www.crunchbase.com/organization/nvidia",
              "ipo_status": "Public",
              "crunchbase_rank": 13,
              "founding_date": {
                "day": 1,
                "month": 1,
                "year": 2000
              },
              "operating_status": "Active",
              "company_type": "For Profit",
              "contact_email": "info@nvidia.com",
              "phone_number": "(140) 848-6200",
              "facebook_id": "NVIDIA.IN",
              "twitter_id": "nvidia",
              "number_of_funding_rounds": 3,
              "total_funding_amount": 4000000,
              "stock_symbol": "NASDAQ:NVDA",
              "ipo_date": {
                "day": 1,
                "month": 1,
                "year": 2000
              },
              "number_of_lead_investors": 3,
              "number_of_investors": 4,
              "total_fund_raised": 1000,
              "number_of_investments": 50,
              "number_of_lead_investments": 3,
              "number_of_exits": 7,
              "number_of_acquisitions": 2
            },
            "funding_data": [
              {
                "funding_type": "Grant",
                "money_raised": 25000000,
                "announced_date": {
                  "day": 1,
                  "month": 1,
                  "year": 2001
                },
                "number_of_investor": 1,
                "investor_list": [
                  {
                    "linkedin_profile_url": "https://linkedin.com/company/darpa",
                    "name": "DARPA",
                    "type": "organization"
                  }
                ]
              }
            ],
            "categories": [
              "artificial-intelligence",
              "virtual-reality"
            ],
            "meta": {
              "thin_profile": null,
              "last_updated": "2023-10-26T11:34:30Z"
            }
          },
          "last_updated": "2023-10-26T11:33:24Z"
        }
      },
      "CompanyIDLookupResult": {
        "type": "object",
        "properties": {
          "vanity_id": {
            "type": "string",
            "description": "The unique vanity ID of the profile."
          }
        },
        "example": {
          "vanity_id": "google"
        }
      },
      "Student": {
        "type": "object",
        "properties": {
          "profile_url": {
            "type": "string"
          },
          "profile": {
            "$ref": "#/components/schemas/PublicPerson",
            "nullable": true
          },
          "last_updated": {
            "type": "string",
            "nullable": true,
            "description": "ISO 8601 timestamp since the enriched profile was last retrieved."
          }
        },
        "example": {
          "profile_url": "https://www.linkedin.com/in/satyanadella",
          "profile": {
            "public_identifier": "satyanadella",
            "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/7d369850c9fe8c35e78a6a50c75334f5",
            "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/fe878f911fecd238e169a23b12103b0e",
            "first_name": "Satya",
            "last_name": "Nadella",
            "full_name": "Satya Nadella",
            "follower_count": 11888127,
            "occupation": "Chairman and CEO at Microsoft",
            "headline": "Chairman and CEO at Microsoft",
            "summary": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every organization on the planet to achieve more.",
            "country": "US",
            "country_full_name": "United States of America",
            "city": "Redmond",
            "state": "Washington",
            "experiences": [
              {
                "starts_at": {
                  "day": 1,
                  "month": 2,
                  "year": 2014
                },
                "ends_at": null,
                "company": "Microsoft",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
                "company_facebook_profile_url": null,
                "title": "Chairman and CEO",
                "description": null,
                "location": "Greater Seattle Area",
                "logo_url": "https://assets.enrichlayer.com/ll/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY"
              },
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 2018
                },
                "ends_at": null,
                "company": "University of Chicago",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/uchicago",
                "company_facebook_profile_url": null,
                "title": "Member Board Of Trustees",
                "description": null,
                "location": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f40c5f31ef246aeb1000ffb4e40f2991"
              },
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 2017
                },
                "ends_at": {
                  "day": 31,
                  "month": 12,
                  "year": 2024
                },
                "company": "Starbucks",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/starbucks",
                "company_facebook_profile_url": null,
                "title": "Board Member",
                "description": null,
                "location": null,
                "logo_url": "https://assets.enrichlayer.com/ll/C4D0BAQEQxk9y2rk7Hw/company-logo_100_100/company-logo_100_100/0/1631316692276?e=2147483647&v=beta&t=itdoVXP3gnqtQ7Grar4B3YoPyw-Ors9bKMZlZpb0QcY"
              }
            ],
            "education": [
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 1994
                },
                "ends_at": {
                  "day": 31,
                  "month": 12,
                  "year": 1996
                },
                "field_of_study": null,
                "degree_name": null,
                "school": "The University of Chicago Booth School of Business",
                "school_linkedin_profile_url": "https://www.linkedin.com/company/universityofchicagoboothschoolofbusiness",
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/88fa467a62fbfc5325394253f14e8700",
                "grade": null,
                "activities_and_societies": null
              },
              {
                "starts_at": {
                  "day": null,
                  "month": null,
                  "year": null
                },
                "ends_at": null,
                "field_of_study": "Electrical Engineering",
                "degree_name": "Bachelor’s Degree",
                "school": "Manipal Institute of Technology, Manipal",
                "school_linkedin_profile_url": "https://www.linkedin.com/company/manipal-institute-of-technology",
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/2aef6f72c73e3b40dbd56163897bdc04",
                "grade": null,
                "activities_and_societies": null
              },
              {
                "starts_at": {
                  "day": null,
                  "month": null,
                  "year": null
                },
                "ends_at": null,
                "field_of_study": "Computer Science",
                "degree_name": "Master’s Degree",
                "school": "University of Wisconsin-Milwaukee",
                "school_linkedin_profile_url": "https://www.linkedin.com/company/uwmilwaukee",
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/7916094135030c5846f34230e03dbaa2",
                "grade": null,
                "activities_and_societies": null
              }
            ],
            "accomplishment_organisations": [],
            "accomplishment_publications": [],
            "accomplishment_honors_awards": [],
            "accomplishment_patents": [],
            "accomplishment_courses": [],
            "accomplishment_projects": [],
            "accomplishment_test_scores": [],
            "volunteer_work": [],
            "certifications": [],
            "connections": 500,
            "people_also_viewed": [
              {
                "link": "https://www.linkedin.com/in/kevinolearytv",
                "name": "Kevin O'Leary",
                "summary": "Chairman, O’Leary Ventures and Beanstox",
                "location": "West Palm Beach"
              },
              {
                "link": "https://www.linkedin.com/in/aaronmartinfc",
                "name": "Aaron Martin",
                "summary": "Vice President Healthcare at Amazon",
                "location": "Seattle"
              },
              {
                "link": "https://www.linkedin.com/in/guthriescott",
                "name": "Scott Guthrie",
                "summary": "Executive Vice President at Microsoft",
                "location": "Bellevue"
              },
              {
                "link": "https://www.linkedin.com/in/toufisaliba",
                "name": "Toufi Saliba",
                "summary": "Author TODA/IP  .  | . CEO HyperCycle.AI  .  | . Chair - International Protocols for AI Security IEEE",
                "location": "San Francisco"
              },
              {
                "link": "https://www.linkedin.com/in/rajeshgopinathan",
                "name": "Rajesh Gopinathan",
                "summary": null,
                "location": "Mumbai"
              }
            ],
            "recommendations": [],
            "activities": [
              {
                "title": "Microsoft has been positioned as a Leader for the fourteenth consecutive year in the Gartner 2021 Magic Quadrant for Analytics and Business…",
                "link": null,
                "activity_status": null
              },
              {
                "title": "On March 17, we’re trying something we’ve never done before: Microsoft will host #Include2021, a free, global, digital event focused on diversity &…",
                "link": null,
                "activity_status": null
              },
              {
                "title": "I talked to Bill Gates about his important new book, which provides a framework to reduce our world’s greenhouse gas emissions to zero, including…",
                "link": null,
                "activity_status": null
              }
            ],
            "similarly_named_profiles": [],
            "articles": [],
            "groups": [],
            "meta": {
              "thin_profile": false,
              "last_updated": "2025-03-15T08:22:00Z"
            }
          },
          "last_updated": "2023-10-26T11:34:30Z"
        }
      },
      "StudentList": {
        "type": "object",
        "properties": {
          "students": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Student"
            },
            "description": "A list of student profiles (if enriched) and their associated profile URL."
          },
          "next_page": {
            "type": "string",
            "nullable": true,
            "description": "The API URI that will lead to the next page of results. This will be null for the final page."
          }
        },
        "example": {
          "students": [
            {
              "profile_url": "https://www.linkedin.com/in/satyanadella",
              "profile": {
                "public_identifier": "satyanadella",
                "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/7d369850c9fe8c35e78a6a50c75334f5",
                "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/fe878f911fecd238e169a23b12103b0e",
                "first_name": "Satya",
                "last_name": "Nadella",
                "full_name": "Satya Nadella",
                "follower_count": 11888127,
                "occupation": "Chairman and CEO at Microsoft",
                "headline": "Chairman and CEO at Microsoft",
                "summary": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every organization on the planet to achieve more.",
                "country": "US",
                "country_full_name": "United States of America",
                "city": "Redmond",
                "state": "Washington",
                "experiences": [
                  {
                    "starts_at": {
                      "day": 1,
                      "month": 2,
                      "year": 2014
                    },
                    "ends_at": null,
                    "company": "Microsoft",
                    "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
                    "company_facebook_profile_url": null,
                    "title": "Chairman and CEO",
                    "description": null,
                    "location": "Greater Seattle Area",
                    "logo_url": "https://assets.enrichlayer.com/ll/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY"
                  },
                  {
                    "starts_at": {
                      "day": 1,
                      "month": 1,
                      "year": 2018
                    },
                    "ends_at": null,
                    "company": "University of Chicago",
                    "company_linkedin_profile_url": "https://www.linkedin.com/company/uchicago",
                    "company_facebook_profile_url": null,
                    "title": "Member Board Of Trustees",
                    "description": null,
                    "location": null,
                    "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f40c5f31ef246aeb1000ffb4e40f2991"
                  },
                  {
                    "starts_at": {
                      "day": 1,
                      "month": 1,
                      "year": 2017
                    },
                    "ends_at": {
                      "day": 31,
                      "month": 12,
                      "year": 2024
                    },
                    "company": "Starbucks",
                    "company_linkedin_profile_url": "https://www.linkedin.com/company/starbucks",
                    "company_facebook_profile_url": null,
                    "title": "Board Member",
                    "description": null,
                    "location": null,
                    "logo_url": "https://assets.enrichlayer.com/ll/C4D0BAQEQxk9y2rk7Hw/company-logo_100_100/company-logo_100_100/0/1631316692276?e=2147483647&v=beta&t=itdoVXP3gnqtQ7Grar4B3YoPyw-Ors9bKMZlZpb0QcY"
                  }
                ],
                "education": [
                  {
                    "starts_at": {
                      "day": 1,
                      "month": 1,
                      "year": 1994
                    },
                    "ends_at": {
                      "day": 31,
                      "month": 12,
                      "year": 1996
                    },
                    "field_of_study": null,
                    "degree_name": null,
                    "school": "The University of Chicago Booth School of Business",
                    "school_linkedin_profile_url": "https://www.linkedin.com/company/universityofchicagoboothschoolofbusiness",
                    "school_facebook_profile_url": null,
                    "description": null,
                    "logo_url": "https://assets.enrichlayer.com/pp/profilepic/88fa467a62fbfc5325394253f14e8700",
                    "grade": null,
                    "activities_and_societies": null
                  },
                  {
                    "starts_at": {
                      "day": null,
                      "month": null,
                      "year": null
                    },
                    "ends_at": null,
                    "field_of_study": "Electrical Engineering",
                    "degree_name": "Bachelor’s Degree",
                    "school": "Manipal Institute of Technology, Manipal",
                    "school_linkedin_profile_url": "https://www.linkedin.com/company/manipal-institute-of-technology",
                    "school_facebook_profile_url": null,
                    "description": null,
                    "logo_url": "https://assets.enrichlayer.com/pp/profilepic/2aef6f72c73e3b40dbd56163897bdc04",
                    "grade": null,
                    "activities_and_societies": null
                  },
                  {
                    "starts_at": {
                      "day": null,
                      "month": null,
                      "year": null
                    },
                    "ends_at": null,
                    "field_of_study": "Computer Science",
                    "degree_name": "Master’s Degree",
                    "school": "University of Wisconsin-Milwaukee",
                    "school_linkedin_profile_url": "https://www.linkedin.com/company/uwmilwaukee",
                    "school_facebook_profile_url": null,
                    "description": null,
                    "logo_url": "https://assets.enrichlayer.com/pp/profilepic/7916094135030c5846f34230e03dbaa2",
                    "grade": null,
                    "activities_and_societies": null
                  }
                ],
                "accomplishment_organisations": [],
                "accomplishment_publications": [],
                "accomplishment_honors_awards": [],
                "accomplishment_patents": [],
                "accomplishment_courses": [],
                "accomplishment_projects": [],
                "accomplishment_test_scores": [],
                "volunteer_work": [],
                "certifications": [],
                "connections": 500,
                "people_also_viewed": [
                  {
                    "link": "https://www.linkedin.com/in/kevinolearytv",
                    "name": "Kevin O'Leary",
                    "summary": "Chairman, O’Leary Ventures and Beanstox",
                    "location": "West Palm Beach"
                  },
                  {
                    "link": "https://www.linkedin.com/in/aaronmartinfc",
                    "name": "Aaron Martin",
                    "summary": "Vice President Healthcare at Amazon",
                    "location": "Seattle"
                  },
                  {
                    "link": "https://www.linkedin.com/in/guthriescott",
                    "name": "Scott Guthrie",
                    "summary": "Executive Vice President at Microsoft",
                    "location": "Bellevue"
                  },
                  {
                    "link": "https://www.linkedin.com/in/toufisaliba",
                    "name": "Toufi Saliba",
                    "summary": "Author TODA/IP  .  | . CEO HyperCycle.AI  .  | . Chair - International Protocols for AI Security IEEE",
                    "location": "San Francisco"
                  },
                  {
                    "link": "https://www.linkedin.com/in/rajeshgopinathan",
                    "name": "Rajesh Gopinathan",
                    "summary": null,
                    "location": "Mumbai"
                  }
                ],
                "recommendations": [],
                "activities": [
                  {
                    "title": "Microsoft has been positioned as a Leader for the fourteenth consecutive year in the Gartner 2021 Magic Quadrant for Analytics and Business…",
                    "link": null,
                    "activity_status": null
                  },
                  {
                    "title": "On March 17, we’re trying something we’ve never done before: Microsoft will host #Include2021, a free, global, digital event focused on diversity &…",
                    "link": null,
                    "activity_status": null
                  },
                  {
                    "title": "I talked to Bill Gates about his important new book, which provides a framework to reduce our world’s greenhouse gas emissions to zero, including…",
                    "link": null,
                    "activity_status": null
                  }
                ],
                "similarly_named_profiles": [],
                "articles": [],
                "groups": [],
                "meta": {
                  "thin_profile": false,
                  "last_updated": "2025-03-15T08:22:00Z"
                }
              },
              "last_updated": "2023-10-26T11:34:30Z"
            }
          ],
          "next_page": null
        }
      },
      "ReverseEmailUrlEnrichResult": {
        "type": "object",
        "properties": {
          "linkedin_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Returns the closest match of the profile that belongs to this email address."
          },
          "twitter_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Returns the Twitter Profile URL that belongs to this email address."
          },
          "facebook_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Returns the Facebook Profile URL that belongs to this email address."
          },
          "url": {
            "type": "string",
            "nullable": true
          },
          "similarity_score": {
            "type": "number",
            "nullable": true,
            "description": "This metric quantifies the degree of resemblance between the queried profile and the retrieved one. Scores range from `0` (no similarity) to `1` (high similarity). In the event that our dataset lacks a pertinent profile for comparison, the assigned score might be `null`."
          },
          "backwards_compatibility_notes": {
            "type": "string",
            "nullable": true
          },
          "profile": {
            "$ref": "#/components/schemas/PersonEndpointResponse",
            "nullable": true
          },
          "last_updated": {
            "type": "string",
            "nullable": true,
            "description": "ISO 8601 timestamp since the enriched profile was last retrieved."
          }
        },
        "example": {
          "linkedin_profile_url": "https://www.linkedin.com/in/kevinolearytv",
          "twitter_profile_url": "https://www.twitter.com/enrichlayer",
          "facebook_profile_url": "https://www.facebook.com/zuck",
          "similarity_score": 0.82,
          "profile": {
            "public_identifier": "satyanadella",
            "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/7d369850c9fe8c35e78a6a50c75334f5",
            "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/fe878f911fecd238e169a23b12103b0e",
            "first_name": "Satya",
            "last_name": "Nadella",
            "full_name": "Satya Nadella",
            "follower_count": 11888127,
            "occupation": "Chairman and CEO at Microsoft",
            "headline": "Chairman and CEO at Microsoft",
            "summary": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every organization on the planet to achieve more.",
            "country": "US",
            "country_full_name": "United States of America",
            "city": "Redmond",
            "state": "Washington",
            "experiences": [
              {
                "starts_at": {
                  "day": 1,
                  "month": 2,
                  "year": 2014
                },
                "ends_at": null,
                "company": "Microsoft",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
                "company_facebook_profile_url": null,
                "title": "Chairman and CEO",
                "description": null,
                "location": "Greater Seattle Area",
                "logo_url": "https://assets.enrichlayer.com/ll/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY"
              },
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 2018
                },
                "ends_at": null,
                "company": "University of Chicago",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/uchicago",
                "company_facebook_profile_url": null,
                "title": "Member Board Of Trustees",
                "description": null,
                "location": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f40c5f31ef246aeb1000ffb4e40f2991"
              },
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 2017
                },
                "ends_at": {
                  "day": 31,
                  "month": 12,
                  "year": 2024
                },
                "company": "Starbucks",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/starbucks",
                "company_facebook_profile_url": null,
                "title": "Board Member",
                "description": null,
                "location": null,
                "logo_url": "https://assets.enrichlayer.com/ll/C4D0BAQEQxk9y2rk7Hw/company-logo_100_100/company-logo_100_100/0/1631316692276?e=2147483647&v=beta&t=itdoVXP3gnqtQ7Grar4B3YoPyw-Ors9bKMZlZpb0QcY"
              }
            ],
            "education": [
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 1994
                },
                "ends_at": {
                  "day": 31,
                  "month": 12,
                  "year": 1996
                },
                "field_of_study": null,
                "degree_name": null,
                "school": "The University of Chicago Booth School of Business",
                "school_linkedin_profile_url": "https://www.linkedin.com/company/universityofchicagoboothschoolofbusiness",
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/88fa467a62fbfc5325394253f14e8700",
                "grade": null,
                "activities_and_societies": null
              },
              {
                "starts_at": {
                  "day": null,
                  "month": null,
                  "year": null
                },
                "ends_at": null,
                "field_of_study": "Electrical Engineering",
                "degree_name": "Bachelor’s Degree",
                "school": "Manipal Institute of Technology, Manipal",
                "school_linkedin_profile_url": "https://www.linkedin.com/company/manipal-institute-of-technology",
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/2aef6f72c73e3b40dbd56163897bdc04",
                "grade": null,
                "activities_and_societies": null
              },
              {
                "starts_at": {
                  "day": null,
                  "month": null,
                  "year": null
                },
                "ends_at": null,
                "field_of_study": "Computer Science",
                "degree_name": "Master’s Degree",
                "school": "University of Wisconsin-Milwaukee",
                "school_linkedin_profile_url": "https://www.linkedin.com/company/uwmilwaukee",
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/7916094135030c5846f34230e03dbaa2",
                "grade": null,
                "activities_and_societies": null
              }
            ],
            "accomplishment_organisations": [],
            "accomplishment_publications": [],
            "accomplishment_honors_awards": [],
            "accomplishment_patents": [],
            "accomplishment_courses": [],
            "accomplishment_projects": [],
            "accomplishment_test_scores": [],
            "volunteer_work": [],
            "certifications": [],
            "connections": 500,
            "people_also_viewed": [
              {
                "link": "https://www.linkedin.com/in/kevinolearytv",
                "name": "Kevin O'Leary",
                "summary": "Chairman, O’Leary Ventures and Beanstox",
                "location": "West Palm Beach"
              },
              {
                "link": "https://www.linkedin.com/in/aaronmartinfc",
                "name": "Aaron Martin",
                "summary": "Vice President Healthcare at Amazon",
                "location": "Seattle"
              },
              {
                "link": "https://www.linkedin.com/in/guthriescott",
                "name": "Scott Guthrie",
                "summary": "Executive Vice President at Microsoft",
                "location": "Bellevue"
              },
              {
                "link": "https://www.linkedin.com/in/toufisaliba",
                "name": "Toufi Saliba",
                "summary": "Author TODA/IP  .  | . CEO HyperCycle.AI  .  | . Chair - International Protocols for AI Security IEEE",
                "location": "San Francisco"
              },
              {
                "link": "https://www.linkedin.com/in/rajeshgopinathan",
                "name": "Rajesh Gopinathan",
                "summary": null,
                "location": "Mumbai"
              }
            ],
            "recommendations": [],
            "activities": [
              {
                "title": "Microsoft has been positioned as a Leader for the fourteenth consecutive year in the Gartner 2021 Magic Quadrant for Analytics and Business…",
                "link": null,
                "activity_status": null
              },
              {
                "title": "On March 17, we’re trying something we’ve never done before: Microsoft will host #Include2021, a free, global, digital event focused on diversity &…",
                "link": null,
                "activity_status": null
              },
              {
                "title": "I talked to Bill Gates about his important new book, which provides a framework to reduce our world’s greenhouse gas emissions to zero, including…",
                "link": null,
                "activity_status": null
              }
            ],
            "similarly_named_profiles": [],
            "articles": [],
            "groups": [],
            "meta": {
              "thin_profile": false,
              "last_updated": "2025-03-15T08:22:00Z"
            }
          },
          "last_updated": "2023-10-26T11:34:30Z"
        }
      },
      "ReverseContactNumberResult": {
        "type": "object",
        "properties": {
          "linkedin_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Returns the closest match of the profile that belongs to this phone number."
          },
          "twitter_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Returns the Twitter Profile URL that belongs to this phone number."
          },
          "facebook_profile_url": {
            "type": "string",
            "nullable": true,
            "description": "Returns the Facebook Profile URL that belongs to this phone number."
          }
        },
        "example": {
          "linkedin_profile_url": "https://www.linkedin.com/in/kevinolearytv",
          "twitter_profile_url": "https://www.twitter.com/enrichlayer",
          "facebook_profile_url": "https://www.facebook.com/zuck"
        }
      },
      "ExtractionEmailResult": {
        "type": "object",
        "properties": {
          "email_queue_count": {
            "type": "integer",
            "description": "Total queue in the email extraction process"
          }
        },
        "example": {
          "email_queue_count": null
        }
      },
      "JobLocation": {
        "type": "object",
        "properties": {
          "country": {
            "type": "string",
            "nullable": true,
            "description": "Full country name."
          },
          "region": {
            "type": "string",
            "nullable": true,
            "description": "Region."
          },
          "city": {
            "type": "string",
            "nullable": true,
            "description": "The city for the job."
          },
          "postal_code": {
            "type": "string",
            "nullable": true,
            "description": "Postal code of the business location for the job."
          },
          "latitude": {
            "type": "number",
            "nullable": true,
            "description": "Latitude coordinates of the business location for the job."
          },
          "longitude": {
            "type": "number",
            "nullable": true,
            "description": "Longitude coordinates of the business location for the job."
          },
          "street": {
            "type": "string",
            "nullable": true,
            "description": "Street address of the business location for the job."
          }
        },
        "example": {
          "country": "United States",
          "region": "Hawaii",
          "city": null,
          "postal_code": null,
          "latitude": null,
          "longitude": null,
          "street": null
        }
      },
      "JobCompany": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "nullable": true,
            "description": "The name of the company."
          },
          "url": {
            "type": "string",
            "nullable": true,
            "description": "The Company Profile URL of the job posting company."
          },
          "logo": {
            "type": "string",
            "nullable": true,
            "description": "The URL to the logo of this company."
          }
        },
        "example": {
          "name": "Microsoft",
          "url": "https://www.linkedin.com/company/microsoft",
          "logo": "https://assets.enrichlayer.com/pp/profilepic/4a59d4a33444509d96ad84be4aef3593"
        }
      },
      "JobProfile": {
        "type": "object",
        "properties": {
          "linkedin_internal_id": {
            "type": "string",
            "nullable": true,
            "description": "The internal ID representation of this job."
          },
          "job_description": {
            "type": "string",
            "nullable": true,
            "description": "Description of the posted job."
          },
          "apply_url": {
            "type": "string",
            "nullable": true,
            "description": "The URL to apply for this job. Will return `null` when a job is no longer accepting applications."
          },
          "title": {
            "type": "string",
            "nullable": true,
            "description": "Title of the posted job."
          },
          "location": {
            "$ref": "#/components/schemas/JobLocation"
          },
          "company": {
            "$ref": "#/components/schemas/JobCompany"
          },
          "seniority_level": {
            "type": "string",
            "nullable": true,
            "description": "The seniority level for this role."
          },
          "industry": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "A list of industries that the company which posted this job lies in."
          },
          "employment_type": {
            "type": "string",
            "nullable": true,
            "description": "Type of employment."
          },
          "job_functions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "A list of job functions that this role is expected to cover."
          },
          "total_applicants": {
            "type": "integer",
            "nullable": true,
            "description": "Total applicants for this job so far."
          }
        },
        "example": {
          "linkedin_internal_id": "content-strategist-at-microsoft-3257696537",
          "job_description": "The Global Demand Center (GDC) within the Cloud Marketing group is leading the marketing transformation of Microsoft’s largest and fastest growing commercial businesses. Our always-on integrated marketing programs work to nurture and acquire new customers across segments, targeting business and technical audiences across our commercial cloud portfolio, with programs available in 42 markets and 30 languages. The GDC team is modernizing and integrating these channels through advanced analytics, marketing automation, and digital marketing. We are on a mission to drive market share, consumption, and consistent double-digit+ revenue growth. Content is the fuel that drives the digitally connected customer journeys at the core of the GDC engine, and we’re looking for a skilled, self-motivated, data-driven content strategist to build the content that motivates customers to take action. The Content Strategist will develop and execute content strategies for the ever-critical security space. You will be accountable for understanding the business priorities, getting close to our target audiences, defining the content journeys that attract, nurture, inspire, and retain customers, and manage quality execution and delivery of the content. You will work closely with your counterparts, the integrated marketing strategists, to drive business outcomes. Your network will include product marketers, integrated marketers, relationship marketers, sales, engineering, and agency partners to develop and execute on your plan. Our team: The Lifecycle Programs team is a fast-paced digital marketing organization. We put a focus on getting things done, simplifying anything and everything, and having fun while doing it. We all believe in connecting with customers at scale, supporting them at each stage of the customer journey, from early awareness and consideration, through onboarding and post purchase engagement. You will be in the middle of it all helping to identify the right content that delivers what customers want—where they want it, when they want it, and how they want it.   \n  \n**_Responsibilities  \n_**\n  * Define content journeys for Security and IT professionals across industries.\n  * Build the resulting content strategies designed to accelerate the customer through the lifecycle.\n  * Create a content plan to address the insights in the customer journey and strategy, ensuring the content is aligned to what the customer needs at each stage.\n  * Deliver the content through our internal Studio or with select agency partners.\n  * Be a customer advocate. Relentlessly champion the customer and the experiences they have with the content you create—how they find it, how they consume it, how they use it to make decisions.\n  * Leverage data and market insights for decision making including content optimization and new concept development.  \n\n\n**_Qualifications  \n  \n_** **Required/Minimum Qualifications  \n**\n  * Bachelor's Degree in Business, Marketing, Communications, Economics, Public Relations, or related field AND 1+ year(s) integrated marketing (e.g., digital, relationship, social media, campaign), event management, marketing strategy, business planning, marketing operations, or related work experience\n  * OR equivalent experience.  \n\n\n**_Additional Or Preferred Qualifications  \n_**\n  * Bachelor's Degree in Business, Marketing, Communications, Economics, Public Relations, or related field AND 3+ years integrated marketing (e.g., digital, relationship, social media, campaign), event management, marketing strategy, business planning, marketing operations, or related work experience\n  * OR equivalent experience.\n  * Strong customer centric mindset and demonstrated ability to put the customer first.\n  * Clear and persuasive communication skills, both written and verbal.\n  * Experience with program performance tracking and communications.\n  * Recognized as a self-starter with a bias for action.\n  * Creative problem-solving skills, and a growth mindset approach\n  * Experience managing across highly matrixed organizations, often with competing priorities.\n  * A demonstrated track record of business impact through content\n  * Well-versed in digital marketing best practices, including journey mapping.\n  * Understanding of content disciplines, including SEO, content strategy, and execution.\n  * Preferred, but not required: experience with commercial technology sales process  \n\n\nNarrative   \n  \nIntegrated Marketing IC3 - The typical base pay range for this role across the U.S. is USD $80,900 - $162,200 per year. There is a different range applicable to specific work locations, within the San Francisco Bay area and New York City metropolitan area, and the base pay range for this role in those locations is USD $105,300 - $176,900 per year.   \n  \nMicrosoft has different base pay ranges for different work locations within the United States, which allows us to pay employees competitively and consistently in different geographic markets (see below). The range above reflects the potential base pay across the U.S. for this role (except as noted below); the applicable base pay range will depend on what ultimately is determined to be the candidate’s primary work location. Individual base pay depends on various factors, in addition to primary work location, such as complexity and responsibility of role, job duties/requirements, and relevant experience and skills. Base pay ranges are reviewed and typically updated each year. Offers are made within the base pay range applicable at the time.   \n  \nAt Microsoft certain roles are eligible for additional rewards, including merit increases, annual bonus and stock. These awards are allocated based on individual performance. In addition, certain roles also have the opportunity to earn sales incentives based on revenue or utilization, depending on the terms of the plan and the employee’s role. Benefits/perks listed here may vary depending on the nature of employment with Microsoft and the country work location. U.S.-based employees have access to healthcare benefits, a 401(k) plan and company match, short-term and long-term disability coverage, basic life insurance, wellbeing benefits, paid vacation time, paid sick and mental health time, and several paid holidays, among others.   \n  \nOur commitment to pay equity   \n  \nWe are committed to the principle of pay equity – paying employees equitably for substantially similar work. To learn more about pay equity and our other commitments to increase representation and strengthen our culture of inclusion, check out our annual Diversity & Inclusion Report. ( https://www.microsoft.com/en-us/diversity/inside-microsoft/annual-report )   \n  \nUnderstanding roles at Microsoft   \n  \nThe top of this page displays the role for which the base pay ranges apply – Integrated Marketing IC3. The way we define roles includes two things: discipline (the type of work) and career stage (scope and complexity). The career stage has two parts – the first identifies whether the role is a manager (M), an individual contributor (IC), an admin-technician-retail (ATR) job, or an intern. The second part identifies the relative seniority of the role – a higher number (or later letter alphabetically in the case of ATR) indicates greater scope and complexity.   \n  \nMicrosoft is an equal opportunity employer. All qualified applicants will receive consideration for employment without regard to age, ancestry, color, family or medical care leave, gender identity or expression, genetic information, marital status, medical condition, national origin, physical or mental disability, political affiliation, protected veteran status, race, religion, sex (including pregnancy), sexual orientation, or any other characteristic protected by applicable laws, regulations and ordinances. We also consider qualified applicants regardless of criminal histories, consistent with legal requirements. If you need assistance and/or a reasonable accommodation due to a disability during the application or the recruiting process, please send a request via the Accommodation request form.   \n  \nThe salary for this role in the state of Colorado is between $108,200 and $162,200.   \n  \nAt Microsoft, certain roles are eligible for additional rewards, including annual bonus and stock. These awards are allocated based on individual performance. In addition, certain roles also have the opportunity to earn sales incentives based on revenue or utilization, depending on the terms of the plan and the employee’s role. Benefits/perks listed below may vary depending on the nature of your employment with Microsoft and the country where you work. \n",
          "apply_url": "https://www.linkedin.com/jobs/view/externalApply/3257696537?url=https%3A%2F%2Fcareers%2Emicrosoft%2Ecom%2Fus%2Fen%2Fjob%2F1451110%2FContent-Strategist%3Fjobsource%3Dlinkedin%26utm_source%3Dlinkedin%26utm_medium%3Dlinkedin%26utm_campaign%3Dlinkedin-feed&urlHash=I9BQ&trk=public_jobs_apply-link-offsite",
          "title": "Content Strategist",
          "location": {
            "country": "United States",
            "region": "Hawaii",
            "city": null,
            "postal_code": null,
            "latitude": null,
            "longitude": null,
            "street": null
          },
          "company": {
            "name": "Microsoft",
            "url": "https://www.linkedin.com/company/microsoft",
            "logo": "https://assets.enrichlayer.com/pp/profilepic/4a59d4a33444509d96ad84be4aef3593"
          },
          "seniority_level": "Mid-Senior level",
          "industry": [
            "IT Services and IT Consulting, Computer Hardware Manufacturing, and Software Development"
          ],
          "employment_type": "Full-time",
          "job_functions": [
            "Marketing"
          ],
          "total_applicants": 200
        }
      },
      "JobListEntry": {
        "type": "object",
        "properties": {
          "company": {
            "type": "string",
            "nullable": true,
            "description": "The name of the company that posted this job."
          },
          "company_url": {
            "type": "string",
            "nullable": true,
            "description": "The Company Profile URL that posted this job."
          },
          "job_title": {
            "type": "string",
            "nullable": true,
            "description": "Job title of the posted job."
          },
          "job_url": {
            "type": "string",
            "nullable": true,
            "description": "Job Profile URL. You can fetch details about this job using this URL via the [Job Profile API Endpoint](/docs/api/v2/jobs-api/job-profile)."
          },
          "list_date": {
            "type": "string",
            "nullable": true,
            "description": "The date that this job was listed."
          },
          "location": {
            "type": "string",
            "nullable": true,
            "description": "The job location."
          }
        },
        "example": {
          "company": "Microsoft",
          "company_url": "https://www.linkedin.com/company/microsoft",
          "job_title": "Product Management: Intern Opportunities for University Students",
          "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203330682",
          "list_date": "2022-10-09",
          "location": "New York, NY"
        }
      },
      "JobListPage": {
        "type": "object",
        "properties": {
          "job": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/JobListEntry"
            }
          },
          "next_page_no": {
            "type": "integer",
            "nullable": true
          },
          "next_page_api_url": {
            "type": "string",
            "nullable": true,
            "description": "The URL to the next page of results. This will be null for the final page."
          },
          "previous_page_no": {
            "type": "integer",
            "nullable": true
          },
          "previous_page_api_url": {
            "type": "string",
            "nullable": true,
            "description": "The URL to the previous page of results. This will be null for the first page."
          }
        },
        "example": {
          "job": [
            {
              "company": "Microsoft",
              "company_url": "https://www.linkedin.com/company/microsoft",
              "job_title": "Product Management: Intern Opportunities for University Students",
              "job_url": "https://www.linkedin.com/jobs/view/product-management-intern-opportunities-for-university-students-at-microsoft-3203330682",
              "list_date": "2022-10-09",
              "location": "New York, NY"
            },
            {
              "company": "Microsoft",
              "company_url": "https://www.linkedin.com/company/microsoft",
              "job_title": "Content Strategist",
              "job_url": "https://www.linkedin.com/jobs/view/content-strategist-at-microsoft-3257692764",
              "list_date": "2022-10-21",
              "location": "United States"
            }
          ],
          "next_page_no": 1,
          "next_page_api_url": "http://enrichlayer.com/api/pc/company/job?pagination=eyJwYWdlIjogMX0&search_id=1035",
          "previous_page_no": null,
          "previous_page_api_url": "https://enrichlayer.com/api/pc/company/job?pagination=eyJwYWdlIjogMX0&search_id=1035"
        }
      },
      "JobListCount": {
        "type": "object",
        "properties": {
          "count": {
            "type": "integer"
          }
        },
        "example": {
          "count": 887622
        }
      },
      "Follower": {
        "type": "object",
        "properties": {
          "linkedin_profile_url": {
            "type": "string",
            "nullable": true
          },
          "twitter_profile_url": {
            "type": "string"
          },
          "email": {
            "type": "string",
            "nullable": true
          }
        },
        "example": {
          "linkedin_profile_url": "https://www.linkedin.com/in/agiliosoftware",
          "twitter_profile_url": "https://www.x.com/agilio_software",
          "email": null
        }
      },
      "FollowerList": {
        "type": "object",
        "properties": {
          "followers": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Follower"
            },
            "description": "A list of individual followers of a company."
          },
          "next_page": {
            "type": "string",
            "nullable": true,
            "description": "The API URI that will lead to the next page of results. This will be null for the final page."
          }
        },
        "example": {
          "followers": [
            {
              "linkedin_profile_url": "https://www.linkedin.com/in/agiliosoftware",
              "twitter_profile_url": "https://www.x.com/agilio_software",
              "email": null
            },
            {
              "linkedin_profile_url": "https://www.linkedin.com/in/air-techniques",
              "twitter_profile_url": "https://www.x.com/airtechniques",
              "email": null
            }
          ],
          "next_page": null
        }
      },
      "FollowerListCount": {
        "type": "object",
        "properties": {
          "follower_count": {
            "type": "integer",
            "description": "A count of all individuals that are probable customers or followers."
          }
        },
        "example": {
          "follower_count": 74
        }
      },
      "CompanyResult": {
        "type": "object",
        "properties": {
          "linkedin_profile_url": {
            "type": "string",
            "description": "The Profile URL of the company"
          },
          "profile": {
            "$ref": "#/components/schemas/LinkedinCompany",
            "nullable": true,
            "description": "If `enrich_profiles=enrich` is specified, the company's entire profile is returned. Otherwise this field will return `null`."
          },
          "last_updated": {
            "type": "string",
            "nullable": true,
            "description": "ISO 8601 timestamp since the enriched profile was last retrieved."
          }
        },
        "example": {
          "linkedin_profile_url": "https://www.linkedin.com/company/apple/",
          "profile": {
            "linkedin_internal_id": "1441",
            "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.\nCheck out our career opportunities at careers.google.com.",
            "website": "https://goo.gle/3m1IN7m",
            "industry": "Software Development",
            "company_size": [
              10001,
              null
            ],
            "company_size_on_linkedin": 319856,
            "hq": {
              "country": "US",
              "city": "Mountain View",
              "postal_code": "94043",
              "line_1": "1600 Amphitheatre Parkway",
              "is_hq": true,
              "state": "CA"
            },
            "company_type": "PUBLIC_COMPANY",
            "founded_year": null,
            "specialities": [
              "search",
              "ads"
            ],
            "locations": [
              {
                "country": "US",
                "city": "Mountain View",
                "postal_code": "94043",
                "line_1": "1600 Amphitheatre Parkway",
                "is_hq": true,
                "state": "CA"
              },
              {
                "country": "US",
                "city": "New York",
                "postal_code": "10011",
                "line_1": "111 8th Ave",
                "is_hq": null,
                "state": "NY"
              }
            ],
            "name": "Google",
            "tagline": "Think Different - But Not Too Different",
            "universal_name_id": "google",
            "profile_pic_url": "https://assets.enrichlayer.com/pp/...",
            "background_cover_image_url": "https://assets.enrichlayer.com/pp/...",
            "search_id": "1441",
            "similar_companies": [
              {
                "name": "Amazon",
                "link": "https://www.linkedin.com/company/amazon",
                "industry": "Software Development",
                "location": "Seattle, WA"
              },
              {
                "name": "Microsoft",
                "link": "https://www.linkedin.com/company/microsoft",
                "industry": "Software Development",
                "location": "Redmond, Washington"
              }
            ],
            "affiliated_companies": [
              {
                "name": "YouTube",
                "link": "https://www.linkedin.com/company/youtube",
                "industry": "Software Development",
                "location": "San Bruno, CA"
              },
              {
                "name": "Google Cloud",
                "link": "https://www.linkedin.com/showcase/google-cloud",
                "industry": "Software Development",
                "location": "Mountain View, California"
              }
            ],
            "updates": [
              {
                "article_link": null,
                "image": "https://assets.enrichlayer.com/pp/profilepic/57ef9922f8484ada3bd6001d1c68afa1",
                "posted_on": {
                  "day": 13,
                  "month": 9,
                  "year": 2022
                },
                "text": "Want to kick start your #LifeAtGoogle but not sure where to begin? Explore our Build Your Future site, where you can learn about developmental programs, learn tips for future interviews, sign up for informational events, and even hear real stories from Googlers who’ve been where you are now. Get started → https://bit.ly/3SKPzQB",
                "total_likes": 4267
              },
              {
                "article_link": null,
                "image": "https://assets.enrichlayer.com/pp/profilepic/57ef9922f8484ada3bd6001d1c68afa1",
                "posted_on": null,
                "text": "Ariana, welcome to Google. Here’s to a year full of growth, learning, and experiences at #LifeAtGoogle! 🎉",
                "total_likes": 397
              }
            ],
            "follower_count": 27472792,
            "acquisitions": {
              "acquired": [
                {
                  "linkedin_profile_url": "https://www.linkedin.com/company/apple",
                  "crunchbase_profile_url": "https://www.crunchbase.com/organization/apple",
                  "announced_date": {
                    "day": 1,
                    "month": 4,
                    "year": 1976
                  },
                  "price": 300000000
                }
              ],
              "acquired_by": {
                "linkedin_profile_url": "https://www.linkedin.com/company/nvidia",
                "crunchbase_profile_url": "https://www.crunchbase.com/organization/nvidia",
                "announced_date": {
                  "day": 6,
                  "month": 3,
                  "year": 2020
                },
                "price": 10000
              }
            },
            "exit_data": [
              {
                "linkedin_profile_url": "https://www.linkedin.com/company/motiondsp",
                "crunchbase_profile_url": "https://www.crunchbase.com/organization/motiondsp",
                "name": "MotionDSP"
              }
            ],
            "extra": {
              "crunchbase_profile_url": "https://www.crunchbase.com/organization/nvidia",
              "ipo_status": "Public",
              "crunchbase_rank": 13,
              "founding_date": {
                "day": 1,
                "month": 1,
                "year": 2000
              },
              "operating_status": "Active",
              "company_type": "For Profit",
              "contact_email": "info@nvidia.com",
              "phone_number": "(140) 848-6200",
              "facebook_id": "NVIDIA.IN",
              "twitter_id": "nvidia",
              "number_of_funding_rounds": 3,
              "total_funding_amount": 4000000,
              "stock_symbol": "NASDAQ:NVDA",
              "ipo_date": {
                "day": 1,
                "month": 1,
                "year": 2000
              },
              "number_of_lead_investors": 3,
              "number_of_investors": 4,
              "total_fund_raised": 1000,
              "number_of_investments": 50,
              "number_of_lead_investments": 3,
              "number_of_exits": 7,
              "number_of_acquisitions": 2
            },
            "funding_data": [
              {
                "funding_type": "Grant",
                "money_raised": 25000000,
                "announced_date": {
                  "day": 1,
                  "month": 1,
                  "year": 2001
                },
                "number_of_investor": 1,
                "investor_list": [
                  {
                    "linkedin_profile_url": "https://linkedin.com/company/darpa",
                    "name": "DARPA",
                    "type": "organization"
                  }
                ]
              }
            ],
            "categories": [
              "artificial-intelligence",
              "virtual-reality"
            ],
            "meta": {
              "thin_profile": null,
              "last_updated": "2023-10-26T11:34:30Z"
            }
          },
          "last_updated": "2023-10-26T11:34:30Z"
        }
      },
      "CompanySearchResult": {
        "type": "object",
        "properties": {
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CompanyResult"
            },
            "description": "A list of CompanyResult objects."
          },
          "next_page": {
            "type": "string",
            "nullable": true,
            "description": "The URL to the next page of search results. This will be null for the final page."
          },
          "total_result_count": {
            "type": "integer",
            "description": "Total number of results found. Not filtered by             freshness, as `use_cache=if-recent` only affects served results,                 not the count calculation."
          }
        },
        "example": {
          "results": [
            {
              "linkedin_profile_url": "https://www.linkedin.com/company/apple/",
              "profile": {
                "linkedin_internal_id": "1441",
                "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.\nCheck out our career opportunities at careers.google.com.",
                "website": "https://goo.gle/3m1IN7m",
                "industry": "Software Development",
                "company_size": [
                  10001,
                  null
                ],
                "company_size_on_linkedin": 319856,
                "hq": {
                  "country": "US",
                  "city": "Mountain View",
                  "postal_code": "94043",
                  "line_1": "1600 Amphitheatre Parkway",
                  "is_hq": true,
                  "state": "CA"
                },
                "company_type": "PUBLIC_COMPANY",
                "founded_year": null,
                "specialities": [
                  "search",
                  "ads"
                ],
                "locations": [
                  {
                    "country": "US",
                    "city": "Mountain View",
                    "postal_code": "94043",
                    "line_1": "1600 Amphitheatre Parkway",
                    "is_hq": true,
                    "state": "CA"
                  },
                  {
                    "country": "US",
                    "city": "New York",
                    "postal_code": "10011",
                    "line_1": "111 8th Ave",
                    "is_hq": null,
                    "state": "NY"
                  }
                ],
                "name": "Google",
                "tagline": "Think Different - But Not Too Different",
                "universal_name_id": "google",
                "profile_pic_url": "https://assets.enrichlayer.com/pp/...",
                "background_cover_image_url": "https://assets.enrichlayer.com/pp/...",
                "search_id": "1441",
                "similar_companies": [
                  {
                    "name": "Amazon",
                    "link": "https://www.linkedin.com/company/amazon",
                    "industry": "Software Development",
                    "location": "Seattle, WA"
                  },
                  {
                    "name": "Microsoft",
                    "link": "https://www.linkedin.com/company/microsoft",
                    "industry": "Software Development",
                    "location": "Redmond, Washington"
                  }
                ],
                "affiliated_companies": [
                  {
                    "name": "YouTube",
                    "link": "https://www.linkedin.com/company/youtube",
                    "industry": "Software Development",
                    "location": "San Bruno, CA"
                  },
                  {
                    "name": "Google Cloud",
                    "link": "https://www.linkedin.com/showcase/google-cloud",
                    "industry": "Software Development",
                    "location": "Mountain View, California"
                  }
                ],
                "updates": [
                  {
                    "article_link": null,
                    "image": "https://assets.enrichlayer.com/pp/profilepic/57ef9922f8484ada3bd6001d1c68afa1",
                    "posted_on": {
                      "day": 13,
                      "month": 9,
                      "year": 2022
                    },
                    "text": "Want to kick start your #LifeAtGoogle but not sure where to begin? Explore our Build Your Future site, where you can learn about developmental programs, learn tips for future interviews, sign up for informational events, and even hear real stories from Googlers who’ve been where you are now. Get started → https://bit.ly/3SKPzQB",
                    "total_likes": 4267
                  },
                  {
                    "article_link": null,
                    "image": "https://assets.enrichlayer.com/pp/profilepic/57ef9922f8484ada3bd6001d1c68afa1",
                    "posted_on": null,
                    "text": "Ariana, welcome to Google. Here’s to a year full of growth, learning, and experiences at #LifeAtGoogle! 🎉",
                    "total_likes": 397
                  }
                ],
                "follower_count": 27472792,
                "acquisitions": {
                  "acquired": [
                    {
                      "linkedin_profile_url": "https://www.linkedin.com/company/apple",
                      "crunchbase_profile_url": "https://www.crunchbase.com/organization/apple",
                      "announced_date": {
                        "day": 1,
                        "month": 4,
                        "year": 1976
                      },
                      "price": 300000000
                    }
                  ],
                  "acquired_by": {
                    "linkedin_profile_url": "https://www.linkedin.com/company/nvidia",
                    "crunchbase_profile_url": "https://www.crunchbase.com/organization/nvidia",
                    "announced_date": {
                      "day": 6,
                      "month": 3,
                      "year": 2020
                    },
                    "price": 10000
                  }
                },
                "exit_data": [
                  {
                    "linkedin_profile_url": "https://www.linkedin.com/company/motiondsp",
                    "crunchbase_profile_url": "https://www.crunchbase.com/organization/motiondsp",
                    "name": "MotionDSP"
                  }
                ],
                "extra": {
                  "crunchbase_profile_url": "https://www.crunchbase.com/organization/nvidia",
                  "ipo_status": "Public",
                  "crunchbase_rank": 13,
                  "founding_date": {
                    "day": 1,
                    "month": 1,
                    "year": 2000
                  },
                  "operating_status": "Active",
                  "company_type": "For Profit",
                  "contact_email": "info@nvidia.com",
                  "phone_number": "(140) 848-6200",
                  "facebook_id": "NVIDIA.IN",
                  "twitter_id": "nvidia",
                  "number_of_funding_rounds": 3,
                  "total_funding_amount": 4000000,
                  "stock_symbol": "NASDAQ:NVDA",
                  "ipo_date": {
                    "day": 1,
                    "month": 1,
                    "year": 2000
                  },
                  "number_of_lead_investors": 3,
                  "number_of_investors": 4,
                  "total_fund_raised": 1000,
                  "number_of_investments": 50,
                  "number_of_lead_investments": 3,
                  "number_of_exits": 7,
                  "number_of_acquisitions": 2
                },
                "funding_data": [
                  {
                    "funding_type": "Grant",
                    "money_raised": 25000000,
                    "announced_date": {
                      "day": 1,
                      "month": 1,
                      "year": 2001
                    },
                    "number_of_investor": 1,
                    "investor_list": [
                      {
                        "linkedin_profile_url": "https://linkedin.com/company/darpa",
                        "name": "DARPA",
                        "type": "organization"
                      }
                    ]
                  }
                ],
                "categories": [
                  "artificial-intelligence",
                  "virtual-reality"
                ],
                "meta": {
                  "thin_profile": null,
                  "last_updated": "2023-10-26T11:34:30Z"
                }
              },
              "last_updated": "2023-10-26T11:34:30Z"
            }
          ],
          "next_page": null,
          "total_result_count": 1
        }
      },
      "PersonResult": {
        "type": "object",
        "properties": {
          "linkedin_profile_url": {
            "type": "string",
            "description": "The Profile URL of the person.\nWe return URL-encoded version instead of raw UTF-8 version. For example, `https://www.linkedin.com/in/rodr%C3%ADguez/` instead of `https://www.linkedin.com/in/rodríguez/`."
          },
          "profile": {
            "$ref": "#/components/schemas/PublicPerson",
            "nullable": true,
            "description": "If `enrich_profiles=enrich` is specified, the person's entire profile is returned. Otherwise this field will return `null`."
          },
          "last_updated": {
            "type": "string",
            "nullable": true,
            "description": "ISO 8601 timestamp since the enriched profile was last retrieved."
          }
        },
        "example": {
          "linkedin_profile_url": "https://www.linkedin.com/in/satyanadella",
          "profile": {
            "public_identifier": "satyanadella",
            "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/7d369850c9fe8c35e78a6a50c75334f5",
            "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/fe878f911fecd238e169a23b12103b0e",
            "first_name": "Satya",
            "last_name": "Nadella",
            "full_name": "Satya Nadella",
            "follower_count": 11888127,
            "occupation": "Chairman and CEO at Microsoft",
            "headline": "Chairman and CEO at Microsoft",
            "summary": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every organization on the planet to achieve more.",
            "country": "US",
            "country_full_name": "United States of America",
            "city": "Redmond",
            "state": "Washington",
            "experiences": [
              {
                "starts_at": {
                  "day": 1,
                  "month": 2,
                  "year": 2014
                },
                "ends_at": null,
                "company": "Microsoft",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
                "company_facebook_profile_url": null,
                "title": "Chairman and CEO",
                "description": null,
                "location": "Greater Seattle Area",
                "logo_url": "https://assets.enrichlayer.com/ll/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY"
              },
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 2018
                },
                "ends_at": null,
                "company": "University of Chicago",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/uchicago",
                "company_facebook_profile_url": null,
                "title": "Member Board Of Trustees",
                "description": null,
                "location": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f40c5f31ef246aeb1000ffb4e40f2991"
              },
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 2017
                },
                "ends_at": {
                  "day": 31,
                  "month": 12,
                  "year": 2024
                },
                "company": "Starbucks",
                "company_linkedin_profile_url": "https://www.linkedin.com/company/starbucks",
                "company_facebook_profile_url": null,
                "title": "Board Member",
                "description": null,
                "location": null,
                "logo_url": "https://assets.enrichlayer.com/ll/C4D0BAQEQxk9y2rk7Hw/company-logo_100_100/company-logo_100_100/0/1631316692276?e=2147483647&v=beta&t=itdoVXP3gnqtQ7Grar4B3YoPyw-Ors9bKMZlZpb0QcY"
              }
            ],
            "education": [
              {
                "starts_at": {
                  "day": 1,
                  "month": 1,
                  "year": 1994
                },
                "ends_at": {
                  "day": 31,
                  "month": 12,
                  "year": 1996
                },
                "field_of_study": null,
                "degree_name": null,
                "school": "The University of Chicago Booth School of Business",
                "school_linkedin_profile_url": "https://www.linkedin.com/company/universityofchicagoboothschoolofbusiness",
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/88fa467a62fbfc5325394253f14e8700",
                "grade": null,
                "activities_and_societies": null
              },
              {
                "starts_at": {
                  "day": null,
                  "month": null,
                  "year": null
                },
                "ends_at": null,
                "field_of_study": "Electrical Engineering",
                "degree_name": "Bachelor’s Degree",
                "school": "Manipal Institute of Technology, Manipal",
                "school_linkedin_profile_url": "https://www.linkedin.com/company/manipal-institute-of-technology",
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/2aef6f72c73e3b40dbd56163897bdc04",
                "grade": null,
                "activities_and_societies": null
              },
              {
                "starts_at": {
                  "day": null,
                  "month": null,
                  "year": null
                },
                "ends_at": null,
                "field_of_study": "Computer Science",
                "degree_name": "Master’s Degree",
                "school": "University of Wisconsin-Milwaukee",
                "school_linkedin_profile_url": "https://www.linkedin.com/company/uwmilwaukee",
                "school_facebook_profile_url": null,
                "description": null,
                "logo_url": "https://assets.enrichlayer.com/pp/profilepic/7916094135030c5846f34230e03dbaa2",
                "grade": null,
                "activities_and_societies": null
              }
            ],
            "accomplishment_organisations": [],
            "accomplishment_publications": [],
            "accomplishment_honors_awards": [],
            "accomplishment_patents": [],
            "accomplishment_courses": [],
            "accomplishment_projects": [],
            "accomplishment_test_scores": [],
            "volunteer_work": [],
            "certifications": [],
            "connections": 500,
            "people_also_viewed": [
              {
                "link": "https://www.linkedin.com/in/kevinolearytv",
                "name": "Kevin O'Leary",
                "summary": "Chairman, O’Leary Ventures and Beanstox",
                "location": "West Palm Beach"
              },
              {
                "link": "https://www.linkedin.com/in/aaronmartinfc",
                "name": "Aaron Martin",
                "summary": "Vice President Healthcare at Amazon",
                "location": "Seattle"
              },
              {
                "link": "https://www.linkedin.com/in/guthriescott",
                "name": "Scott Guthrie",
                "summary": "Executive Vice President at Microsoft",
                "location": "Bellevue"
              },
              {
                "link": "https://www.linkedin.com/in/toufisaliba",
                "name": "Toufi Saliba",
                "summary": "Author TODA/IP  .  | . CEO HyperCycle.AI  .  | . Chair - International Protocols for AI Security IEEE",
                "location": "San Francisco"
              },
              {
                "link": "https://www.linkedin.com/in/rajeshgopinathan",
                "name": "Rajesh Gopinathan",
                "summary": null,
                "location": "Mumbai"
              }
            ],
            "recommendations": [],
            "activities": [
              {
                "title": "Microsoft has been positioned as a Leader for the fourteenth consecutive year in the Gartner 2021 Magic Quadrant for Analytics and Business…",
                "link": null,
                "activity_status": null
              },
              {
                "title": "On March 17, we’re trying something we’ve never done before: Microsoft will host #Include2021, a free, global, digital event focused on diversity &…",
                "link": null,
                "activity_status": null
              },
              {
                "title": "I talked to Bill Gates about his important new book, which provides a framework to reduce our world’s greenhouse gas emissions to zero, including…",
                "link": null,
                "activity_status": null
              }
            ],
            "similarly_named_profiles": [],
            "articles": [],
            "groups": [],
            "meta": {
              "thin_profile": false,
              "last_updated": "2025-03-15T08:22:00Z"
            }
          },
          "last_updated": "2023-10-26T11:34:30Z"
        }
      },
      "PersonSearchResult": {
        "type": "object",
        "properties": {
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PersonResult"
            },
            "description": "A list of PersonResult objects"
          },
          "next_page": {
            "type": "string",
            "nullable": true,
            "description": "The URL to the next page of search results. This will be null for the final page."
          },
          "total_result_count": {
            "type": "integer",
            "description": "Total number of results found. Not filtered by             freshness, as `use_cache=if-recent` only affects served results,                 not the count calculation."
          }
        },
        "example": {
          "results": [
            {
              "linkedin_profile_url": "https://www.linkedin.com/in/satyanadella",
              "profile": {
                "public_identifier": "satyanadella",
                "profile_pic_url": "https://assets.enrichlayer.com/pp/profilepic/7d369850c9fe8c35e78a6a50c75334f5",
                "background_cover_image_url": "https://assets.enrichlayer.com/pp/profilepic/fe878f911fecd238e169a23b12103b0e",
                "first_name": "Satya",
                "last_name": "Nadella",
                "full_name": "Satya Nadella",
                "follower_count": 11888127,
                "occupation": "Chairman and CEO at Microsoft",
                "headline": "Chairman and CEO at Microsoft",
                "summary": "As chairman and CEO of Microsoft, I define my mission and that of my company as empowering every person and every organization on the planet to achieve more.",
                "country": "US",
                "country_full_name": "United States of America",
                "city": "Redmond",
                "state": "Washington",
                "experiences": [
                  {
                    "starts_at": {
                      "day": 1,
                      "month": 2,
                      "year": 2014
                    },
                    "ends_at": null,
                    "company": "Microsoft",
                    "company_linkedin_profile_url": "https://www.linkedin.com/company/microsoft",
                    "company_facebook_profile_url": null,
                    "title": "Chairman and CEO",
                    "description": null,
                    "location": "Greater Seattle Area",
                    "logo_url": "https://assets.enrichlayer.com/ll/D560BAQH32RJQCl3dDQ/company-logo_100_100/B56ZYQ0mrGGoAU-/0/1744038948046/microsoft_logo?e=2147483647&v=beta&t=rr_7_bFRKp6umQxIHErPOZHtR8dMPIYeTjlKFdotJBY"
                  },
                  {
                    "starts_at": {
                      "day": 1,
                      "month": 1,
                      "year": 2018
                    },
                    "ends_at": null,
                    "company": "University of Chicago",
                    "company_linkedin_profile_url": "https://www.linkedin.com/company/uchicago",
                    "company_facebook_profile_url": null,
                    "title": "Member Board Of Trustees",
                    "description": null,
                    "location": null,
                    "logo_url": "https://assets.enrichlayer.com/pp/profilepic/f40c5f31ef246aeb1000ffb4e40f2991"
                  },
                  {
                    "starts_at": {
                      "day": 1,
                      "month": 1,
                      "year": 2017
                    },
                    "ends_at": {
                      "day": 31,
                      "month": 12,
                      "year": 2024
                    },
                    "company": "Starbucks",
                    "company_linkedin_profile_url": "https://www.linkedin.com/company/starbucks",
                    "company_facebook_profile_url": null,
                    "title": "Board Member",
                    "description": null,
                    "location": null,
                    "logo_url": "https://assets.enrichlayer.com/ll/C4D0BAQEQxk9y2rk7Hw/company-logo_100_100/company-logo_100_100/0/1631316692276?e=2147483647&v=beta&t=itdoVXP3gnqtQ7Grar4B3YoPyw-Ors9bKMZlZpb0QcY"
                  }
                ],
                "education": [
                  {
                    "starts_at": {
                      "day": 1,
                      "month": 1,
                      "year": 1994
                    },
                    "ends_at": {
                      "day": 31,
                      "month": 12,
                      "year": 1996
                    },
                    "field_of_study": null,
                    "degree_name": null,
                    "school": "The University of Chicago Booth School of Business",
                    "school_linkedin_profile_url": "https://www.linkedin.com/company/universityofchicagoboothschoolofbusiness",
                    "school_facebook_profile_url": null,
                    "description": null,
                    "logo_url": "https://assets.enrichlayer.com/pp/profilepic/88fa467a62fbfc5325394253f14e8700",
                    "grade": null,
                    "activities_and_societies": null
                  },
                  {
                    "starts_at": {
                      "day": null,
                      "month": null,
                      "year": null
                    },
                    "ends_at": null,
                    "field_of_study": "Electrical Engineering",
                    "degree_name": "Bachelor’s Degree",
                    "school": "Manipal Institute of Technology, Manipal",
                    "school_linkedin_profile_url": "https://www.linkedin.com/company/manipal-institute-of-technology",
                    "school_facebook_profile_url": null,
                    "description": null,
                    "logo_url": "https://assets.enrichlayer.com/pp/profilepic/2aef6f72c73e3b40dbd56163897bdc04",
                    "grade": null,
                    "activities_and_societies": null
                  },
                  {
                    "starts_at": {
                      "day": null,
                      "month": null,
                      "year": null
                    },
                    "ends_at": null,
                    "field_of_study": "Computer Science",
                    "degree_name": "Master’s Degree",
                    "school": "University of Wisconsin-Milwaukee",
                    "school_linkedin_profile_url": "https://www.linkedin.com/company/uwmilwaukee",
                    "school_facebook_profile_url": null,
                    "description": null,
                    "logo_url": "https://assets.enrichlayer.com/pp/profilepic/7916094135030c5846f34230e03dbaa2",
                    "grade": null,
                    "activities_and_societies": null
                  }
                ],
                "accomplishment_organisations": [],
                "accomplishment_publications": [],
                "accomplishment_honors_awards": [],
                "accomplishment_patents": [],
                "accomplishment_courses": [],
                "accomplishment_projects": [],
                "accomplishment_test_scores": [],
                "volunteer_work": [],
                "certifications": [],
                "connections": 500,
                "people_also_viewed": [
                  {
                    "link": "https://www.linkedin.com/in/kevinolearytv",
                    "name": "Kevin O'Leary",
                    "summary": "Chairman, O’Leary Ventures and Beanstox",
                    "location": "West Palm Beach"
                  },
                  {
                    "link": "https://www.linkedin.com/in/aaronmartinfc",
                    "name": "Aaron Martin",
                    "summary": "Vice President Healthcare at Amazon",
                    "location": "Seattle"
                  },
                  {
                    "link": "https://www.linkedin.com/in/guthriescott",
                    "name": "Scott Guthrie",
                    "summary": "Executive Vice President at Microsoft",
                    "location": "Bellevue"
                  },
                  {
                    "link": "https://www.linkedin.com/in/toufisaliba",
                    "name": "Toufi Saliba",
                    "summary": "Author TODA/IP  .  | . CEO HyperCycle.AI  .  | . Chair - International Protocols for AI Security IEEE",
                    "location": "San Francisco"
                  },
                  {
                    "link": "https://www.linkedin.com/in/rajeshgopinathan",
                    "name": "Rajesh Gopinathan",
                    "summary": null,
                    "location": "Mumbai"
                  }
                ],
                "recommendations": [],
                "activities": [
                  {
                    "title": "Microsoft has been positioned as a Leader for the fourteenth consecutive year in the Gartner 2021 Magic Quadrant for Analytics and Business…",
                    "link": null,
                    "activity_status": null
                  },
                  {
                    "title": "On March 17, we’re trying something we’ve never done before: Microsoft will host #Include2021, a free, global, digital event focused on diversity &…",
                    "link": null,
                    "activity_status": null
                  },
                  {
                    "title": "I talked to Bill Gates about his important new book, which provides a framework to reduce our world’s greenhouse gas emissions to zero, including…",
                    "link": null,
                    "activity_status": null
                  }
                ],
                "similarly_named_profiles": [],
                "articles": [],
                "groups": [],
                "meta": {
                  "thin_profile": false,
                  "last_updated": "2025-03-15T08:22:00Z"
                }
              },
              "last_updated": "2023-10-26T11:34:30Z"
            }
          ],
          "next_page": null,
          "total_result_count": 1
        }
      },
      "CreditBalance": {
        "type": "object",
        "properties": {
          "credit_balance": {
            "type": "integer",
            "description": "Your current credit(s)"
          }
        },
        "example": {
          "credit_balance": 100000
        }
      },
      "DisposableEmail": {
        "type": "object",
        "properties": {
          "is_disposable_email": {
            "type": "boolean",
            "description": "Returns a boolean value of the disposable nature of the given email address"
          },
          "is_free_email": {
            "type": "boolean",
            "description": "Returns a boolean value of the free status of the given email address"
          }
        },
        "example": {
          "is_disposable_email": null,
          "is_free_email": null
        }
      },
      "PersonalContactNumbers": {
        "type": "object",
        "properties": {
          "numbers": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "A list of contact numbers"
          }
        },
        "example": {
          "numbers": [
            "+1123123123"
          ]
        }
      },
      "PDLEmailResult": {
        "type": "object",
        "properties": {
          "emails": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "A list of personal emails"
          },
          "invalid_emails": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "A list of invalid personal emails"
          }
        },
        "example": {
          "emails": [
            "random@gmail.com",
            "random2@yahoo.com"
          ],
          "invalid_emails": [
            "random3@gmail.com"
          ]
        }
      }
    },
    "securitySchemes": {
      "BearerAuth": {
        "type": "http",
        "scheme": "bearer"
      }
    }
  }
}