Experiences Feed

The real-world human experience across teams producing APIs and the consumers who are applying and integrating them as part of business.

ExperiencesDeveloper Experience

Feed Endpoint

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

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

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

Response Schema

Each item in the feed has these fields:

FieldTypeDescription
name string Experience name
slug string Unique slug
description string Description
tags array Tags

Example Request

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

Usage

JavaScript / Browser

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

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

Python

import requests

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

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

Browse the full Experiences catalog at https://experiences.apievangelist.com/.