Retrieve a paginated list of all entities with optional filtering.
Request
GET https://tupel.com/api/entities/
Authentication
This endpoint requires basic authentication with your Organization ID and API Key.
Query Parameters
-
created_from timestamp Optional
Filter entities created on or after this timestamp. Format: ISO 8601 (e.g.,2023-01-01T00:00:00Z
). -
created_to timestamp Optional
Filter entities created on or before this timestamp. Format: ISO 8601 (e.g.,2023-12-31T23:59:59Z
). -
updated_from timestamp Optional
Filter entities updated on or after this timestamp. Format: ISO 8601 (e.g.,2023-01-01T00:00:00Z
). -
updated_to timestamp Optional
Filter entities updated on or before this timestamp. Format: ISO 8601 (e.g.,2023-12-31T23:59:59Z
). -
jurisdiction string Optional
Filter entities by jurisdiction. Possible values:BE
,FR
,GB
,CH
,NL
,US
,ES
,DE
,IT
,PT
,IE
,PL
,RO
,CY
or other accepted country codes. -
status string Optional
Filter entities by status. Possible values:ACTIVE
,INACTIVE
. -
type string Optional
Filter entities by type. Possible values:PLC
,LTD
,PAR
,STR
,LLP
. -
order_by string Optional
Field to sort the results by. Prefix with-
for descending order (e.g.,-created_at
). -
page integer Optional
Page number for pagination. Default:1
.
Notes
- By default, all entities are returned, sorted by creation date (newest first).
- Use the filtering parameters to narrow down results for better performance with large datasets.
- For date range filters, both the start and end parameters are inclusive.
- This endpoint uses page-based pagination with 10 items per page.
- For more information about working with paginated results, see the pagination documentation.
- Entity objects retrieved from this endpoint can be used in other API calls that require an entity reference, such as creating loans.