Eden Health grdn.routes.impl.screeners API
Handlers for screener fetching and submission.
Handlers for screener fetching and submission.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/eden-health-grdn-routes-impl-screeners-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
openapi: 3.2.0
info:
version: '1.0'
title: Grdn grdn.handler Grdn.routes.impl.screeners API
description: Eden Health Inc. primary backend API service.
servers:
- url: https://api.edenhealth.com/
tags:
- name: grdn.routes.impl.screeners
description: Handlers for screener fetching and submission.
paths:
/v2/patient/{patient-id}/screener:
get:
summary: get-screener-handler
description: "Given a patient id, return all active (unscored) screeners for that patient.\n Filters the screeners and enriches the data per the `eden-screeners` athena\n config entry.\n Prepends any custom screeners from our dB."
tags:
- grdn.routes.impl.screeners
parameters:
- in: path
name: patient-id
description: 'origin spec: grdn.specs/patient-id-params'
required: true
schema:
type: string
format: uuid
- in: query
name: funnel-id
description: 'origin spec: grdn.specs/patient-id-params'
required: false
schema:
type: string
format: uuid
responses:
default:
description: Default success response.
content:
application/json:
schema: {}
/v2/patient/{patient-id}/screener-status:
get:
summary: get-screener-status-handler
description: Gets all screeners completed by the patient, and filters the list based on screener-group.
tags:
- grdn.routes.impl.screeners
parameters:
- in: path
name: patient-id
description: 'origin spec: grdn.specs/get-screener-status-params'
required: true
schema:
type: string
format: uuid
- in: query
name: screener-groups
description: 'origin spec: grdn.specs/get-screener-status-params'
required: false
schema:
type: array
items:
type: string
responses:
default:
description: Default success response.
content:
application/json:
schema:
type: object
properties:
screener-status:
type: array
items:
type: object
properties:
screener-group:
type: string
latest-version:
type: string
completed-version:
type: string
required:
- screener-group
- latest-version
- completed-version
required:
- screener-status
title: grdn.specs.screeners/get-screener-status-response
/v2/patient/{patient-id}/vax-location:
get:
summary: get-vax-location-handler
description: Gets location from latest COVID vaccine survey response completed by the patient.
tags:
- grdn.routes.impl.screeners
parameters:
- in: path
name: patient-id
description: 'origin spec: grdn.specs/patient-id-params'
required: true
schema:
type: string
format: uuid
- in: query
name: funnel-id
description: 'origin spec: grdn.specs/patient-id-params'
required: false
schema:
type: string
format: uuid
responses:
default:
description: Default success response.
content:
application/json:
schema:
type: object
properties:
location:
type: string
required:
- location
title: grdn.specs.screeners/get-vax-location-response
/v2/screener-card:
get:
summary: get-screener-card-handler
description: Given a screener ID return sorted question list
tags:
- grdn.routes.impl.screeners
parameters:
- in: query
name: screener-response-id
description: 'origin spec: grdn.specs/screener-card-response-params'
required: true
schema:
type: string
format: uuid
- in: query
name: covid-screener-id
description: 'origin spec: grdn.specs/screener-card-response-params'
required: true
schema:
type: string
format: uuid
responses:
default:
description: Default success response.
content:
application/json:
schema: {}