# Get contact info **GET /people** Retrieve contact information for a person by their LinkedIn ID, LinkedIn public identifier, GitHub ID, or GitHub login. ## Servers - Production API: https://peopledb.co/api/v1 (Production API) ## Authentication methods - Bearer auth ## Parameters ### Query parameters - **linkedin_id** (integer) LinkedIn ID to search by - **linkedin_public_identifier** (string) LinkedIn public identifier (username) to search by - **github_id** (integer) GitHub ID to search by - **github_login** (string) GitHub login (username) to search by ## Responses ### 200 Profile found successfully #### Body: application/json (object) - **linkedin_id** (integer | null) LinkedIn ID - **linkedin_public_identifier** (string | null) LinkedIn public identifier (username) - **github_id** (integer | null) GitHub ID - **github_login** (string | null) GitHub login (username) - **email_addresses** (array[string(email)]) List of known email addresses - **phone_numbers** (array[string]) List of known phone numbers - **github_username** (string | null) GitHub username - **facebook_username** (string | null) Facebook username - **twitter_username** (string | null) Twitter/X username ### 400 Bad request - missing required parameters #### Body: application/json (object) - **error** (string) Error message ### 401 Unauthorized - invalid or missing bearer token #### Body: application/json (object) - **error** (string) Error message ### 404 No profile found for the given parameters #### Body: application/json (object) - **error** (string) Error message [Powered by Bump.sh](https://bump.sh)