A page of commit history
GET
/v1/datasets/commits
const url = 'https://example.com/v1/datasets/commits?path=example&limit=100&offset=0';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/v1/datasets/commits?path=example&limit=100&offset=0'A page of commit history for the History “Load more” affordance.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” path
required
Dataset path (org/name)
string
Dataset path (org/name)
limit
integer
offset
integer
Header Parameters
Section titled “Header Parameters ” x-api-key
string | null
Responses
Section titled “ Responses ”Commits (newest first)
Media type application/json
Example generated
exampleValidation Error
Media type application/json
HTTPValidationError
object
detail
Array<object>
ValidationErrorobject
loc
required
Location
Array<string | integer>
msg
required
Message
string
type
required
Error Type
string
input
ctx
Context
object
Example generated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}