
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
The National Monthly Summary API endpoint provides access to detailed production data for a specific crop and category over a defined date range. This information is useful for analyzing agricultural trends and making data-driven decisions.
GET {{base_url}}/cropix/api/v1/ crop-look/production/national/monthlySummaryDDWise/category/{categoryId}/crop/{cropId}?startDate={startDate}&endDate={endDate}
Request Method
Headers
Path Parameters
Query Parameters
Response
Successful Response
Status Code: 200 OK
Response Body
{
"message" : null,
"resultStatus" : "SUCCESSFUL",
"httpStatus" : "OK",
"httpCode" : "200 OK",
"payloadDto" : [ [ {
"province" : "Northern",
"ddDivision" : "Jaffna (P)",
"ddId" : 10,
"2024_November_1_2" : 0.0,
"2024_November_3_4" : 0.0,
"2024_December_1_2" : 0.0,
"2024_December_3_4" : 0.0,
"2025_January_1_2" : 1250.0,
"2025_January_3_4" : 250.0
}, {
"province" : "Northern",
"ddDivision" : "Mannar (P)",
"ddId" : 11,
"2024_November_1_2" : 0.0,
"2024_November_3_4" : 0.0,
"2024_December_1_2" : 0.0,
"2024_December_3_4" : 0.0,
"2025_January_1_2" : 3850.0,
"2025_January_3_4" : 10879.0
} ] ],
"totalPages" : 0,
"totalElements" : 0,
"last" : false,
"size" : 0,
"number" : 0,
"sort" : null,
"numberOfElements" : 0
}
curl -X GET "{{base_url}}/cropix/api/v1/crop-look/production/national/monthlySummaryDDWise/category/1/crop/1?startDate=2024-01-01&endDate=2025-01-01
-H "Content-Type: application/json" \
-H "Authorization: YOUR_ACCESS_TOKEN"