Standards Feed

Common Internet or industry standards used to consistently define API operations and keep the API factory floor well-defined and interoperable.

StandardsInteroperability

Feed Endpoint

GET https://standards.apievangelist.com/apis.json

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

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

Response Schema

Each item in the feed has these fields:

FieldTypeDescription
name string Standard name
slug string Unique slug
description string Standard description
tags array Tags
humanURL string Standard reference URL

Example Request

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

Usage

JavaScript / Browser

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

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

Python

import requests

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

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

Browse the full Standards catalog at https://standards.apievangelist.com/.