Skip to Content

API Reference

Virtual Shops provides a RESTful API for programmatic access to your store.

Authentication

All API requests require authentication using an API key.

curl -H "Authorization: Bearer YOUR_API_KEY" \ https://api.virtualshops.com/v1/products

Endpoints

Products

MethodEndpointDescription
GET/v1/productsList all products
GET/v1/products/:idGet a specific product
POST/v1/productsCreate a new product
PUT/v1/products/:idUpdate a product
DELETE/v1/products/:idDelete a product

Orders

MethodEndpointDescription
GET/v1/ordersList all orders
GET/v1/orders/:idGet a specific order
POST/v1/ordersCreate a new order

Rate Limits

  • 1000 requests per hour for authenticated requests
  • 100 requests per hour for unauthenticated requests
Last updated on