Skip to content

z-Wind/schwab_api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Unofficial API wrapper for the Schwab API

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages