Get Data
GET
/api/v1/public/data
PublicApi
Community Data API Documentation
Overview
Endpoint
Query Parameters
Parameter | Required | Description | Format |
---|---|---|---|
startDate | Yes | Start date of the requested period | YYYY-MM-DD |
endDate | Yes | End date of the requested period | YYYY-MM-DD |
Rate Limiting
X-RateLimit-Remaining
: Number of requests remaining in the current time windowX-RateLimit-Reset
: Unix timestamp when the rate limit resetsX-Daily-Quota-Remaining
: Number of requests remaining for the current dayConstraints
Response Format
Success Response (200 OK)
{
"status": "Success",
"data": [
{
"date": "2024-12-18",
"txn_count": 1000,
"impr_count": 5000,
"alkimi_revenue": 150.75
}
]
}
Response Fields
Field | Type | Description |
---|---|---|
date | string | Date in YYYY-MM-DD format |
txn_count | number | Number of transactions |
impr_count | number | Number of impressions |
alkimi_revenue | number | Revenue amount |
Error Responses
Invalid Request (400)
{
"code": "ALK1005",
"message":
"Invalid Request Parameter – One or more parameters in the request are invalid.",
}
Rate Limit Exceeded (429)
{
"code": "ALK1010",
"message":
"Rate Limit Exceeded – Too many requests in a given amount of time.",
}
Example Requests
cURL
JavaScript
Python
Best Practices
1.
2.
3.
4.
5.
Support
Request
Query Params
startDate
string
optional
Example:
2025-01-11
endDate
string
optional
Example:
2025-01-16
Request samples
Responses
Modified at 2025-01-31 10:17:55