Optimized SDKs with minimal footprint
Full TypeScript & Dart type definitions
Web, mobile, and server support
Extensive docs with examples
Get up and running in minutes
Choose your platform and install the SDK
npm i vondera-sdkflutter pub add vondera_sdkInteractive examples with real code
/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'{
"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
}
}