Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/patrikmasiar/doctor-opening-hours-api


https://github.com/patrikmasiar/doctor-opening-hours-api

Last synced: 11 days ago
JSON representation

Awesome Lists containing this project

README

        

# API for doctor opening hours applications

## Getting started
1. Run `yarn start` to build an app and start a server

## API docs
### Routes

| ROUTE | METHOD | RESPONSE
|:-------------|:-------------|:-------------|
| `/reservation/all` | **GET** | `Reservation[]` |
| `/reservation` | **POST* | `Reservation` |

### Types
```javascript
type Reservation = {
date: string;
start: string;
end: string;
};
```

#### Example
`http://localhost:3010/reservation/all`