Export Formats

Nuncio lists are available in multiple formats for maximum portability.

JSON (Schema.org)

GET /api/public/lists/{slug}/json

Returns your list in Schema.org JSON-LD format, ideal for SEO and structured data applications.

Format

{
  "@context": "https://schema.org",
  "@type": "ItemList",
  "name": "Summer Tour 2025",
  "description": "All tour dates for summer 2025",
  "author": {
    "@type": "Person",
    "name": "John Doe"
  },
  "itemListElement": [
    {
      "@type": "ListItem",
      "position": 1,
      "item": {
        "@type": "MusicEvent",
        "name": "Concert Title",
        "startDate": "2025-08-15T00:00:00.000Z",
        "location": {
          "@type": "Place",
          "name": "Madison Square Garden",
          "address": {
            "@type": "PostalAddress",
            "addressLocality": "New York",
            "addressCountry": "US"
          }
        },
        "performer": [
          { "@type": "MusicGroup", "name": "Artist One" }
        ]
      }
    }
  ]
}

iCalendar

GET /api/public/lists/{slug}/ical

Returns an iCalendar (.ics) file that can be imported into any calendar application like Google Calendar, Apple Calendar, or Outlook.

Usage

  1. Open the URL in your browser to download the .ics file
  2. Open the file with your calendar app
  3. Events will be imported as all-day events on their dates

Format

BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Nuncio//Event List//EN
X-WR-CALNAME:Summer Tour 2025
BEGIN:VEVENT
UID:item-123@nuncio.app
DTSTAMP:20250114T120000Z
DTSTART;VALUE=DATE:20250815
SUMMARY:Concert Title
LOCATION:Madison Square Garden, New York
URL:https://tickets.example.com
END:VEVENT
END:VCALENDAR

RSS

GET /api/public/lists/{slug}/rss

Returns an RSS feed that can be subscribed to in any RSS reader. Get notified when new events are added to a list.

Usage

  1. Copy the RSS URL
  2. Add it to your favorite RSS reader
  3. Receive updates when the list changes

Format

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Summer Tour 2025</title>
    <link>https://nuncio.app/l/summer-tour-2025</link>
    <description>All tour dates for summer 2025</description>
    <item>
      <title>Concert Title</title>
      <link>https://nuncio.app/e/username/summer-tour-2025/msg-aug-15</link>
      <guid>https://nuncio.app/e/username/summer-tour-2025/msg-aug-15</guid>
      <pubDate>Mon, 14 Jan 2025 12:00:00 +0000</pubDate>
      <description>August 15, 2025 at Madison Square Garden</description>
    </item>
  </channel>
</rss>

Direct Downloads

For any public or unlisted list, you can access export URLs directly:

  • https://nuncio.app/api/public/lists/your-list/json
  • https://nuncio.app/api/public/lists/your-list/ical
  • https://nuncio.app/api/public/lists/your-list/rss

Private lists cannot be exported via public URLs.