Vocabularies Feed

Organizing the words we use to describe API resources and capabilities — controlled vocabularies that help us get on the same page.

VocabulariesTaxonomy

Feed Endpoint

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

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

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

Response Schema

Each item in the feed has these fields:

FieldTypeDescription
name string Vocabulary name
slug string Unique slug
description string Vocabulary description
tags array Tags

Example Request

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

Usage

JavaScript / Browser

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

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

Python

import requests

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

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

Browse the full Vocabularies catalog at https://vocabularies.apievangelist.com/.