Crop Categories

The Crop Categories API endpoint provides access to information regarding different crop categories managed by the CROPIX service. Users can retrieve a list of available crop categories to facilitate data sharing and analysis related to agricultural practices.
GET {{base_url}}/cropix/api/v1/crop-details/crop-categories

Request Method

  • GET

   Headers

  • Content-Type: application/json
  • Authorization:  <token> 

Parameters

This endpoint does not require any query parameters.

Response

Successful Response

Status Code: 200 OK

Response Body

Error Responses

  • Status Code: 400 Bad Request
  • Status Code: 401 Unauthorized
  • Status Code: 500 Internal Server Error
{

  "message" : null,
  "resultStatus" : "SUCCESSFUL",
  "httpStatus" : "OK",
  "httpCode" : "200 OK",
  "payloadDto" : [ {
    "id" : 1,
    "categoryId" : "01",
    "description" : "Paddy"
  }, {
    "id" : 2,
    "categoryId" : "02",
    "description" : "Field Crops"
  }, {
    "id" : 3,
    "categoryId" : "03",
    "description" : "Vegetables"
  }, {
    "id" : 4,
    "categoryId" : "04",
    "description" : "Root & Tuber Crops"
  }, {
    "id" : 5,
    "categoryId" : "05",
    "description" : "Leafy Vegetables"
  }, {
    "id" : 6,
    "categoryId" : "06",
    "description" : "Fruits"
  } ],
  "totalPages" : 1,
  "totalElements" : 6,
  "last" : true,
  "size" : 10,
  "number" : 0,
  "sort" : {
    "empty" : false,
    "sorted" : true,
    "unsorted" : false
  },
  "numberOfElements" : 6
}
Example Request
curl -X GET "{{base_url}}/cropix/api/v1/crop-details/crop-categories"
-H "Content-Type: application/json" \
-H "Authorization: YOUR_ACCESS_TOKEN"

Crop Category

The Filter Crop Categories API endpoint allows users to retrieve specific crop category details based on the provided ‘categoryId’. This endpoint is useful for applications that require targeted information about a particular crop category.

GET {{base_url}}/cropix/api/v1/crop-details/crop-categories/filter?categoryId=01

Request Method

  • GET

      Headers

  • Content-Type: application/json
  • Authorization:  <token> 

Parameters

  • Filter: categoryId

    Response

    Successful Response

    Status Code: 200 OK

    Response Body

{
  "message" : null,
  "resultStatus" : "SUCCESSFUL",
  "httpStatus" : "OK",
  "httpCode" : "200 OK",
  "payload" : {
    "id" : 1,
    "categoryId" : "01",
    "description" : "Paddy"
  }
}
Example Request
curl -X GET "{{base_url}}/cropix/api/v1/crop-details/crop-categories/filter?categoryId=01" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Crop Sub Categories

The Crop Sub-Categories API endpoint provides access to information regarding various sub-categories of crops managed by the Cropix service. This endpoint is useful for retrieving detailed data about specific types of crops within broader categories.

End Point
GET {{base_url}}/cropix/api/v1/crop-details/crop-sub-categories

Request Method

  • GET

   Headers

  • Content-Type: application/json
  • Authorization:  <token> 

Parameters

This endpoint does not require any query parameters.

Response

Successful Response

Status Code: 200 OK

Response Body

