# Nesebar.net Travel Corpus Article Retrieval

> Nesebar.net Travel Corpus Article Retrieval is a paid API for AI agents from nesebar.net, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Fetches a single travel or real estate article from the Nesebar.net content corpus by slug, returning bilingual markdown content and metadata

## Facts

- Endpoint: GET https://nesebar.net/api/agent/corpus/%7Bslug%7D
- 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/nesebar-net-travel-corpus-article-retrieval-064f5697
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fJFxkwjAzzKcez0O1Yo3U

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-corpus-article-retrieval-064f5697
```

Example prompt: Can you pull up the Nesebar travel guide article from Nesebar.net — the slug is 'nesebar-patevoditel'?

## When to prefer this

Use this endpoint when you need to retrieve a specific article from the Nesebar.net travel and real estate content corpus by its known slug identifier. It is ideal for agents that need bilingual (English/Bulgarian) markdown content about Nesebar, Sunny Beach, or the Bulgarian Black Sea coast, particularly for travel guides or property-related editorial content published on nesebar.net.

## Known failure modes

- Invalid or non-existent slug returns an empty result or 404-equivalent error
- Slug placeholder not replaced in URL causes request failure
- Article may not yet exist for recently published slugs
- Network timeout or payment processing failure returns no content

## How this service works

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

## Output

A JSON object containing the article slug, English title, English markdown content, Bulgarian title, Bulgarian markdown content, category tag, and ISO date of last update. Content is provided in both English and Bulgarian (bg suffix fields).

## 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": {
  "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-corpus-article-retrieval-064f5697/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)
