xyo-sdk 0.1.4

XYO Financial Official SDK for Rust
Documentation

XYO Financial SDK for Rust

workflow workflow

This is an official SDK for XYO Financial in Rust Language.

NOT READY For Production

Quickstart Guide

Client is an entry point to consume the enrichment services.

use xyo_sdk::client::{new, ClientConfig};
use xyo_sdk::enrichment::EnrichmentRequest;

fn main() {
    let client = new(ClientConfig {
        api_key: "YourAPIKeyFromXYO.FinancialDashboard"
    });

    let result = client.enrich_transaction(&EnrichmentRequest{
        content: String::from("Syniol Tech"),
        country_code: String::from("GB"),
    });

    println!("Merchant Name: {}", result.merchant);
    println!("XYO SDK Initiated successfully");
}

Credits

Copyright © 2025 Syniol Limited. All rights reserved.