Get a single Collection.
Laravel passport oauth2 security.
ID of collection to return
per_page Parameter
The GET /collections/{collection_id}/records endpoint supports configurable pagination through the per_page parameter.
Default Pagination Behavior
If no valid per_page value is provided, the endpoint automatically applies a default pagination limit. This behavior prevents accidental unbounded queries and helps reduce excessive memory consumption or performance impact when querying large collections.
Explicit Pagination Requests
When a valid per_page value is explicitly provided, the endpoint returns up to the requested number of records.
Example:
GET /collections/{collection_id}/records?per_page=2000If the collection contains enough records, the response returns up to 2,000 records.
Successfully found the collections