A comprehensive REST API providing access to all INAM pharmaceutical products registered in Togo. Search, filter, and discover therapeutic solutions.
No costs, no subscriptions. Use the API freely for your projects.
Source code available on GitHub. Contribute and improve!
Safe data access. No modifications or deletions possible.
Start making requests to the INAM Drugs API in seconds. No API key required.
[
{
"id": "1",
"name": "Paracetamol 500mg",
"price": 2500,
"price_inam": 2000,
"shape": "Tablet",
"quantity": "1 blister",
"dosage": "500mg",
"therapy": "Pain Relief"
}
]All available endpoints with request/response examples.
Retrieve all INAM registered drugs
Search for drugs by name
Retrieve a specific drug by its ID
Retrieve all available therapy categories
Retrieve drugs filtered by therapy type
{
"id": String,
"name": String,
"price": Number,
"price_inam": Number,
"shape": String,
"quantity": String,
"dosage": String,
"therapy": String
}See how to use the API in different programming languages.
fetch("https://inam-drugs-api.vercel.app/drugs")
.then(res => res.json())
.then(data => console.log(data))
.catch(err => console.error(err))import requests
url = "https://inam-drugs-api.vercel.app/drugs"
response = requests.get(url)
data = response.json()
print(data)curl -X GET \
https://inam-drugs-api.vercel.app/drugs \
-H "Accept: application/json"const axios = require("axios");
axios
.get("https://inam-drugs-api.vercel.app/drugs")
.then(response => console.log(response.data))
.catch(error => console.error(error));Make a GET request to https://inam-drugs-api.vercel.app/drugs and you'll receive an array of all registered INAM drugs.
Yes! Use the /drugs?name=aspirin endpoint to search by drug name. You can also filter by therapy using the /drugs/therapy?= endpoint.
No! The API is completely public and free to use. You can make requests directly from your browser or application without any API key or authentication.
Currently, there are no rate limits. However, we recommend using reasonable request patterns to ensure optimal performance for all users.
Each drug includes: id, name, price, INAM price, shape (form), quantity, dosage, and therapy category. This comprehensive data helps you provide complete pharmaceutical information.
Yes, the API is read-only. You can query and retrieve pharmaceutical data, but cannot create, update, or delete records. This ensures data integrity and security.
The API is fully open source. You can contribute improvements, report bugs, or request features on the GitHub repository.