Connect external services to LLMs and agents.
Connect external services to LLMs.
Candle is an SDK that provides programmatic read and write access to consumer internet services.
Features & Benefits
Secure. Fast. Reliable.
We provide you with the tools you need to build a seamless experience for your users.
Read & Write Access
Full account history
Real-time data
Function Calling Tools
Unlimited Requests
Optional UI/UX
Seamless Development
Hello, World!
No slow & unreliable browser automation, just effortless function calls.
1import SwiftUI
2// STEP 1: Import SDK
3import Candle
4
5struct HomeView: View {
6 @State var isAuthPresented = true
7 @State var accounts: [Candle.LinkedAccount] = []
8 @State var error: Candle.Error? = nil
9
10 var body: some View {
11 VStack(spacing: 16) {
12 if let error {
13 Text(error.localizedDescription)
14 } else if accounts.isEmpty {
15 Text("No accounts linked")
16 } else {
17 ForEach(accounts) { account in
18 Text(account.name)
19 }
20 }
21 Button(action: { isAuthPresented.toggle() }) {
22 Text("Present Authentication")
23 }.buttonStyle(BlackButtonStyle())
24 }
25 // STEP 2: Show Auth Flow
26 .sheet(isPresented: $isAuthPresented) {
27 Candle.LinkedAccountView(accounts: $accounts, error: $error)
28 }
29 }
30}
31
Fast & Secure
Explore by Category
Every connection you need, packed into one powerful kit.
All product and company names and logos are trademarks™ or registered trademarks® of their respective holders. Their usage does not imply any affiliation with or endorsement by their holders.
Frequently Asked Questions
Data is never stored on our servers; instead, we route requests directly to the external service, preserving security standards and encryption. Candle’s SDK works just like the official app or website does.
Our SDK currently supports financial services like Robinhood, Cash App, Venmo, Apple Wallet, and more. Our grand vision is to be the only SDK you’ll need to connect to a service. If you need support for a specific one let us know or with us.
See More FAQs
You can build agents