Error Responses

  • Status Code: 400 Bad Request
  • Status Code: 401 Unauthorized
  • Status Code: 500 Internal Server Error
{
 "message" : null,
 "resultStatus" : "SUCCESSFUL",
 "httpStatus" : "OK",
 "httpCode" : "200 OK",
 "payloadDto" : [ {
   "id" : 1,
   "description" : "Paddy",
   "subCategoryId" : "01/01",
   "cropCategoryDTO" : {
     "id" : 1,
     "categoryId" : "01",
     "description" : "Paddy"
   }
 }, {
   "id" : 2,
   "description" : "Coarse Grains",
   "subCategoryId" : "02/01",
   "cropCategoryDTO" : {
     "id" : 2,
     "categoryId" : "02",
     "description" : "Field Crops"
   }
 }, {
   "id" : 3,
   "description" : "Condiments",
   "subCategoryId" : "02/02",
   "cropCategoryDTO" : {
     "id" : 2,
     "categoryId" : "02",
     "description" : "Field Crops"
   }
 }, {
   "id" : 4,
   "description" : "Legumes",
   "subCategoryId" : "02/03",
   "cropCategoryDTO" : {
     "id" : 2,
     "categoryId" : "02",
     "description" : "Field Crops"
   }
 }, {
   "id" : 5,
   "description" : "Oil Crops",
   "subCategoryId" : "02/04",
   "cropCategoryDTO" : {
     "id" : 2,
     "categoryId" : "02",
     "description" : "Field Crops"
   }
 }, {
   "id" : 6,
   "description" : "Perennial herbs",
   "subCategoryId" : "02/05",
   "cropCategoryDTO" : {
     "id" : 2,
     "categoryId" : "02",
     "description" : "Field Crops"
    }

 }, {
   "id" : 7,
   "description" : "Under utilized vegetables",
   "subCategoryId" : "03/01",
   "cropCategoryDTO" : {
     "id" : 3,
     "categoryId" : "03",
     "description" : "Vegetables"
   }
 }, {
   "id" : 8,
   "description" : "Major vegetables",
   "subCategoryId" : "03/02",
   "cropCategoryDTO" : {
     "id" : 3,
     "categoryId" : "03",
     "description" : "Vegetables"
   }
 }, {
   "id" : 23,
   "description" : "Root & Tuber Crops",
   "subCategoryId" : "04/01",
   "cropCategoryDTO" : {
     "id" : 4,
     "categoryId" : "04",
     "description" : "Root & Tuber Crops"
   }
 }, {
   "id" : 24,
   "description" : "Leafy Vegetables",
   "subCategoryId" : "05/01",
   "cropCategoryDTO" : {
     "id" : 5,
     "categoryId" : "05",
     "description" : "Leafy Vegetables"
   }
 } ],
 "totalPages" : 2,
 "totalElements" : 13,
 "last" : false,
 "size" : 10,
 "number" : 0,
 "sort" : {
   "empty" : false,
   "sorted" : true,
   "unsorted" : false
 },
 "numberOfElements" : 10
}
Example Request
curl -X GET "{{base_url}}/cropix/api/v1/crop-details/crop-sub-categories"
-H "Content-Type: application/json" \
-H "Authorization: YOUR_ACCESS_TOKEN"

Crops

The Crops API endpoint provides access to information about different crops managed by the CROPIX service. Users can retrieve a list of available crops, which can be used for various agricultural analyses and applications.

GET {{base_url}}/cropix/api/v1/crop-details/crops

Request Method

  • GET

      Headers

  • Content-Type: application/json
  • Authorization:  <token> 

Parameters

  • This endpoint does not require any query parameters.

    Response

    Successful Response

    Status Code: 200 OK

    Response Body

