# Parkland Mississippi Facts API

> Parkland Mississippi Facts API is a paid API for AI agents from parklandarchives.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns curated facts about the state of Mississippi, filterable by category and count, for a small per-call USDC micropayment.

## Facts

- Endpoint: GET https://parklandarchives.com/api/x402/mississippi-facts
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/parkland-mississippi-facts-api-ae714dd9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6Sq64SzcZwuxGG9rGl6c6

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 parkland-mississippi-facts-api-ae714dd9
```

Example prompt: Give me 5 facts about Mississippi focused on famous people — I want to learn about notable figures from the state.

## When to prefer this

Choose this endpoint when you need structured, categorized facts about Mississippi specifically — particularly when you want to filter by topic (state symbols, music, famous people, history, geography, literature, or little-known trivia) and control how many facts are returned. Ideal for trivia apps, educational agents, or content enrichment workflows that need reliable Mississippi-specific data on demand for a low per-call cost.

## Known failure modes

- Invalid category value returns an error or empty results
- Count outside the 1–10 range may be rejected or clamped
- Payment not received results in HTTP 402 response blocking access
- No facts available for a rare category combination returns an empty array

## How this service works

Complete production specification for running an x402 agent selling consortium. Shared wallet, shared ledger, coordinator agent, discovery catalogs, conversion funnel, and decision log. Made in Mississippi.

## Output

A JSON object containing the state name ('Mississippi'), the requested category, the count of facts returned, and an array of fact objects matching the specified category and count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "integer",
   "description": "Number of facts to return, from 1 to 10. Defaults to 1."
  },
  "category": {
   "type": "string",
   "description": "Filter by category: state_symbols, famous_people, music, literature, history, geography, or little_known."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "integer",
   "example": 1
  },
  "facts": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "state": {
   "type": "string",
   "example": "Mississippi"
  },
  "category": {
   "type": "string",
   "example": "random"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/parkland-mississippi-facts-api-ae714dd9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from parklandarchives.com](https://www.zero.xyz/host/parklandarchives.com/llms.txt)
