examcompass.com APIexamcompass.com ↗
Access CompTIA A+, Network+, and Security+ SY0-701 practice test questions and topic quizzes via the ExamCompass API. 5 endpoints, structured JSON output.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/bc82fc6b-4974-4ab2-87b7-e6720c9b29a7/get_home_page_exam_index' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns a full index of available certification exams (A+, Network+, Security+) and their respective practice test, topic quiz, and acronym quiz links.
No input parameters required.
{
"type": "object",
"fields": {
"CompTIA A+": "object containing practice_tests, topic_quizzes, and acronym_quizzes arrays",
"CompTIA Network+": "object containing practice_tests, topic_quizzes, and acronym_quizzes arrays",
"CompTIA Security+": "object containing practice_tests, topic_quizzes, and acronym_quizzes arrays"
},
"sample": {
"data": {
"CompTIA A+": {
"topic_quizzes": [
{
"url": "https://www.examcompass.com/comptia-a-plus-220-1201-certification-exam-mobile-device-hardware-servicing-quiz",
"name": "Mobile Device Hardware Servicing Quiz"
}
],
"practice_tests": [
{
"url": "https://www.examcompass.com/comptia-a-plus-certification-practice-test-1-exam-220-1201",
"name": "A+ Practice Test 1"
}
],
"acronym_quizzes": [
{
"url": "https://www.examcompass.com/comptia-a-plus-220-1201-exam-acronyms-quiz-part-1",
"name": "A+ 220-1201 Exam Acronyms Quiz pt. 1"
}
]
},
"CompTIA Network+": {
"topic_quizzes": [
{
"url": "https://www.examcompass.com/comptia-network-plus-certification-exam-n10-009-osi-reference-model-quiz",
"name": "OSI Reference Model Quiz"
}
],
"practice_tests": [
{
"url": "https://www.examcompass.com/comptia-network-plus-certification-practice-test-1-exam-n10-009",
"name": "Network+ Practice Exam 1"
}
],
"acronym_quizzes": [
{
"url": "https://www.examcompass.com/comptia-network-plus-n10-009-exam-acronyms-quiz-part-1",
"name": "N10-009 Exam Acronyms Quiz pt. 1"
}
]
},
"CompTIA Security+": {
"topic_quizzes": [
{
"url": "https://www.examcompass.com/comptia-security-plus-sy0-701-exam-security-controls-quiz",
"name": "Security Controls Quiz"
}
],
"practice_tests": [
{
"url": "https://www.examcompass.com/comptia-security-plus-practice-test-1-exam-sy0-701",
"name": "Security+ Practice Test 1"
}
],
"acronym_quizzes": [
{
"url": "https://www.examcompass.com/comptia-security-plus-sy0-701-exam-acronyms-quiz-part-1",
"name": "SY0-701 Exam Acronyms Quiz pt. 1"
}
]
}
},
"status": "success"
}
}About the examcompass.com API
The ExamCompass API provides structured access to CompTIA certification practice exam content across 5 endpoints, covering A+, Network+, and Security+ SY0-701. The get_home_page_exam_index endpoint returns a full index of available tests and quizzes, while dedicated endpoints for each certification deliver individual question objects — including question text and answer options — for up to 24 Security+, 12 Network+, and multiple A+ practice tests.
Exam Index and Coverage
The get_home_page_exam_index endpoint requires no inputs and returns three top-level objects: CompTIA A+, CompTIA Network+, and CompTIA Security+. Each contains practice_tests, topic_quizzes, and acronym_quizzes arrays with links to individual tests. This gives you a complete map of available content before fetching individual tests.
Practice Test Endpoints
Three endpoints handle individual practice tests by certification. get_security_plus_practice_test accepts a test_number parameter (1–24) and returns a questions array, quiz_name, and total_questions integer — each test contains approximately 25 questions. get_network_plus_practice_test covers N10-009 tests numbered 1–12 with the same response shape. get_a_plus_practice_test takes both a core parameter ('1' for 220-1201 or '2' for 220-1202) and a test_number, allowing you to target either A+ core exam series.
Topic Quizzes
get_security_plus_topic_quiz retrieves topic-focused Security+ quizzes using a topic slug parameter. Confirmed working slugs include security-controls, encryption, hashing, and digital. The response follows the same structure as the practice test endpoints: a questions array of objects with question text and options, a quiz_name string, and a total_questions count.
Response Shape
All question-returning endpoints share a consistent response structure. Each item in the questions array contains the question text and an options array of answer choices. No answer keys or explanations are included in the response — the data reflects the question and option content only.
- Building a flashcard or quiz app seeded with real CompTIA Security+ SY0-701 questions from
get_security_plus_practice_test - Generating a study schedule that cycles through all 24 Security+ practice tests programmatically
- Populating a learning management system with CompTIA A+ 220-1201 and 220-1202 practice questions keyed by core exam
- Indexing all available topic quizzes for Network+ and Security+ using
get_home_page_exam_indexto build a syllabus tracker - Comparing question coverage across topic slugs like
encryptionandhashingfor targeted Security+ study guides - Archiving versioned snapshots of exam question sets to track content changes over time
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does ExamCompass have an official developer API?+
Do the practice test endpoints return correct answers or explanations?+
options array of answer choices, but no answer keys, correct-answer flags, or explanations are included in any endpoint's response. The API covers question and option content only. You can fork this API on Parse and revise it to add answer extraction if ExamCompass exposes that data in a form you can target.Are acronym quizzes accessible through the API?+
get_home_page_exam_index endpoint lists acronym quiz links in the index, but there are no dedicated endpoints to fetch acronym quiz question content. The API covers practice tests and topic quizzes. You can fork it on Parse and revise to add an acronym quiz endpoint.What topic slugs work with `get_security_plus_topic_quiz`?+
security-controls, encryption, hashing, and digital. Additional slugs may work if they correspond to ExamCompass topic quiz URLs, but only these four are documented as confirmed. Use get_home_page_exam_index to retrieve the full list of topic quiz links and derive additional slugs from those URLs.