cURL
curl --request GET \ --url https://api.example.com/api/v1/commits/public \ --header 'Authorization: Bearer <token>'
{ "commits": [ { "commit_id": "<string>", "created_at": "<string>", "is_public": true, "name": "<string>", "owner_id": "<string>", "description": "<string>", "grandparent_commit_id": "<string>", "parent_vm_id": "<string>" } ], "limit": 123, "offset": 123, "total": 123 }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Maximum number of commits to return (default: 50, max: 100)
Number of commits to skip (default: 0)
List of public commits
Show child attributes