# Static Feeds

Every collection in the API Evangelist network is published as a **static, zero-auth JSON feed** —
the no-key alternative to the [Network API](/api). No signup, no rate limits, CORS-enabled, served
straight from static hosting. Pick a feed, fetch the JSON, parse it, integrate it.

The [Network API](/api) and [MCP server](../mcp-server) are listed first — they serve the same
research as one queryable surface when a static file isn't enough.

| Name | Kind | What it is | URL |
| --- | --- | --- | --- |
| [Network API](./api) | API | REST API over the whole network — unified search, 5,100+ posts, 77 areas, 2,400+ building blocks, conversations, papers, services, vocabulary, and newsletters from a single base URL. Keyless free tier; x-api-key raises limits. | [https://api.apievangelist.com/v1](https://api.apievangelist.com/v1) |
| [MCP Server](./mcp) | MCP | Model Context Protocol server over the same network — concierge tools (get_overview, guide_topic) plus find/get tools for every resource type, served over Streamable HTTP for AI agents. | [https://mcp.apievangelist.com/mcp](https://mcp.apievangelist.com/mcp) |
| [APIs](./apis) | Feed | Individual API resources tracked across the API Evangelist network, drawn from many providers and business sectors and accompanied by OpenAPI reviews. | [https://apis.apievangelist.com/apis.json](https://apis.apievangelist.com/apis.json) |
| [Posts](./posts) | Feed | Over 4,000 stories on the API Evangelist blog since 2010 — the technology, business, and politics of how APIs are changing the way we live and work. | [https://posts.apievangelist.com/posts.json](https://posts.apievangelist.com/posts.json) |
| [Conversations](./conversations) | Feed | Regular conversations with API producers, consumers, and service providers about how they see APIs and what their biggest challenges are. | [https://conversations.apievangelist.com/conversations.json](https://conversations.apievangelist.com/conversations.json) |
| [Companies](./companies) | Feed | An alphabetical listing of every company tracked across the API Evangelist network, operating in almost every business sector. | [https://providers.apievangelist.com/apis.json](https://providers.apievangelist.com/apis.json) |
| [Experiences](./experiences) | Feed | The real-world human experience across teams producing APIs and the consumers who are applying and integrating them as part of business. | [https://experiences.apievangelist.com/experiences.json](https://experiences.apievangelist.com/experiences.json) |
| [Guidance](./guidance) | Feed | Modular guidance for teams producing and consuming APIs — snackable real-time guidance for keeping API operations moving forward. | [https://guidance.apievangelist.com/guidance.json](https://guidance.apievangelist.com/guidance.json) |
| [Partners](./partners) | Feed | Information about API Evangelist partners and collaboration opportunities supporting API operations. | [https://partners.apievangelist.com/apis.json](https://partners.apievangelist.com/apis.json) |
| [Policies](./policies) | Feed | The business reasons behind why we govern API operations — aligning the engineering side of operations with the business side of things. | [https://policies.apievangelist.com/policies.json](https://policies.apievangelist.com/policies.json) |
| [Properties](./properties) | Feed | Individual properties of API operations that can be linked to strategy, experience, and policies — and then governed to standardize how things work. | [https://properties.apievangelist.com/properties.json](https://properties.apievangelist.com/properties.json) |
| [Rules](./rules) | Feed | Technical details of API operations that can be automated and enforced, used to align policies with strategy to deliver the desired experience. | [https://rules.apievangelist.com/rules.json](https://rules.apievangelist.com/rules.json) |
| [Schema](./schema) | Feed | The naming and structure of the digital objects we pass back and forth via APIs within the business and personal applications we use. | [https://schema.apievangelist.com/apis.json](https://schema.apievangelist.com/apis.json) |
| [Standards](./standards) | Feed | Common Internet or industry standards used to consistently define API operations and keep the API factory floor well-defined and interoperable. | [https://standards.apievangelist.com/apis.json](https://standards.apievangelist.com/apis.json) |
| [Strategies](./strategies) | Feed | High-level approaches to shifting the direction of API operations — aligning policies and experiences across the platform. | [https://strategies.apievangelist.com/strategies.json](https://strategies.apievangelist.com/strategies.json) |
| [Utilities](./utilities) | Feed | Utility APIs for managing API Evangelist operations — a catch-all collection of internal tools used to manage the platform. | [https://utilities.apievangelist.com/apis.json](https://utilities.apievangelist.com/apis.json) |
| [Videos](./videos) | Feed | Video content covering API topics, interviews, and walkthroughs of API concepts and technologies. | [https://videos.apievangelist.com/videos.json](https://videos.apievangelist.com/videos.json) |
| [Vocabularies](./vocabularies) | Feed | Organizing the words we use to describe API resources and capabilities — controlled vocabularies that help us get on the same page. | [https://vocabularies.apievangelist.com/vocabularies.json](https://vocabularies.apievangelist.com/vocabularies.json) |
| [Spotlight Rules](./spotlight-rules) | Feed | Standalone spotlight on API governance rules — guardrails for API operations delivered as a curated ruleset alongside the rules collection. | [https://spotlight-rules.com/rules.json](https://spotlight-rules.com/rules.json) |

## Using the feeds

```javascript
const res = await fetch("https://policies.apievangelist.com/policies.json");
const policies = await res.json();
policies.forEach((p) => console.log(p.name, p.tags));
```

A machine-readable catalog of every entry above is published as an
[RFC 9727 API catalog](https://developer.apievangelist.com/.well-known/api-catalog) at
`/.well-known/api-catalog`, and via the API itself at
[`/v1/feeds`](https://api.apievangelist.com/v1/feeds).
