DDEV Sponsorship API

This API provides current sponsorship data for the DDEV project.

Endpoints

GET /data/all-sponsorships.json (original path)
GET /api/all-sponsorships.json (new path)

Direct Links

Preferred link (ddev.com)

Original path (backward compatible)

New API path

Usage

// Preferred: use the ddev.com short URL
fetch('https://ddev.com/s/sponsorship-data.json')
  .then(response => response.json())
  .then(data => console.log(data));

// Existing consumers - no changes needed.
fetch('https://ddev.github.io/sponsorship-data/data/all-sponsorships.json')
  .then(response => response.json())
  .then(data => console.log(data));

Repository

Source code and documentation