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

# Get one determination

> Three facts, never collapsed into one status: `determined` (what MicroCrop determined — signed, hashed, anchored), `settlement` (whether MicroCrop settled, and under the DETERMINATION tier that it deliberately did NOT) and `partnerReport` (what the partner claims happened — partner-attested and unverified). Under the DETERMINATION tier the response carries no chain domain and no USDC amount; `settlement.amountOwed` is stated in the policy's own currency.



## OpenAPI

````yaml /api-reference/openapi.json get /determinations/{determinationId}
openapi: 3.1.0
info:
  title: MicroCrop Partner API
  version: 1.0.0
  description: >-
    Parametric crop & livestock insurance API for integrating partners. All
    requests authenticate with an organization API key in the `x-api-key`
    header.
servers:
  - url: https://app.microcrop.app/api
    description: Production (Base mainnet)
security:
  - apiKey: []
tags:
  - name: Farmers
  - name: Plots
  - name: Herds
  - name: Policies
  - name: Payments
  - name: Payouts
  - name: Organization
  - name: Determinations
paths:
  /determinations/{determinationId}:
    get:
      tags:
        - Determinations
      summary: Get one determination
      description: >-
        Three facts, never collapsed into one status: `determined` (what
        MicroCrop determined — signed, hashed, anchored), `settlement` (whether
        MicroCrop settled, and under the DETERMINATION tier that it deliberately
        did NOT) and `partnerReport` (what the partner claims happened —
        partner-attested and unverified). Under the DETERMINATION tier the
        response carries no chain domain and no USDC amount;
        `settlement.amountOwed` is stated in the policy's own currency.
      parameters:
        - $ref: '#/components/parameters/determinationId'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Envelope'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    determinationId:
      name: determinationId
      in: path
      required: true
      schema:
        type: string
        format: uuid
  schemas:
    Envelope:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: object
    Error:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: object
          properties:
            code:
              type: string
              example: INVALID_INPUT
            message:
              type: string
            details: {}
  responses:
    NotFound:
      description: Not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````