OIS Pharma Price API

Pharmaceutical product price data API service

🇨🇭 OIS Solutions
Software company based in Geneva, Switzerland
www.ois-solutions.ch

API Endpoints

GET /api/product/{sku}
Get product information by SKU. Returns cached data if available, otherwise scrapes and saves to database.
GET /api/scrape/{sku}
Directly scrape product data from source. Always returns fresh data without database caching.
GET /api/user
Get authenticated user information.

Authentication

Bearer Token Required

All API endpoints require authentication. Include your token in the Authorization header:

Authorization: Bearer {your-token}

Example Usage

GET /api/product/1001197
Response:
{
  "success": true,
  "from_cache": true,
  "product": {
    "sku_id": "1001197",
    "name": "Product Name",
    "brand": "Brand Name",
    "sale_price": "15.50",
    "currency": "CHF",
    ...
  }
}

© 2026 OIS Solutions. All rights reserved.