Conversations Feed

Regular conversations with API producers, consumers, and service providers about how they see APIs and what their biggest challenges are.

ConversationsInterviews

Feed Endpoint

GET https://conversations.apievangelist.com/conversations.json

No authentication required. Returns a JSON array. CORS headers are set on all feeds.

Source repository: https://github.com/api-evangelist/conversations

Response Schema

Each item in the feed has these fields:

FieldTypeDescription
name string Conversation name
slug string Unique slug
description string What the conversation covers
tags array Tags

Example Request

curl -s https://conversations.apievangelist.com/conversations.json | head -c 500

Usage

JavaScript / Browser

const response = await fetch('https://conversations.apievangelist.com/conversations.json');
const items = await response.json();

items.forEach(item => {
  console.log(item.name, item.slug);
});

Python

import requests

response = requests.get('https://conversations.apievangelist.com/conversations.json')
items = response.json()

for item in items:
    print(item.get('name'), item.get('slug'))

Browse the full Conversations catalog at https://conversations.apievangelist.com/.