Manage websites programmatically via the API.
/api/v1/websitescurl -X GET "https://api.redirectflow.io/v1/websites" \
-H "Authorization: Bearer YOUR_API_KEY"/api/v1/websites/:idcurl -X GET "https://api.redirectflow.io/v1/websites/abc123" \
-H "Authorization: Bearer YOUR_API_KEY"/api/v1/websitescurl -X POST "https://api.redirectflow.io/v1/websites" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "My Website",
"production_domain": "example.com",
"target_domain": "example.com"
}'