polymarket-sdk 0.0.5

Rust SDK for Polymarket prediction markets - REST APIs, WebSocket streams, order signing, and Safe wallet integration
Documentation
//! REST API clients for Polymarket services.
//!
//! This module provides clients for different Polymarket APIs:
//!
//! - [`GammaClient`] - Market discovery and metadata
//! - [`DataClient`] - Trader data, positions, and leaderboards
//! - [`ProfilesClient`] - User profiles
//! - [`ClobClient`] - Order book operations and trading

pub mod clob;
pub mod data;
pub mod gamma;
pub mod profiles;

pub use clob::{
    ApiKeyResponse, CancelResponse, ClobClient, ClobConfig, DeriveApiKeyResponse, OpenOrder,
    OrderResponse, PaginatedResponse,
};
pub use data::{DataClient, DataConfig};
pub use gamma::{GammaClient, GammaConfig};
pub use profiles::{ProfilesClient, ProfilesConfig};