# Ren API - Seed-Oil-Free Restaurant List

> Ren API - Seed-Oil-Free Restaurant List is a paid API for AI agents from ren-api-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a lightweight list of restaurants filtered by verdict and/or neighborhood, each with name, verdict, and neighborhood fields.

## Facts

- Endpoint: GET https://ren-api-production.up.railway.app/list
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ren-api-seed-oil-free-restaurant-list-80ed90a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Dg9H_c-pQT3696_GbWOhP

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 ren-api-seed-oil-free-restaurant-list-80ed90a8
```

Example prompt: Can you show me a list of seed-oil-free restaurants in Montrose / Heights with a clean verdict?

## When to prefer this

Use this endpoint when you need a quick, filtered list of seed-oil-free or health-conscious restaurants without detailed data. Prefer this over a full detail endpoint when you only need names, verdicts, and neighborhoods for browsing or routing purposes. Best for agents answering questions like 'which restaurants near me avoid seed oils?'

## Known failure modes

- No restaurants match the given verdict/neighborhood combination — returns empty array
- Invalid query parameter values may be ignored or return unfiltered results
- Payment failure (x402) if USDC is not available or transaction fails
- Service unavailable if Railway.app hosting is down

## How this service works

Returns a lightweight restaurant list with name, verdict, and neighborhood.

## Output

An array of restaurant objects, each containing a name (string), verdict (string, e.g. 'clean'), and neighborhood (string). The list is lightweight and pre-filtered based on the query parameters provided.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "verdict": {
       "type": "string",
       "examples": [
        "clean"
       ],
       "description": "Optional verdict filter."
      },
      "neighborhood": {
       "type": "string",
       "examples": [
        "Montrose / Heights"
       ],
       "description": "Optional neighborhood/location filter."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "name",
       "verdict",
       "neighborhood"
      ],
      "properties": {
       "name": {
        "type": "string"
       },
       "verdict": {
        "type": "string"
       },
       "neighborhood": {
        "type": "string"
       }
      },
      "additionalProperties": false
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ren-api-seed-oil-free-restaurant-list-80ed90a8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ren-api-production.up.railway.app](https://www.zero.xyz/host/ren-api-production.up.railway.app/llms.txt)
