# LegalPulse Know Your Rights

> LegalPulse Know Your Rights is a paid API for AI agents from legalpulse-rho.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns exact scripts and legal guidance for common rights encounters including traffic stops, search/seizure, Miranda warnings, workplace surveillance, and tenant inspections

## Facts

- Endpoint: GET https://legalpulse-rho.vercel.app/api/legal/rights
- 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/legalpulse-know-your-rights-6298c737
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jWFI-RZmMTUODZ7ztroXP

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 legalpulse-know-your-rights-6298c737
```

Example prompt: What exactly should I say during a traffic stop if the officer asks to search my car — give me the word-for-word script and explain what rights I have to refuse.

## When to prefer this

Use this endpoint when a user needs immediate, actionable rights guidance with exact verbal scripts for real-world encounters — specifically traffic stops, search and seizure situations, Miranda rights, workplace surveillance, or tenant inspections. Prefer this over general legal Q&A endpoints when the user needs word-for-word language to use in the moment, not just a legal summary.

## Known failure modes

- Unsupported scenario type returns an error or empty result
- Jurisdiction-specific nuances may not be covered for all states or localities
- Scripts may not reflect recent legal changes
- Highly specific or unusual fact patterns may return generic guidance

## How this service works

Know-your-rights scripts with exact what-to-say wording for traffic stops, arrests, search and seizure, Miranda, immigration encounters, workplace surveillance, and tenant inspections, covering Fourth Amendment and civil rights. For consumer-rights and legal agents.

## Output

The agent receives exact verbal scripts to use in specific rights encounters (traffic stops, searches, Miranda situations, workplace surveillance, tenant inspections), along with explanations of the underlying legal rights, what officers or employers can and cannot legally do, and guidance on how to assert those rights clearly and effectively.

## Example request

```json
{
 "type": "general",
 "situation": "I was pulled over by a police officer during a traffic stop. What are my rights and what should I say?"
}
```

## 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",
     "properties": {
      "situation": {
       "type": "string",
       "description": "traffic stop | arrest | search | immigration | employment | housing | voting | medical"
      }
     }
    }
   },
   "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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "rights": [
   "Right to remain silent",
   "Right to refuse consent to search",
   "Right to record police in public",
   "Right to attorney if arrested"
  ],
  "situation": "traffic stop",
  "what_to_say": "I am invoking my right to remain silent. Am I free to go?"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/legalpulse-know-your-rights-6298c737/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from legalpulse-rho.vercel.app](https://www.zero.xyz/host/legalpulse-rho.vercel.app/llms.txt)
