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

# Get guardian relationship types

> Retrieve a list of all available guardian relationship types.



## OpenAPI

````yaml /openapi-public.yml get /api/v1/patients/guardian_relationship_types
openapi: 3.0.3
info:
  title: Blend API
  version: 1.0.0
  description: API for Blend
servers:
  - url: https://api.byblend.com
    description: Blend production server
security:
  - bearerAuth: []
tags:
  - name: Orders
    description: Order management endpoints
  - name: Patients
    description: Patient management endpoints
  - name: Reports
    description: Reporting endpoints
  - name: Products and Materials
    description: Product catalog and inventory endpoints
  - name: Electronic Prescriptions
    description: Electronic prescription management endpoints
  - name: Prescriptions
    description: Prescription management endpoints
  - name: Authentication
    description: Authentication endpoints
  - name: Notifications
    description: User management endpoints
  - name: Prescribers
paths:
  /api/v1/patients/guardian_relationship_types:
    get:
      tags:
        - Patients
      summary: Get guardian relationship types
      description: Retrieve a list of all available guardian relationship types.
      responses:
        '200':
          description: Successful response with list of guardian relationship types.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
                  example:
                    - parent
                    - grandparent
                    - sibling
                    - child
                    - other_relative
                    - power_of_attorney
                    - caregiver
                    - legal_guardian
                    - spouse
                    - other
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````