Strategies Feed
High-level approaches to shifting the direction of API operations — aligning policies and experiences across the platform.
StrategiesAPI StrategyFeed Endpoint
GET
https://strategies.apievangelist.com/strategies.json
No authentication required. Returns a JSON array. CORS headers are set on all feeds.
Source repository: https://github.com/api-evangelist/strategies
Response Schema
Each item in the feed has these fields:
| Field | Type | Description |
|---|---|---|
name |
string | Strategy name |
slug |
string | Unique slug |
description |
string | Strategy description |
tags |
array | Tags |
Example Request
curl -s https://strategies.apievangelist.com/strategies.json | head -c 500
Usage
JavaScript / Browser
const response = await fetch('https://strategies.apievangelist.com/strategies.json');
const items = await response.json();
items.forEach(item => {
console.log(item.name, item.slug);
});
Python
import requests
response = requests.get('https://strategies.apievangelist.com/strategies.json')
items = response.json()
for item in items:
print(item.get('name'), item.get('slug'))
Browse the full Strategies catalog at https://strategies.apievangelist.com/.