Get СДАМ ГИА Problem by ID
sdamgia_get_problemRetrieve a complete exam problem from the СДАМ ГИА database by its unique ID. Includes problem statement, solution, answer, and similar problems.
Instructions
Retrieves a complete problem from the СДАМ ГИА database by its unique identifier.
When to use:
You have a specific problem ID and need its full details
You need to see the problem statement, solution, answer, and similar problems
You want to reference an exact problem from the СДАМ ГИА database
Parameters:
subject(required): Subject code (e.g., 'math', 'phys', 'inf', 'rus', 'chem', 'bio', 'geo', 'hist', 'soc', 'en', 'de', 'fr', 'sp', 'lit')problem_id(required): Numeric problem ID as a string (e.g., "12345")response_format(optional): Output format - 'markdown' (default, human-readable) or 'json' (structured data)
Returns: A complete problem object containing:
condition: The problem statement (text and optional HTML/images)
solution: Step-by-step solution with explanations
answer: The correct answer
similar_problems: List of related problem IDs for further practice
metadata: Problem ID, subject, difficulty level where available
Response format:
Markdown: Formatted text with sections for condition, solution, answer, and similar problems
JSON: Structured object with all problem data as nested objects/arrays
Example: Getting a specific math problem:
{
"subject": "math",
"problem_id": "54321",
"response_format": "markdown"
}Notes:
Problem IDs must be numeric strings (digits only)
The problem_id must exist in the specified subject database
Some problems may not have solutions available
Similar problems are automatically included for practice
Use this tool when you need exact problem details, not for searching
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| subject | Yes | Subject code (e.g., 'math', 'phys', 'inf') | |
| problem_id | Yes | Problem ID (numeric string) | |
| response_format | No | Output format: 'markdown' for readable text or 'json' for structured data | markdown |