6 releases (breaking)

0.5.0 Sep 28, 2025
0.4.0 Sep 28, 2025
0.3.0 Sep 27, 2025
0.2.1 Sep 27, 2025
0.1.0 Sep 22, 2025

#2073 in Web programming

Download history 237/week @ 2025-09-21 257/week @ 2025-09-28 19/week @ 2025-10-05 7/week @ 2025-10-12 3/week @ 2025-10-19

138 downloads per month

AGPL-3.0-or-later

76KB
2K SLoC

Rust Wrapper for the LinkedIn API

This crate provides an asynchronous interface to the LinkedIn Voyager API.

Example

use linkedin_api_rs::Linkedin;
use std::env;

#[tokio::main]
async fn main() -> Result<(), linkedin_api_rs::LinkedinError> {
    let username = env::var("LINKEDIN_USERNAME").unwrap();
    let password = env::var("LINKEDIN_PASSWORD").unwrap();

    let api = Linkedin::new(&username, &password, false).await?;

    let profile = api.get_profile("billy-g").await?;

    Ok(())
}

Dependencies

~33–50MB
~519K SLoC