{

 "message" : null,
 "resultStatus" : "SUCCESSFUL",
 "httpStatus" : "OK",
 "httpCode" : "200 OK",
 "payloadDto" : [ {
   "id" : 1,
   "cropId" : "01/01/001",
   "description" : "Paddy",
   "cropType" : "ANNUAL",
   "scientificName" : "Oryza sativa",
   "presignedUrl" : "https://eagri1.s3.ap-south-1.amazonaws.com/crop-image/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250201T000003Z&X-Amz-SignedHeaders=host&X-Amz-Expires=518400&X-Amz-Credential=AKIAQX7JO6LEXW6LT3FM%2F20250201%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=0adf0b6367fb9f3b14700ff28fbb80ae83da1d76f9ee59d92eb93b5ece3b2fab",
   "family" : "POACEAE",
   "isMultiPick" : false,
   "cropSubCategoryDTO" : {
     "id" : 1,
     "description" : "Paddy",
     "subCategoryId" : "01/01",
     "cropCategoryDTO" : {
       "id" : 1,
       "categoryId" : "01",
       "description" : "Paddy"
     }
   },
   "cropPestDTOList" : [ ],
   "isPlantationCrop" : false
 }, {
   "id" : 2,
   "cropId" : "02/01/001",
   "description" : "Finger millet",
   "cropType" : "SEASONAL",
   "scientificName" : "Eleusine coracana",
   "presignedUrl" : "https://eagri1.s3.ap-south-1.amazonaws.com/crop-image/2?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250201T000003Z&X-Amz-SignedHeaders=host&X-Amz-Expires=518400&X-Amz-Credential=AKIAQX7JO6LEXW6LT3FM%2F20250201%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=94c241c5ad85054af3687bf731ca93c52c696276c3fb83ba0fb4e5264bb95a1d",
   "optimumTemperature" : "18- 27 °C ",
   "annualRainfall" : "500 mm",
   "altitude" : " Over 2000 meters above sea level",
   "suitableCultivationAreas" : "Rain-fed uplands in the Dry zone and Intermediate zone",
   "soilCharacteristics" : "Well-drained soils but silt loams are the most desirable. moderately acidic soils and moderately alkaline soils. ",
   "soilPhRange" : "5 and pH 8.2",
   "family" : "POACEAE",
   "isMultiPick" : false,
   "cropSubCategoryDTO" : {
     "id" : 2,
     "description" : "Coarse Grains",
     "subCategoryId" : "02/01",
     "cropCategoryDTO" : {
       "id" : 2,
       "categoryId" : "02",
       "description" : "Field Crops"
     }
   },
   "cropPestDTOList" : [ ],
   "isPlantationCrop" : false
 } ],
 "totalPages" : 54,
 "totalElements" : 107,
 "last" : false,
 "size" : 2,
 "number" : 0,
 "sort" : {
   "empty" : false,
   "sorted" : true,
   "unsorted" : false
 },
 "numberOfElements" : 2
}
Example Request
curl -X GET "{{base_url}}/cropix/api/v1/crop-details/crop-categories"
-H "Content-Type: application/json" \
-H "Authorization: YOUR_ACCESS_TOKEN"

Crop Varieties

The Crop Varieties API endpoint provides users with access to information about various crop varieties managed by the Cropix service. This endpoint allows users to retrieve a list of available crop varieties, which is useful for agricultural analysis and decision-making.

GET {{base_url}}/cropix/api/v1/crop-details/crop-varieties

Request Method

  • GET

Headers

  • Content-Type: application/json
  • Authorization:  <token> 

Parameters

  • This endpoint does not require any query parameters.

    Response

    Successful Response

    Status Code: 200 OK

    Response Body

