GET
/
plans
curl --request GET \
  --url https://sandbox.withclasp.com/plans \
  --header 'Authorization: Bearer <token>'
{
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "id": "<string>",
      "plan_name": "<string>",
      "plan_type": "<string>",
      "line_of_coverage": "medical",
      "group": "<string>",
      "effective_start": "2023-12-25",
      "effective_end": "2023-12-25",
      "member_count": 123,
      "dependent_count": 123,
      "requires_primary_care_provider": true,
      "is_low_cost": true,
      "provides_minimum_value": true,
      "provides_essential_coverage": true,
      "dependent_coverage_excluded": true,
      "spouse_coverage_excluded": true,
      "plan_details": "<any>",
      "plan_summary_url": "<string>",
      "bundle": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key authentication with required prefix "Bearer"

Query Parameters

connection
string
cursor
string

The pagination cursor value.

effective_on
string
employer
string
line_of_coverage
enum<string>
  • medical - Medical
  • dental - Dental
  • vision - Vision
  • life - Life
  • accidental_death - Accidental Death
Available options:
accidental_death,
dental,
life,
medical,
vision
page_size
integer

Number of results to return per page.

Response

200 - application/json
next
string | null
previous
string | null
results
object[]