This is a free API to test your frontend. Data was founded on https://www.kaggle.com/. Data is information about real companies, working in USA (actual for 2023 year). Data-base was build to test huge batch of data. Number of records in this base - more than 17 000 000
Just send GET-request to main route. For examaple, like fetch:
fetch('https://restapi.qoobeo.ru/api/v1/companys')
.then(response => response.json())
.then(json => console.log(json))
You can use basic route to get all compannies, like this:
https://restapi.qoobeo.ru/api/v1/companys
You can use pagination with query params "page" and "limit", like this:
https://restapi.qoobeo.ru/api/v1/companys?page=9000&limit=2000
Attention: maximum limit can be 500, but default limit is 100
Also you can use pagination with query params "start" and "end", like this:
https://restapi.qoobeo.ru/api/v1/companys?start=9000&end=9500
Attention: maximum range can be 500, but default range is 100
You can get company by ID:
https://restapi.qoobeo.ru/api/v1/companys/:id
Example:
https://restapi.qoobeo.ru/api/v1/companys/137
You can get all info about companies by using param "isFullSchema"
https://restapi.qoobeo.ru/api/v1/companys?start=9001&end=9500&isFullSchema=true
This api support only GET method