# EduPulse Exam Grader

> EduPulse Exam Grader is a paid API for AI agents from edupulse-xi-blond.vercel.app, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Grades written exam responses using rubric-based scoring with detailed feedback, supporting bar and CPA exam formats

## Facts

- Endpoint: GET https://edupulse-xi-blond.vercel.app/api/exam/grade
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edupulse-exam-grader-84b27bba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pbAaCCZeJ5rjIOnNCf4Nw

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability edupulse-exam-grader-84b27bba
```

Example prompt: Can you grade this bar exam practice essay I wrote on negligence — score it using a rubric and give me detailed feedback on what I got right and where I lost points?

## When to prefer this

Use this endpoint when an AI agent or student needs rubric-aligned scoring and detailed written feedback on a practice exam response, especially for high-stakes professional exams like the bar or CPA. Prefer this over generic essay reviewers when structured, format-specific scoring (bar/CPA) is required.

## Known failure modes

- Missing or empty exam response body returns error
- Unsupported exam format type returns validation error
- Ambiguous or missing rubric context may reduce scoring accuracy
- Overly short responses may receive minimal feedback
- Request without valid x402 payment header returns 402 Payment Required

## How this service works

Exam answer grading / grade my written answer / rubric scoring with feedback. Scores written exam responses against the official rubric with detailed feedback, including Bar (MEE/MPT) and CPA (BEC) essay formats. Any exam worldwide.

## Output

Returns a rubric-based numeric score for the written exam response along with detailed written feedback identifying strengths, weaknesses, and point deductions, formatted appropriately for bar or CPA exam conventions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "exam",
      "question",
      "response"
     ],
     "properties": {
      "exam": {
       "type": "string",
       "description": "Exam type (e.g. Bar, CPA Evolution, GRE, LSAT)"
      },
      "lang": {
       "type": "string",
       "description": "lang"
      },
      "question": {
       "type": "string",
       "description": "question"
      },
      "response": {
       "type": "string",
       "description": "The student response to grade"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edupulse-exam-grader-84b27bba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from edupulse-xi-blond.vercel.app](https://www.zero.xyz/host/edupulse-xi-blond.vercel.app/llms.txt)