{

 "message" : null,
 "resultStatus" : "SUCCESSFUL",
 "httpStatus" : "OK",
 "httpCode" : "200 OK",
 "payloadDto" : [ {
   "id" : 1,
   "varietyId" : "01/01/001/029",
   "varietyName" : "Bg 360",
   "varietyDescription" : null,
   "pericarpColor" : {
     "id" : 1,
     "code" : "WHITE",
     "description" : "White"
   },
   "grainSize" : null,
   "averageYield" : "4.2",
   "maturityTime" : "105",
   "isImported" : false,
   "isMultiPick" : null,
   "grainColor" : null,
   "bearingPeriodInDays" : null,
   "scientificName" : null,
   "releasedYear" : "1999",
   "durationBetweenTwoPicks" : null,
   "ediblePartShape" : null,
   "seedRequirement" : null,
   "spacing" : null,
   "soilProblems" : null,
   "numberOfPics" : null,
   "farmerYield" : null,
   "researchYield" : null,
   "grainQuality" : null,
   "croplookVarietyId" : "29",
   "varietyType" : "NIV",
   "pollinationType" : null,
   "grainType" : {
     "id" : 4,
     "code" : "KEERI SAMBA",
     "description" : "Keeri Samba"
   },
   "ageType" : null,
   "cropDTO" : {
     "id" : 1,
     "cropId" : "01/01/001",
     "description" : "Paddy",
     "scientificName" : "Oryza sativa",
     "presignedUrl" : "https://eagri1.s3.ap-south-1.amazonaws.com/crop-image/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250201T000003Z&X-Amz-SignedHeaders=host&X-Amz-Expires=518400&X-Amz-Credential=AKIAQX7JO6LEXW6LT3FM%2F20250201%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=0adf0b6367fb9f3b14700ff28fbb80ae83da1d76f9ee59d92eb93b5ece3b2fab",
     "isMultiPick" : false,
     "cropSubCategoryDTO" : {
       "id" : 1,
       "description" : "Paddy",
       "subCategoryId" : "01/01",
       "cropCategoryDTO" : {
         "id" : 1,
         "categoryId" : "01",
         "description" : "Paddy"
       }
     }
   },
   "hartiItemsDTO" : {
     "id" : 18,
     "itemNum" : 103,
     "itemName" : "Keeri Samba",
     "groupName" : null
   },
   "fileResourceDTOList" : null,
   "cropVarietyImages" : [ ],
   "commercialNames" : [ ],
   "discontinued" : null,
   "discontinuedDate" : null,
   "researchYieldDryWeight" : null,
   "averageYieldDryWeight" : null,
   "paddyVarietyType" : "NIV",
   "grainCategory" : {
     "id" : 6,
     "code" : "SHORT OBLONG",
     "description" : "Short Oblong"
   },
   "farmerSelection" : null,
   "plantGrowth" : null,
   "ageGroup" : {
     "id" : 3,
     "code" : "3 1/2 MONTHS",
     "description" : "3 1/2 Months",
     "crop" : {
       "id" : 1,
       "description" : "Paddy"
     },
     "paddyAgeTypeCropStages" : [ {
       "id" : 10,
       "paddyAgeType" : null,
       "cropStage" : {
         "id" : 1,
         "stageId" : "STAGE 01",
         "description" : "Fallowing stage",
         "cropStageSubTypeDtos" : null
       },
       "subStageDurations" : [ ],
       "duration" : 0.0
     } ]
   },
   "aromatic" : null,
   "lowGi" : null,
   "sticky" : null,
   "softCookRice" : null,
   "generalCultivation" : true,
   "wzOnly" : null,
   "salinityAreas" : null,
   "ironToxicity" : null,
   "droughtTolerant" : null,
   "heatTolerant" : null,
   "submergenceTolerant" : null,
   "coldTolerant" : null,
   "acidSulfate" : null,
   "upland" : null,
   "seedTestaColor" : null,
   "harvestInManyPicks" : null,
   "podFruitBulbSizeUnit" : null,
   "podFruitBulbColor" : null,
   "pestDiseaseResistance" : null,
   "numberOfSeedForPod" : null,
   "numberOfBulbs" : null,
   "podFruitBulbSize" : null,
   "chilliPungencyLevel" : null,
   "cropImageUrl" : null,
   "originalFileName" : null,
   "presignedUrl" : "https://eagri1.s3.ap-south-1.amazonaws.com/crop-image/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250201T000003Z&X-Amz-SignedHeaders=host&X-Amz-Expires=518400&X-Amz-Credential=AKIAQX7JO6LEXW6LT3FM%2F20250201%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=0adf0b6367fb9f3b14700ff28fbb80ae83da1d76f9ee59d92eb93b5ece3b2fab",
   "presignedExpDate" : 1738886403000,
   "specialCharacteristics" : null,
   "multiPickPerVarietyDTOList" : null,
   "resistanceLevels" : [ {
     "id" : 63,
     "variety" : null,
     "resistanceType" : "BLAST",
     "resistanceLevel" : "S",
     "value" : true
   }, {
     "id" : 64,
     "variety" : null,
     "resistanceType" : "BLB",
     "resistanceLevel" : "MR",
     "value" : true
   }, {
     "id" : 61,
     "variety" : null,
     "resistanceType" : "BPH",
     "resistanceLevel" : "MR",
     "value" : true
   }, {
     "id" : 62,
     "variety" : null,
     "resistanceType" : "GALL_MIDGE",
     "resistanceLevel" : "MR",
     "value" : true
   } ]
 }, {
   "id" : 2,
   "varietyId" : "01/01/001/006",
   "varietyName" : "At 311",
   "varietyDescription" : null,
   "pericarpColor" : null,
   "grainSize" : null,
   "averageYield" : null,
   "maturityTime" : "90",
   "isImported" : false,
   "isMultiPick" : null,
   "grainColor" : null,
   "bearingPeriodInDays" : null,
   "scientificName" : null,
   "releasedYear" : null,
   "durationBetweenTwoPicks" : null,
   "ediblePartShape" : null,
   "seedRequirement" : null,
   "spacing" : null,
   "soilProblems" : null,
   "numberOfPics" : null,
   "farmerYield" : null,
   "researchYield" : null,
   "grainQuality" : null,
   "croplookVarietyId" : "6",
   "varietyType" : "NIV",
   "pollinationType" : null,
   "grainType" : {
     "id" : 3,
     "code" : "LONG GRAIN",
     "description" : "Long Grain"
   },
   "ageType" : null,
   "cropDTO" : {
     "id" : 1,
     "cropId" : "01/01/001",
     "description" : "Paddy",
     "scientificName" : "Oryza sativa",
     "presignedUrl" : "https://eagri1.s3.ap-south-1.amazonaws.com/crop-image/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250201T000003Z&X-Amz-SignedHeaders=host&X-Amz-Expires=518400&X-Amz-Credential=AKIAQX7JO6LEXW6LT3FM%2F20250201%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=0adf0b6367fb9f3b14700ff28fbb80ae83da1d76f9ee59d92eb93b5ece3b2fab",
     "isMultiPick" : false,
     "cropSubCategoryDTO" : {
       "id" : 1,
       "description" : "Paddy",
       "subCategoryId" : "01/01",
       "cropCategoryDTO" : {
         "id" : 1,
         "categoryId" : "01",
         "description" : "Paddy"
       }
     }
   },
   "hartiItemsDTO" : {
     "id" : 55,
     "itemNum" : null,
     "itemName" : "",
     "groupName" : ""
   },
   "fileResourceDTOList" : null,
   "cropVarietyImages" : [ ],
   "commercialNames" : [ ],
   "discontinued" : null,
   "discontinuedDate" : null,
   "researchYieldDryWeight" : null,
   "averageYieldDryWeight" : null,
   "paddyVarietyType" : null,
   "grainCategory" : null,
   "farmerSelection" : null,
   "plantGrowth" : null,
   "ageGroup" : null,
   "aromatic" : null,
   "lowGi" : null,
   "sticky" : null,
   "softCookRice" : null,
   "generalCultivation" : null,
   "wzOnly" : null,
   "salinityAreas" : null,
   "ironToxicity" : null,
   "droughtTolerant" : null,
   "heatTolerant" : null,
   "submergenceTolerant" : null,
   "coldTolerant" : null,
   "acidSulfate" : null,
   "upland" : null,
   "seedTestaColor" : null,
   "harvestInManyPicks" : null,
   "podFruitBulbSizeUnit" : null,
   "podFruitBulbColor" : null,
   "pestDiseaseResistance" : null,
   "numberOfSeedForPod" : null,
   "numberOfBulbs" : null,
   "podFruitBulbSize" : null,
   "chilliPungencyLevel" : null,
   "cropImageUrl" : null,
   "originalFileName" : null,
   "presignedUrl" : "https://eagri1.s3.ap-south-1.amazonaws.com/crop-image/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250201T000003Z&X-Amz-SignedHeaders=host&X-Amz-Expires=518400&X-Amz-Credential=AKIAQX7JO6LEXW6LT3FM%2F20250201%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=0adf0b6367fb9f3b14700ff28fbb80ae83da1d76f9ee59d92eb93b5ece3b2fab",
   "presignedExpDate" : 1738886403000,
   "specialCharacteristics" : null,
   "multiPickPerVarietyDTOList" : null,
   "resistanceLevels" : [ ]
 } ],
 "totalPages" : 347,
 "totalElements" : 693,
 "last" : false,
 "size" : 2,
 "number" : 0,
 "sort" : {
   "empty" : false,
   "sorted" : true,
   "unsorted" : false
 },
 "numberOfElements" : 2
}
Example Request
curl -X GET "{{base_url}}/cropix/api/v1/crop-details/crop-varieties" 
-H "Content-Type: application/json" \
-H "Authorization: YOUR_ACCESS_TOKEN"

