2 releases

new 0.0.2 Jun 11, 2024
0.0.1 May 26, 2024

#832 in Web programming

Download history 128/week @ 2024-05-23 20/week @ 2024-05-30 109/week @ 2024-06-06

257 downloads per month

MIT license

555KB
8K SLoC

Schwab API

CI Crates.io MIT licensed docs downloads

This is not an official API or a stable recreation of the Charles Schwab API. Functionality may change due to updates made by Schwab.

Overview

Currently, only supports the API of individual developers.

Prerequisites

  1. To use the API, you need to apply for access on the Charles Schwab Developer Portal. Upon approval, you will receive the necessary Key and Secret.
  2. (Option) Create a self-signed certificate
    openssl req -newkey rsa:4096 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem
    

Example

use std::path::PathBuf;

use schwab_api::api;
use schwab_api::token::TokenChecker;

#[tokio::main]
async fn main() {
    let key = "your_app_key".to_string();
    let secret = "your_secret".to_string();
    let callback_url = "https://127.0.0.1:8080".to_string();
    let path = dirs::home_dir()
        .expect("home dir")
        .join(".credentials")
        .join("Schwab-rust.json");
    let certs_dir = PathBuf::from("your_certs_dir");
    let token_checker = TokenChecker::new(path, key, secret, callback_url, certs_dir)
        .await
        .unwrap();

    let api = api::Api::new(token_checker).await.unwrap();

    let req = api.get_quote("VTI".to_string()).await.unwrap();
    let rsp = req.send().await.unwrap();
    println!("{:?}", rsp);
}

Installation

# Cargo.toml
[dependencies]
schwab_api = "0.0"

Reference

Disclaimer: This is an unofficial API wrapper for Schwab. It is not endorsed by or affiliated with Schwab or any associated organization. Before using this package, make sure to read and understand the terms of service of the underlying API. The authors of this package accept no responsibility for any damage that might stem from its use. Refer to the LICENSE file for more details.

Dependencies

~24–41MB
~700K SLoC