API Evangelist JSON Feeds

Every site in the API Evangelist network publishes its collection as a static JSON feed. No authentication, no rate limits, CORS-enabled, served straight from GitHub Pages via Cloudflare.

APIs

Individual API resources tracked across the API Evangelist network, drawn from many providers and business sectors an...

APIsDiscovery
Posts

Over 4,000 stories on the API Evangelist blog since 2010 — the technology, business, and politics of how APIs are cha...

PostsStoriesBlog
Conversations

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

ConversationsInterviews
Contracts

The business and technical details of API resources offered from across different entities operating in almost every ...

ContractsAPIs.json
Experiences

The real-world human experience across teams producing APIs and the consumers who are applying and integrating them a...

ExperiencesDeveloper Experience
Guidance

Modular guidance for teams producing and consuming APIs — snackable real-time guidance for keeping API operations mov...

GuidanceBest Practices
Partners

Information about API Evangelist partners and collaboration opportunities supporting API operations.

PartnersNetwork
Policies

The business reasons behind why we govern API operations — aligning the engineering side of operations with the busin...

PoliciesGovernance
Properties

Individual properties of API operations that can be linked to strategy, experience, and policies — and then governed ...

PropertiesGovernance
Rules

Technical details of API operations that can be automated and enforced, used to align policies with strategy to deliv...

RulesSpectralGovernance
Schema

The naming and structure of the digital objects we pass back and forth via APIs within the business and personal appl...

SchemaJSON SchemaData Models
Standards

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

StandardsInteroperability
Strategies

High-level approaches to shifting the direction of API operations — aligning policies and experiences across the plat...

StrategiesAPI Strategy
Utilities

Utility APIs for managing API Evangelist operations — a catch-all collection of internal tools used to manage the pla...

UtilitiesTooling
Videos

Video content covering API topics, interviews, and walkthroughs of API concepts and technologies.

VideosMedia
Vocabularies

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

VocabulariesTaxonomy
Spotlight Rules

Standalone spotlight on API governance rules — guardrails for API operations delivered as a curated ruleset alongside...

RulesSpotlightGovernance

Using the Feeds

Fetch and display

const res = await fetch('https://policies.apievangelist.com/policies.json');
const policies = await res.json();

policies.forEach(p => {
  console.log(p.name, p.scope, p.tags);
});

Python

import requests

res = requests.get('https://rules.apievangelist.com/rules.json')
rules = res.json()

for r in rules:
    print(r.get('name'), r.get('severity'))

APIs.json discovery

The portal publishes an apis.json following the APIs.json specification — a machine-readable catalog listing every feed in this portal along with its repository, OpenAPI (where available), and metadata. Agentic clients can fetch the apis.json file once and discover every feed and its documentation URL from a single entry point.