Videos Feed
Video content covering API topics, interviews, and walkthroughs of API concepts and technologies.
VideosMediaFeed Endpoint
GET
https://videos.apievangelist.com/videos.json
No authentication required. Returns a JSON array. CORS headers are set on all feeds.
Source repository: https://github.com/api-evangelist/videos
Response Schema
Each item in the feed has these fields:
| Field | Type | Description |
|---|---|---|
title |
string | Video title |
slug |
string | Unique slug |
description |
string | Description |
url |
string | Video URL |
tags |
array | Tags |
Example Request
curl -s https://videos.apievangelist.com/videos.json | head -c 500
Usage
JavaScript / Browser
const response = await fetch('https://videos.apievangelist.com/videos.json');
const items = await response.json();
items.forEach(item => {
console.log(item.name, item.slug);
});
Python
import requests
response = requests.get('https://videos.apievangelist.com/videos.json')
items = response.json()
for item in items:
print(item.get('name'), item.get('slug'))
Browse the full Videos catalog at https://video.apievangelist.com/.