This API endpoint enables fetching a collection of entities within a given FloQast tenant. Optional query parameters can either narrow the API response or provide pagination functionality.
Requests to FloQast's API must be authenticated using an API key. The API key must be included in the x-api-key
header of each request and can be generated in the FloQast application. The key should also have the correct permissions to access the API endpoints you are using. Directions to generate an API key
Specifies the name of the entity. Cannot be used with page[number].
The number of items to return. If not specified, the API will return a default of 30,000 items, which is the maximum value.
Indicates the page number of the results to retrieve. This parameter is used to paginate through lists of items. Cannot be used with filter[name].
curl -i -X GET \
'https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/entities?allowRedirect=true&filter%5Bname%5D=Entity%20Name&page%5Bnumber%5D=5&page%5Bsize%5D=12000' \
-H 'x-api-key: YOUR_API_KEY_HERE'
{ "data": [ { … } ] }
curl -i -X GET \
'https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/entities/{id}?allowRedirect=true' \
-H 'x-api-key: YOUR_API_KEY_HERE'
{ "data": [ { … } ] }