The Northwind API
This api was created with the objective of providing an accessible path to the Northwind Database.
Getting Started
To get started with the API you can make a GET request to /api
Your response will be a JSON like this:
{
message: "Welcome to the API",
endpoints: {
categories: "/api/categories",
customers: "/api/customers",
employees: "/api/employees",
orders: "/api/orders",
products: "/api/products",
shippers: "/api/shippers",
suppliers: "/api/suppliers"
}
}
We strongly recommend to visit our documentation in order to be aware of the endpoints to be queried and the parameters required in the queries ;)