> ## 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 your organization

> Includes kybStatus, countryCode, serviceTier, isActive and settings. It does NOT include apiKey, apiSecret or webhookSecret — those are stripped from this response. Read key metadata at GET /organizations/me/api-key and the webhook secret at GET /organizations/me/webhook.



## OpenAPI

````yaml /api-reference/openapi.json get /organizations/me
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:
  /organizations/me:
    get:
      tags:
        - Organization
      summary: Get your organization
      description: >-
        Includes kybStatus, countryCode, serviceTier, isActive and settings. It
        does NOT include apiKey, apiSecret or webhookSecret — those are stripped
        from this response. Read key metadata at GET /organizations/me/api-key
        and the webhook secret at GET /organizations/me/webhook.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationEnvelope'
components:
  schemas:
    OrganizationEnvelope:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: object
          description: >-
            The organization record with apiKey, apiSecret and webhookSecret
            removed.
          properties:
            id:
              type: string
              format: uuid
            name:
              type: string
            type:
              type: string
              enum:
                - COOPERATIVE
                - NGO
                - MFI
                - INSURANCE_COMPANY
                - GOVERNMENT
                - OTHER
            countryCode:
              type: string
              enum:
                - KE
                - GH
            kybStatus:
              type: string
              enum:
                - NOT_STARTED
                - PENDING_REVIEW
                - VERIFIED
                - REJECTED
            serviceTier:
              type: string
              enum:
                - DETERMINATION
                - DETERMINATION_AND_SETTLEMENT
              description: >-
                What your organization bought. It is projected onto
                Policy.settlementMode at purchase and frozen there.
            isActive:
              type: boolean
            webhookUrl:
              type: string
              nullable: true
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````