Make your first Particle Pro API call
Authorization
curl https://api.particle.pro/v1/podcasts \ -H "Authorization: Bearer YOUR_API_KEY"
curl https://api.particle.pro/v1/podcasts?limit=5 \ -H "Authorization: Bearer YOUR_API_KEY"
{ "data": [ { "id": "abc123", "title": "Market Pulse Daily", "description": "Daily financial market coverage", "url": "https://example.com/podcast", "language": "en" } ], "has_more": true }
curl https://api.particle.pro/v1/podcasts/abc123 \ -H "Authorization: Bearer YOUR_API_KEY"