Get Timeline Stats
GET
/api/data/stats/timeline
const url = 'http://localhost:8000/api/data/stats/timeline';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8000/api/data/stats/timeline \ --header 'Authorization: Bearer <token>'Returns daily ingestion counts for the last 30 days.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response Get Timeline Stats Api Data Stats Timeline Get
Array<object>
object
key
additional properties
any
Examplegenerated
[ {}]