# netlify > Manage Netlify sites, deploys, and functions via API. Deploy and configure web projects. - Author: Klawd - Repository: AskLeeHQ/skills - Version: 20260130232858 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/AskLeeHQ/skills - Web: https://mule.run/skillshub/@@AskLeeHQ/skills~netlify:20260130232858 --- --- name: netlify description: Manage Netlify sites, deploys, and functions via API. Deploy and configure web projects. metadata: {"clawdbot":{"emoji":"🔷","requires":{"env":["NETLIFY_AUTH_TOKEN"]}}} --- # Netlify Web deployment platform. ## Environment ```bash export NETLIFY_AUTH_TOKEN="xxxxxxxxxx" ``` ## CLI Commands ```bash netlify sites:list netlify deploy --prod netlify env:list netlify functions:list ``` ## API - List Sites ```bash curl "https://api.netlify.com/api/v1/sites" -H "Authorization: Bearer $NETLIFY_AUTH_TOKEN" ``` ## API - Trigger Deploy ```bash curl -X POST "https://api.netlify.com/api/v1/sites/{site_id}/builds" \ -H "Authorization: Bearer $NETLIFY_AUTH_TOKEN" ``` ## API - List Deploys ```bash curl "https://api.netlify.com/api/v1/sites/{site_id}/deploys" \ -H "Authorization: Bearer $NETLIFY_AUTH_TOKEN" ``` ## Links - Dashboard: https://app.netlify.com - Docs: https://docs.netlify.com/api/get-started/