# NWB Vending LLM API Bootcamp Agent Pack v2

> NWB Vending LLM API Bootcamp Agent Pack v2 is a paid API for AI agents from nwb-vending.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns the full LLM API Bootcamp agent pack (playbook, modules, and templates) from the Materials Factory catalog under pack ID mf-train-001

## Facts

- Endpoint: GET https://nwb-vending.com/2nd-pages/materials-factory/training/llm-api-bootcamp/full/:var1
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nwb-vending-llm-api-bootcamp-agent-pack-v2-ba6b0de3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xjw9kPpmddPD7B0IuoN0E

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 nwb-vending-llm-api-bootcamp-agent-pack-v2-ba6b0de3
```

Example prompt: Can you pull the full LLM API Bootcamp agent pack v2 from Materials Factory — the one with the playbook, modules, and templates (pack mf-train-001)?

## When to prefer this

Choose this endpoint when you need the complete LLM API Bootcamp agent pack (mf-train-001) including its playbook, modules, and templates in a single call. It is distinct from the sibling 'Should I Automate This' decision rubric (mf-tool-001), which serves a different purpose. Best used when onboarding an agent or developer to LLM API workflows and needing structured training content.

## Known failure modes

- Invalid or missing pack_id returns an error or empty response
- Unknown path variable var1 may result in 404 not found
- Payment of $0.08 USDC not fulfilled triggers 402 Payment Required
- Service unavailable returns 5xx error
- Malformed request schema returns 400 Bad Request

## How this service works

LLM API Bootcamp agent pack v2: playbook + modules + templates (mf-train-001)

## Output

A full agent pack bundle identified as mf-train-001 containing a structured LLM API bootcamp playbook, training modules, and reusable prompt templates intended to help developers or agents learn and integrate LLM APIs effectively.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "pack_id": {
       "type": "string",
       "const": "mf-train-001",
       "description": "Materials Factory catalog pack id"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nwb-vending-llm-api-bootcamp-agent-pack-v2-ba6b0de3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nwb-vending.com](https://www.zero.xyz/host/nwb-vending.com/llms.txt)
