# Strike Lightning API Interface in Rust (Unofficial)
Rust interface to Strike's excellent Lightning Network API. Easily add lightning tipping or payments to any application. If you don't have an API key, apply for one [Strike](https://developer.strike.me/). In your application use an email with an existing strike account for quick approval. ## Tipping Example Using Strikes API to tip someone, or even yourself, is very easy. [Full Tipping Example Code](examples/rust_lightning_tipping_qrcode/) Cargo.toml ```toml [dependencies] # For this example you must include the tipping feature strike-api = { version = "0.0.3", features = ["tipping"] } # Any qrcode generation library qrcode-generator = {version = "4.1.2"} # Any multi-threading library tokio = {version = "1.17.0", features = ["full"]} ``` main.rs ```rust use strike_api::tipping::{tipping_request}; extern crate qrcode_generator; use qrcode_generator::{QrCodeEcc}; // Currently I only have a async version of tipping #[tokio::main] async fn main() { let api_key = "