Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1.31 KB

README.md

File metadata and controls

54 lines (37 loc) · 1.31 KB

Thinkport API

Get data from Thinkport GmbH, Germany. It includes the following services:

Service Type URL
Members array https://production-helloworld-5w4i.encr.app/members
Members count number https://production-helloworld-5w4i.encr.app/members/count
Members count engineers number https://production-helloworld-5w4i.encr.app/members/count/engineers
Member object https://production-helloworld-5w4i.encr.app/member/Alice
Product - Trainings array https://production-helloworld-5w4i.encr.app/product/trainings
Locations array https://production-helloworld-5w4i.encr.app/about/locations

Usage examples

Members

Example with JavaScript

const axios = require('axios');

axios.get('https://production-helloworld-5w4i.encr.app/members')
    .then((response) => {
        console.log(response.data);
    });

Example with CURL

curl https://production-helloworld-5w4i.encr.app/members
curl https://production-helloworld-5w4i.encr.app/product/trainings

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Deplyoment

git push origin main

Development

encore run

License

MIT