# YourAIOnRamp AI Readiness Assessment

> YourAIOnRamp AI Readiness Assessment is a paid API for AI agents from api.youraionramp.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Returns a personalized AI readiness level, score, description, and recommended learning next steps for a given use case or category, targeted at adults 50+.

## Facts

- Endpoint: GET https://api.youraionramp.com/api/x402/harness
- 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/youraionramp-ai-readiness-assessment-9716a139
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EcG8qwJHgXEt4qKJxaHj-

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 youraionramp-ai-readiness-assessment-9716a139
```

Example prompt: Can you check my AI readiness for the 'everyday productivity' use case and tell me what level I'm at, my score, and what I should learn next?

## When to prefer this

Choose this endpoint when you need a lightweight, structured AI literacy assessment tailored specifically for adults 50+ — especially when the goal is to classify a user's readiness level and surface personalized next steps or learning modules. Prefer this over generic quiz or survey APIs when the output needs to be a machine-readable readiness tier with actionable recommendations.

## Known failure modes

- Invalid or missing input parameters may return an empty or default response
- Unknown category or tag values may result in a generic fallback assessment rather than a tailored one
- Service may return a 402 payment required error if the $1 USDC payment is not completed
- Network timeouts or API unavailability may result in no response

## How this service works

Free AI literacy platform for adults 50+. No jargon, no pressure — just a friendly on-ramp to using AI with confidence. Take the free AI Readiness Check and start learning today.

## Output

Returns a structured object containing a readiness level enum (curious_explorer, confident_learner, ready_builder, or tech_friendly), an integer score, a plain-language description of the user's readiness, an audience label, a source identifier, a version string, an array of recommended next steps, and optionally an array of recommended learning modules.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tag": {
   "type": "string"
  },
  "useCase": {
   "type": "string"
  },
  "category": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "version",
  "source",
  "audience",
  "level",
  "score",
  "description",
  "nextSteps"
 ],
 "properties": {
  "level": {
   "enum": [
    "curious_explorer",
    "confident_learner",
    "ready_builder",
    "tech_friendly"
   ],
   "type": "string"
  },
  "score": {
   "type": "integer"
  },
  "source": {
   "type": "string"
  },
  "version": {
   "type": "string"
  },
  "audience": {
   "type": "string"
  },
  "nextSteps": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "description": {
   "type": "string"
  },
  "recommendedModules": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/youraionramp-ai-readiness-assessment-9716a139/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.youraionramp.com](https://www.zero.xyz/host/api.youraionramp.com/llms.txt)
