Eden Health grdn.routes.impl.sponsor API

Handlers for sponsor data.

Operations 4

GET /v2/sponsor/{sponsor-id}/divisions get-sponsor-divisions-handler
POST /v2/sponsor/{sponsor-id}/roster post-roster
GET /v2/sponsor/{sponsor-id}/roster-statuses get-roster-ingestion-statuses
GET /v2/sponsors get-sponsors

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/eden-health-grdn-routes-impl-sponsor-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

eden-health-grdn-routes-impl-sponsor-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '1.0'
  title: Grdn grdn.handler Grdn.routes.impl.sponsor API
  description: Eden Health Inc. primary backend API service.
servers:
- url: https://api.edenhealth.com/
tags:
- name: grdn.routes.impl.sponsor
  description: Handlers for sponsor data.
paths:
  /v2/sponsor/{sponsor-id}/divisions:
    get:
      summary: get-sponsor-divisions-handler
      description: Get all divisions for a sponsor.
      tags:
      - grdn.routes.impl.sponsor
      parameters:
      - in: path
        name: sponsor-id
        description: 'origin spec: grdn.specs.sponsor/get-sponsor-divisions-params'
        required: true
        schema:
          type: string
          format: uuid
      responses:
        default:
          description: Default success response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  divisions:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type:
                          - string
                          - 'null'
                          format: uuid
                        name:
                          type: string
                          x-allOf:
                          - type: string
                          - {}
                      required:
                      - id
                      - name
                      title: grdn.specs.sponsor/division
                required:
                - divisions
                title: grdn.specs.sponsor/get-sponsor-divisions-response
  /v2/sponsor/{sponsor-id}/roster:
    post:
      summary: post-roster
      description: Uploads a roster to S3 and logs the event.
      tags:
      - grdn.routes.impl.sponsor
      parameters:
      - in: path
        name: sponsor-id
        description: 'origin spec: grdn.specs.sponsor/post-roster-params'
        required: true
        schema:
          type: string
          format: uuid
      responses:
        default:
          description: Default success response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  provider-id:
                    type: string
                    format: uuid
                  processed-at:
                    type:
                    - string
                    - 'null'
                    x-allOf:
                    - type: string
                    - {}
                  id:
                    type: string
                    format: uuid
                  errors:
                    type:
                    - array
                    - 'null'
                    items:
                      type: string
                  status:
                    enum:
                    - ingestion_error
                    - uploaded
                    - ingestion_success
                    type: string
                  sponsor-id:
                    type: string
                    format: uuid
                  provider-display-name:
                    type: string
                  uploaded-at:
                    type: string
                    x-allOf:
                    - type: string
                    - {}
                  filename:
                    type: string
                required:
                - id
                - sponsor-id
                - provider-id
                - provider-display-name
                - uploaded-at
                - processed-at
                - status
                - filename
                - errors
                title: grdn.specs.sponsor/post-roster-response
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                roster-data:
                  type: string
              required:
              - roster-data
              title: grdn.specs.sponsor/post-roster-params
        description: 'origin spec: grdn.specs.sponsor/post-roster-params'
  /v2/sponsor/{sponsor-id}/roster-statuses:
    get:
      summary: get-roster-ingestion-statuses
      description: Returns the last roster ingestion status records for the sponsor; limit can be set in environment (default 10).
      tags:
      - grdn.routes.impl.sponsor
      parameters:
      - in: path
        name: sponsor-id
        description: 'origin spec: grdn.specs.sponsor/get-roster-ingestion-status'
        required: true
        schema:
          type: string
          format: uuid
      responses:
        default:
          description: Default success response.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    provider-id:
                      type: string
                      format: uuid
                    processed-at:
                      type:
                      - string
                      - 'null'
                      x-allOf:
                      - type: string
                      - {}
                    id:
                      type: string
                      format: uuid
                    errors:
                      type:
                      - array
                      - 'null'
                      items:
                        type: string
                    status:
                      enum:
                      - ingestion_error
                      - uploaded
                      - ingestion_success
                      type: string
                    sponsor-id:
                      type: string
                      format: uuid
                    provider-display-name:
                      type: string
                    uploaded-at:
                      type: string
                      x-allOf:
                      - type: string
                      - {}
                    filename:
                      type: string
                  required:
                  - id
                  - sponsor-id
                  - provider-id
                  - provider-display-name
                  - uploaded-at
                  - processed-at
                  - status
                  - filename
                  - errors
                  title: grdn.specs.sponsor/ingestion-status
  /v2/sponsors:
    get:
      summary: get-sponsors
      description: Get all sponsor data.
      tags:
      - grdn.routes.impl.sponsor
      responses:
        default:
          description: Default success response.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      format: uuid
                    name:
                      type: string
                    created_at: {}
                    schema_name:
                      type:
                      - string
                      - 'null'
                    screeners:
                      type: array
                      items:
                        type: string
                        format: uuid
                  required:
                  - id
                  - name
                  - created_at
                  - schema_name
                  - screeners
                  title: grdn.specs.sponsor/sponsor