# Nesebar.net Travel & Real Estate Corpus API

> Nesebar.net Travel & Real Estate Corpus API is a paid API for AI agents from nesebar.net, paid per call via x402, $5/call, status unknown (last checked 2026-09-16).

Returns a paginated corpus of articles about real estate and travel in Nesebar and the Bulgarian Black Sea coast

## Facts

- Endpoint: GET https://nesebar.net/api/agent/corpus
- Price: $5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nesebar-net-travel-real-estate-corpus-api-9509f376
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9-TpsFj37IBezfbqR1tG9

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 nesebar-net-travel-real-estate-corpus-api-9509f376
```

Example prompt: Pull all the articles from the Nesebar.net content corpus so I can browse their real estate and travel guides about Nesebar and the Bulgarian Black Sea coast.

## When to prefer this

Choose this endpoint when you need bulk access to editorial and real estate content specifically about Nesebar and the Bulgarian Black Sea coast. It is ideal for building knowledge bases, RAG pipelines, or research tools focused on this geographic niche. Prefer it over generic web scraping when you need structured, bilingual (English and Bulgarian) markdown content with metadata like category and update timestamps.

## Known failure modes

- Payment not included or invalid x402 payment header — returns 402 Payment Required
- Server unavailable or timeout — returns 5xx error
- Empty result set if no articles exist in corpus — returns count: 0 with empty articles array
- Malformed query parameters may return unexpected filtering results

## How this service works

Ваканционни имоти в Несебър, Слънчев бряг и Черноморието — директно от собственика. Апартаменти, къщи, хотели без посредник и без комисионна.

## Output

A JSON object containing a total article count (e.g. 330) and an array of article objects, each with a slug, English title, Bulgarian title, category, English markdown content, Bulgarian markdown content, and an ISO-formatted updatedAt timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object"
    }
   }
  },
  "description": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 330,
  "articles": [
   {
    "slug": "nesebar-patevoditel",
    "title": "string",
    "content": "markdown",
    "titleBg": "string",
    "category": "string",
    "contentBg": "markdown",
    "updatedAt": "ISO date"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nesebar-net-travel-real-estate-corpus-api-9509f376/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nesebar.net](https://www.zero.xyz/host/nesebar.net/llms.txt)
