Quick Start
-
Create an account
Sign up at dashboard.opelyx.com to get your free API key. No credit card required.
-
Copy your API key
Navigate to the API Keys page in the dashboard and copy your key. It starts with
op_followed by 40 hex characters. -
Make your first request
Terminal window curl -H "Authorization: Bearer op_YOUR_API_KEY_HERE" \"https://api.opelyx.com/v1/health/plans?zip=90210&age=30"import requestsresponse = requests.get("https://api.opelyx.com/v1/health/plans",headers={"Authorization": "Bearer op_YOUR_API_KEY_HERE"},params={"zip": "90210", "age": 30},)data = response.json()print(f"Found {data['total']} plans")const response = await fetch("https://api.opelyx.com/v1/health/plans?zip=90210&age=30",{headers: { Authorization: "Bearer op_YOUR_API_KEY_HERE" },},);const data = await response.json();console.log(`Found ${data.total} plans`); -
Explore the response
The API returns HAL-formatted JSON with
_linksfor navigation and_embedded.planscontaining the matched plans.
Next Steps
Section titled “Next Steps”- Authentication — API key management and security best practices
- First Request — Detailed walkthrough of the plan search workflow
- Health API Overview — Full API capabilities and data coverage