> ## Documentation Index
> Fetch the complete documentation index at: https://hoversprite.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get all crops



## OpenAPI

````yaml api-reference/openapi.json get /api/common/crop
openapi: 3.0.1
info:
  title: OpenAPI definition
  version: v0
servers:
  - url: https://localhost:8080
    description: Generated server url
security: []
paths:
  /api/common/crop:
    get:
      tags:
        - Crop
      summary: Get all crops
      operationId: getAll_19
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CropDTO'
components:
  schemas:
    CropDTO:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string

````