GetMyCert Developer API
Programmatic access to 13,000+ expert-verified IT certification practice questions across 26 certifications. Every question has a verified correct answer, a written explanation, and a difficulty rating. Access it with an API key, pay-per-call from an AI agent via x402, or connect over MCP.
Why this data
Most question datasets are scraped and unverified. Every GetMyCert answer is confirmed by independent blind-solver consensus plus an adversarial review and ships with an explanation, which makes it suitable for AI tutors, adaptive study apps, and agents that need answers they can trust.
1. Get an API key (free)
curl -X POST https://www.getmycert.com/api/v1/signup \
-H "Content-Type: application/json" \
-d '{"name":"Your Name","email":"you@example.com"}'
Returns a gmc_live_… key (shown once). Free tier: 10 requests/minute, 100 requests/month, up to 50 unique questions. Higher tiers (Developer, Enterprise) raise rate, monthly, and unique-question limits and are activated by subscription.
2. Query questions
curl "https://www.getmycert.com/api/v1/questions?certification=comptia-security-plus&difficulty=hard&limit=10" \
-H "x-api-key: gmc_live_..."
GET /api/v1/questions— params:certification(slug),difficulty(easy|medium|hard),limit,include_answerGET /api/v1/certifications— list of certificationsGET /api/v1/usage— your current usage and limits
Responses include the question, options A–D, correct answer, explanation, and difficulty. Results are returned in randomized order; sequential pagination is reserved for Enterprise.
3. For AI agents: pay-per-call (x402)
No signup required. Agents can pay per request in USDC on Base using the x402 protocol. Call the endpoint, receive an HTTP 402 with payment terms, pay, and retry.
GET https://www.getmycert.com/api/v1/x402?certification=comptia-security-plus&limit=10
- Pricing: 10 questions for $0.01, 25 for $0.02, 50 for $0.04 USDC (30% off without answers)
- Network: Base mainnet · asset: USDC · discovery: /.well-known/x402.json
4. For AI agents: MCP server
Connect an MCP-compatible agent directly to the question bank. Endpoint: https://www.getmycert.com/api/mcp · server card: /.well-known/mcp/server-card.json.
Spec & free feeds
- OpenAPI: /.well-known/openapi.json
- Free static sample feeds per cert (no key):
/api/<cert-slug>/questions-free.json, e.g. Security+
Building an AI tutor or study agent? Use the API key flow for apps, x402 for pay-per-call agents, or MCP for direct agent access. Contact support@getmycert.com for Developer/Enterprise tiers.