Crop Variety

The Filter Crops API endpoint allows users to retrieve specific crop details based on the provided cropId. This endpoint is essential for obtaining targeted information about a particular crop.

GET {{base_url}}/cropix/api/v1/crop-details/crop-varieties/filter?varietyId=01/01/001/030

Request Method

  • GET

Headers

  • Content-Type: application/json
  • Authorization:  <token> 

Parameters

  • varietyId (required): The unique identifier of the crop to be filtered.

Response

    Successful Response

    Status Code: 200 OK

    Response Body

{
 "message" : null,
 "resultStatus" : "SUCCESSFUL",
 "httpStatus" : "OK",
 "httpCode" : "200 OK",
 "payload" : {
   "id" : 55,
   "varietyId" : "01/01/001/030",
   "varietyName" : "Bg 366",
   "varietyDescription" : "3.5 months white Intermediate Bold (Nadu) ",
   "pericarpColor" : null,
   "grainSize" : null,
   "averageYield" : "5.0",
   "maturityTime" : "105",
   "isImported" : false,
   "isMultiPick" : null,
   "grainColor" : null,
   "bearingPeriodInDays" : 105.0,
   "scientificName" : null,
   "releasedYear" : "2009",
   "durationBetweenTwoPicks" : null,
   "ediblePartShape" : null,
   "seedRequirement" : "40 Kg for Ac at Direct seeded condition",
   "spacing" : "3-4 cm between plants at direct seeded conditions",
   "soilProblems" : null,
   "numberOfPics" : null,
   "farmerYield" : "5.0",
   "researchYield" : "5.8",
   "grainQuality" : null,
   "croplookVarietyId" : "30",
   "varietyType" : "NIV",
   "pollinationType" : null,
   "grainType" : null,
   "ageType" : null,
   "cropDTO" : {
     "id" : 1,
     "cropId" : "01/01/001",
     "description" : "Paddy",
     "cropType" : "ANNUAL",
     "scientificName" : "Oryza sativa",
     "presignedUrl" : "https://eagri1.s3.ap-south-1.amazonaws.com/crop-image/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20250201T000003Z&X-Amz-SignedHeaders=host&X-Amz-Expires=518400&X-Amz-Credential=AKIAQX7JO6LEXW6LT3FM%2F20250201%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=0adf0b6367fb9f3b14700ff28fbb80ae83da1d76f9ee59d92eb93b5ece3b2fab",
     "presignedExpDate" : 1738886403000,
     "isPlantationCrop" : false
   },
   "hartiItemsDTO" : {
     "id" : 55,
     "itemNum" : null,
     "itemName" : "",
     "groupName" : ""
   },
   "fileResourceDTOList" : [ ],
   "cropVarietyImages" : [ {
     "id" : 12,
     "storedFileName" : "crop-variety-images/55/CROP",
     "originalFileName" : "Bg 366 plant.jpg",
     "presignedUrl" : "https://eagri1.s3.ap-south-1.amazonaws.com/crop-variety-images/55/CROP?response-content-disposition=inline%3B%20filename%3Ddocument.pdf&Content-Type=application%2Fpdf&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20241217T052402Z&X-Amz-SignedHeaders=host&X-Amz-Expires=432000&X-Amz-Credential=AKIAQX7JO6LEXW6LT3FM%2F20241217%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=d6b7ac7c462d1102378a7552c5d76883836a4dfd340fdefd7453f9f2d06fec6a",
     "expireDate" : 1734845042,
     "cropDamageReportingDTO" : null,
     "type" : "CROP"
   }, {
     "id" : 13,
     "storedFileName" : "crop-variety-images/55/POD",
     "originalFileName" : "Bg 366.jpg",
     "presignedUrl" : "https://eagri1.s3.ap-south-1.amazonaws.com/crop-variety-images/55/POD?response-content-disposition=inline%3B%20filename%3Ddocument.pdf&Content-Type=application%2Fpdf&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20241217T052402Z&X-Amz-SignedHeaders=host&X-Amz-Expires=432000&X-Amz-Credential=AKIAQX7JO6LEXW6LT3FM%2F20241217%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=8ae6f97e07a1a893443d6a8b487532cf2435d504e2d35c904b9f7f6fb14c41ed",
     "expireDate" : 1734845042,
     "cropDamageReportingDTO" : null,
     "type" : "POD"
   }, {
     "id" : 14,
     "storedFileName" : "crop-variety-images/55/GRAIN",
     "originalFileName" : "Bg 366 paddy.jpg",
     "presignedUrl" : "https://eagri1.s3.ap-south-1.amazonaws.com/crop-variety-images/55/GRAIN?response-content-disposition=inline%3B%20filename%3Ddocument.pdf&Content-Type=application%2Fpdf&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20241217T052403Z&X-Amz-SignedHeaders=host&X-Amz-Expires=432000&X-Amz-Credential=AKIAQX7JO6LEXW6LT3FM%2F20241217%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=eef8ca5ec57485fdbc19697bc8ccb97c4e5b48adfc24564f8b89977dcf003b7d",
     "expireDate" : 1734845043,
     "cropDamageReportingDTO" : null,
     "type" : "GRAIN"
   }, {
     "id" : 15,
     "storedFileName" : "crop-variety-images/55/SEED",
     "originalFileName" : "Bg 366 rice.jpg",
     "presignedUrl" : "https://eagri1.s3.ap-south-1.amazonaws.com/crop-variety-images/55/SEED?response-content-disposition=inline%3B%20filename%3Ddocument.pdf&Content-Type=application%2Fpdf&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20241217T052403Z&X-Amz-SignedHeaders=host&X-Amz-Expires=432000&X-Amz-Credential=AKIAQX7JO6LEXW6LT3FM%2F20241217%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=ec6f7124d70d98efbdb0dd6aa84a7a4740ff53d8de669a45a7fa62c095e1ff67",
     "expireDate" : 1734845043,
     "cropDamageReportingDTO" : null,
     "type" : "SEED"
   } ],
   "commercialNames" : null,
   "discontinued" : null,
   "discontinuedDate" : null,
   "researchYieldDryWeight" : "5.4",
   "averageYieldDryWeight" : "5.5",
   "paddyVarietyType" : "NIV",
   "grainCategory" : null,
   "farmerSelection" : null,
   "plantGrowth" : null,
   "ageGroup" : null,
   "aromatic" : null,
   "lowGi" : null,
   "sticky" : null,
   "softCookRice" : null,
   "generalCultivation" : true,
   "wzOnly" : null,
   "salinityAreas" : null,
   "ironToxicity" : null,
   "droughtTolerant" : null,
   "heatTolerant" : null,
   "submergenceTolerant" : null,
   "coldTolerant" : null,
   "acidSulfate" : null,
   "upland" : null,
   "seedTestaColor" : null,
   "harvestInManyPicks" : null,
   "podFruitBulbSizeUnit" : null,
   "podFruitBulbColor" : null,
   "pestDiseaseResistance" : null,
   "numberOfSeedForPod" : null,
   "numberOfBulbs" : null,
   "podFruitBulbSize" : null,
   "chilliPungencyLevel" : null,
   "cropImageUrl" : "variety-image/55",
   "originalFileName" : "Bg 366.jpg",
   "presignedUrl" : "https://eagri1.s3.ap-south-1.amazonaws.com/variety-image/55?response-content-disposition=inline%3B%20filename%3Ddocument.pdf&Content-Type=application%2Fpdf&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20241217T052402Z&X-Amz-SignedHeaders=host&X-Amz-Expires=431999&X-Amz-Credential=AKIAQX7JO6LEXW6LT3FM%2F20241217%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=a8ae5f359f2f3ea518386d7dd30a1c321faf95668512f409595be6f34dbf12a5",
   "presignedExpDate" : 1734845042,
   "specialCharacteristics" : "Non lodging white nadu, new plant type",
   "multiPickPerVarietyDTOList" : [ ],
   "resistanceLevels" : [ ]
 }
}
Example Request
curl -X GET "{{base_url}}/cropix/api/v1/crop-details/crop-varieties/filter?varietyId=01/01/001/030" \
-H "Content-Type: application/json" \
-H "Authorization: YOUR_ACCESS_TOKEN"

There are many vari of pass of lorem ipsum availab but the majority have suffered in some forms.There are many vari of pass of lorem ipsum availab but the majority have suffered in some forms.