Fast & Lightweight
Optimized SDKs with minimal footprint
Type-Safe
Full TypeScript & Dart type definitions
Cross-Platform
Web, mobile, and server support
Well Documented
Extensive docs with examples
Quick Start
Get up and running in minutes
2
Install SDK
Choose your platform and install the SDK
npm i vondera-sdkflutter pub add vondera_sdkAPI Explorer
Try Our APIs
Interactive examples with real code
Endpoints
GET
/productsRetrieve a paginated list of products
curl --location 'https://us-central1-brands-61c3d.cloudfunctions.net/app-api/api/public/products?pageNo=1&limit=10' \
--header 'x-api-key: YOUR_API_KEY' \
--header 'userid: USER_ID'Response (200 OK)
{
"status": 200,
"message": "Products fetched successfully",
"data": {
"items": [
{
"id": "prod_123",
"name": "Product Name",
"price": 299.99,
"description": "Product description...",
"image": "https://example.com/image.jpg"
}
],
"currentPage": 1,
"totalPages": 5,
"totalItems": 50
}
}