{
    "info": {
        "name": "Swolemance API (Auto-generated)",
        "description": "Full API collection for Swolemance.",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Documentation",
            "item": [
                {
                    "name": "api\/documentation (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/documentation",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "documentation"
                            ]
                        }
                    }
                }
            ]
        },
        {
            "name": "Oauth2-callback",
            "item": [
                {
                    "name": "api\/oauth2-callback (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/oauth2-callback",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "oauth2-callback"
                            ]
                        }
                    }
                }
            ]
        },
        {
            "name": "Auth",
            "item": [
                {
                    "name": "api\/auth\/register (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/auth\/register",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "auth",
                                "register"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"John Doe\",\n    \"email\": \"user@example.com\",\n    \"password\": \"password123\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/auth\/login (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/auth\/login",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "auth",
                                "login"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"user@example.com\",\n    \"password\": \"password123\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/auth\/logout (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/auth\/logout",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "auth",
                                "logout"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/auth\/me (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/auth\/me",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "auth",
                                "me"
                            ]
                        }
                    }
                }
            ]
        },
        {
            "name": "Billing",
            "item": [
                {
                    "name": "api\/billing\/entitlement (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/billing\/entitlement",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "billing",
                                "entitlement"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/billing\/checkout-session (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/billing\/checkout-session",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "billing",
                                "checkout-session"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"price_id\": \"price_1Nx...\",\n    \"platform\": \"web\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/billing\/customer-portal (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/billing\/customer-portal",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "billing",
                                "customer-portal"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"return_url\": \"https:\\\/\\\/example.com\\\/account\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                }
            ]
        },
        {
            "name": "Workouts",
            "item": [
                {
                    "name": "api\/workouts\/categories (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/workouts\/categories",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "workouts",
                                "categories"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/workouts\/categories (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/workouts\/categories",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "workouts",
                                "categories"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Upper Body\",\n    \"description\": \"Chest, Back, Arms\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/workouts\/exercises (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/workouts\/exercises",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "workouts",
                                "exercises"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/workouts\/exercises (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/workouts\/exercises",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "workouts",
                                "exercises"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Squat\",\n    \"category_id\": 1,\n    \"description\": \"Barbell back squat\",\n    \"muscle_groups\": [\n        \"legs\",\n        \"glutes\"\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/workouts\/templates (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/workouts\/templates",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "workouts",
                                "templates"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Push Day\",\n    \"exercises\": [\n        {\n            \"exercise_id\": 1,\n            \"sets\": 3,\n            \"reps\": 10\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/workouts\/templates (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/workouts\/templates",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "workouts",
                                "templates"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/workouts\/logs (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/workouts\/logs",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "workouts",
                                "logs"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"template_id\": 1,\n    \"start_time\": \"2026-06-18 10:00:00\",\n    \"end_time\": \"2026-06-18 11:15:00\",\n    \"exercises\": [\n        {\n            \"exercise_id\": 1,\n            \"sets\": [\n                {\n                    \"reps\": 10,\n                    \"weight\": 225\n                }\n            ]\n        }\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/workouts\/logs (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/workouts\/logs",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "workouts",
                                "logs"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/workouts\/stats (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/workouts\/stats",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "workouts",
                                "stats"
                            ]
                        }
                    }
                }
            ]
        },
        {
            "name": "Fasting",
            "item": [
                {
                    "name": "api\/fasting\/start (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/fasting\/start",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "fasting",
                                "start"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"preset_id\": 1,\n    \"target_hours\": 16\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/fasting\/stop (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/fasting\/stop",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "fasting",
                                "stop"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"end_time\": \"2026-06-18 20:00:00\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/fasting\/windows (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/fasting\/windows",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "fasting",
                                "windows"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/fasting\/current (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/fasting\/current",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "fasting",
                                "current"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/fasting\/presets (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/fasting\/presets",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "fasting",
                                "presets"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/fasting\/presets (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/fasting\/presets",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "fasting",
                                "presets"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"16:8\",\n    \"fasting_hours\": 16,\n    \"eating_hours\": 8\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/fasting\/{fastId}\/feels (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/fasting\/{fastId}\/feels",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "fasting",
                                "{fastId}",
                                "feels"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/fasting\/{fastId}\/feels (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/fasting\/{fastId}\/feels",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "fasting",
                                "{fastId}",
                                "feels"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/fasting\/{fastId}\/logs (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/fasting\/{fastId}\/logs",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "fasting",
                                "{fastId}",
                                "logs"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/fasting\/{fastId}\/logs (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/fasting\/{fastId}\/logs",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "fasting",
                                "{fastId}",
                                "logs"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/fasting\/{fastId}\/food-logs (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/fasting\/{fastId}\/food-logs",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "fasting",
                                "{fastId}",
                                "food-logs"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/fasting\/{fastId}\/food-logs (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/fasting\/{fastId}\/food-logs",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "fasting",
                                "{fastId}",
                                "food-logs"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/fasting\/stats (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/fasting\/stats",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "fasting",
                                "stats"
                            ]
                        }
                    }
                }
            ]
        },
        {
            "name": "Nutrition",
            "item": [
                {
                    "name": "api\/nutrition\/meals (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/nutrition\/meals",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "nutrition",
                                "meals"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Lunch\",\n    \"calories\": 650,\n    \"protein\": 50,\n    \"carbs\": 60,\n    \"fat\": 20\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/nutrition\/meals (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/nutrition\/meals",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "nutrition",
                                "meals"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/nutrition\/summary\/daily (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/nutrition\/summary\/daily",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "nutrition",
                                "summary",
                                "daily"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/nutrition\/summary\/weekly (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/nutrition\/summary\/weekly",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "nutrition",
                                "summary",
                                "weekly"
                            ]
                        }
                    }
                }
            ]
        },
        {
            "name": "Profile",
            "item": [
                {
                    "name": "api\/profile (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/profile",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "profile"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/profile (NEW)",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/profile",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "profile"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"gender\": \"male\",\n    \"date_of_birth\": \"1995-05-10\",\n    \"height_cm\": 180,\n    \"weight_kg\": 80,\n    \"goal\": \"muscle_gain\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                }
            ]
        },
        {
            "name": "Notifications",
            "item": [
                {
                    "name": "api\/notifications (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/notifications",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "notifications"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/notifications\/unread (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/notifications\/unread",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "notifications",
                                "unread"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/notifications\/{id}\/read (NEW)",
                    "request": {
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/notifications\/{id}\/read",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "notifications",
                                "{id}",
                                "read"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/notifications\/mark-all-read (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/notifications\/mark-all-read",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "notifications",
                                "mark-all-read"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/notifications\/{id} (NEW)",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/notifications\/{id}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "notifications",
                                "{id}"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/notifications\/token (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/notifications\/token",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "notifications",
                                "token"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"token\": \"ExponentPushToken[xxxxxxxxxxxxxxxxxxxxxx]\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/notifications\/token (NEW)",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/notifications\/token",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "notifications",
                                "token"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/notifications\/test (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/notifications\/test",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "notifications",
                                "test"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                }
            ]
        },
        {
            "name": "User",
            "item": [
                {
                    "name": "api\/user\/match-mode (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/user\/match-mode",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "user",
                                "match-mode"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/user\/match-mode (NEW)",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/user\/match-mode",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "user",
                                "match-mode"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"match_mode\": \"swolemance\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                }
            ]
        },
        {
            "name": "Weights",
            "item": [
                {
                    "name": "api\/weights\/logs (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/weights\/logs",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "weights",
                                "logs"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/weights\/logs (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/weights\/logs",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "weights",
                                "logs"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"weight\": 81.5,\n    \"date\": \"2026-06-18\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                }
            ]
        },
        {
            "name": "Social",
            "item": [
                {
                    "name": "api\/social\/friends\/request (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/social\/friends\/request",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "social",
                                "friends",
                                "request"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 42\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/social\/friends\/accept (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/social\/friends\/accept",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "social",
                                "friends",
                                "accept"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 42\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/social\/friends (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/social\/friends",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "social",
                                "friends"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/social\/friends\/pending (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/social\/friends\/pending",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "social",
                                "friends",
                                "pending"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/social\/friends (NEW)",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/social\/friends",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "social",
                                "friends"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/social\/users (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/social\/users",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "social",
                                "users"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/social\/friends\/decline (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/social\/friends\/decline",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "social",
                                "friends",
                                "decline"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/social\/friends\/cancel (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/social\/friends\/cancel",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "social",
                                "friends",
                                "cancel"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/social\/feed (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/social\/feed",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "social",
                                "feed"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/social\/feed (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/social\/feed",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "social",
                                "feed"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"content\": \"Just crushed a leg day!\",\n    \"image_url\": \"https:\\\/\\\/example.com\\\/img.jpg\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/social\/feed\/{feedItem} (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/social\/feed\/{feedItem}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "social",
                                "feed",
                                "{feedItem}"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/social\/feed\/{feedItem} (NEW)",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/social\/feed\/{feedItem}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "social",
                                "feed",
                                "{feedItem}"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/social\/feed\/{feedItem}\/comment (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/social\/feed\/{feedItem}\/comment",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "social",
                                "feed",
                                "{feedItem}",
                                "comment"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"content\": \"Just crushed a leg day!\",\n    \"image_url\": \"https:\\\/\\\/example.com\\\/img.jpg\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/social\/feed\/{feedItem}\/like (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/social\/feed\/{feedItem}\/like",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "social",
                                "feed",
                                "{feedItem}",
                                "like"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"content\": \"Just crushed a leg day!\",\n    \"image_url\": \"https:\\\/\\\/example.com\\\/img.jpg\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                }
            ]
        },
        {
            "name": "Criteria",
            "item": [
                {
                    "name": "api\/criteria\/fitness (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/criteria\/fitness",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "criteria",
                                "fitness"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/criteria\/fitness (NEW)",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/criteria\/fitness",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "criteria",
                                "fitness"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"experience_level\": \"intermediate\",\n    \"preferred_workouts\": [\n        \"powerlifting\"\n    ]\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/criteria\/romance (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/criteria\/romance",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "criteria",
                                "romance"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/criteria\/romance (NEW)",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/criteria\/romance",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "criteria",
                                "romance"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"looking_for\": \"long_term\",\n    \"max_distance_miles\": 50\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                }
            ]
        },
        {
            "name": "Subscription-status",
            "item": [
                {
                    "name": "api\/subscription-status (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/subscription-status",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "subscription-status"
                            ]
                        }
                    }
                }
            ]
        },
        {
            "name": "Promo-code",
            "item": [
                {
                    "name": "api\/promo-code\/validate (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/promo-code\/validate",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "promo-code",
                                "validate"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"code\": \"TRAINER10\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                }
            ]
        },
        {
            "name": "Admin Dashboard",
            "item": [
                {
                    "name": "api\/admin\/promo-codes (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/promo-codes",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "promo-codes"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/admin\/promo-codes (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/promo-codes",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "promo-codes"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"code\": \"WINTER2026\",\n    \"discount_percentage\": 20,\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/admin\/promo-codes\/{promoCode} (NEW)",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/promo-codes\/{promoCode}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "promo-codes",
                                "{promoCode}"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"code\": \"WINTER2026\",\n    \"discount_percentage\": 20,\n    \"is_active\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/admin\/promo-codes\/{promoCode} (NEW)",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/promo-codes\/{promoCode}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "promo-codes",
                                "{promoCode}"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/admin\/exercises (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/exercises",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "exercises"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/admin\/exercises (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/exercises",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "exercises"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Deadlift\",\n    \"category_id\": 2\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/admin\/exercises\/{exercise} (NEW)",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/exercises\/{exercise}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "exercises",
                                "{exercise}"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Deadlift\",\n    \"category_id\": 2\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/admin\/exercises\/{exercise} (NEW)",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/exercises\/{exercise}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "exercises",
                                "{exercise}"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/admin\/dashboard\/summary (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/dashboard\/summary",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "dashboard",
                                "summary"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/admin\/dashboard\/trainers (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/dashboard\/trainers",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "dashboard",
                                "trainers"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/admin\/dashboard\/trainers\/{id} (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/dashboard\/trainers\/{id}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "dashboard",
                                "trainers",
                                "{id}"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/admin\/dashboard\/promo-stats (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/dashboard\/promo-stats",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "dashboard",
                                "promo-stats"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/admin\/dashboard\/subscribers (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/dashboard\/subscribers",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "dashboard",
                                "subscribers"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/admin\/dashboard\/subscribers\/{id} (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/dashboard\/subscribers\/{id}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "dashboard",
                                "subscribers",
                                "{id}"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/admin\/dashboard\/alerts (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/dashboard\/alerts",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "dashboard",
                                "alerts"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/admin\/dashboard\/export (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/dashboard\/export",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "dashboard",
                                "export"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/admin\/workout-categories (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/workout-categories",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "workout-categories"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/admin\/workout-categories (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/workout-categories",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "workout-categories"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Legs\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/admin\/workout-categories\/{category} (NEW)",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/workout-categories\/{category}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "workout-categories",
                                "{category}"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Legs\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/admin\/workout-categories\/{category} (NEW)",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/admin\/workout-categories\/{category}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "admin",
                                "workout-categories",
                                "{category}"
                            ]
                        }
                    }
                }
            ]
        },
        {
            "name": "Trainer Dashboard",
            "item": [
                {
                    "name": "api\/trainer\/dashboard\/summary (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/trainer\/dashboard\/summary",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "trainer",
                                "dashboard",
                                "summary"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/trainer\/dashboard\/subscribers (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/trainer\/dashboard\/subscribers",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "trainer",
                                "dashboard",
                                "subscribers"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/trainer\/dashboard\/subscribers\/{id} (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/trainer\/dashboard\/subscribers\/{id}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "trainer",
                                "dashboard",
                                "subscribers",
                                "{id}"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/trainer\/dashboard\/alerts (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/trainer\/dashboard\/alerts",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "trainer",
                                "dashboard",
                                "alerts"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/trainer\/dashboard\/alerts\/{alert}\/read (NEW)",
                    "request": {
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/trainer\/dashboard\/alerts\/{alert}\/read",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "trainer",
                                "dashboard",
                                "alerts",
                                "{alert}",
                                "read"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"read\": true\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                },
                {
                    "name": "api\/trainer\/dashboard\/export (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/trainer\/dashboard\/export",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "trainer",
                                "dashboard",
                                "export"
                            ]
                        }
                    }
                }
            ]
        },
        {
            "name": "Internal",
            "item": [
                {
                    "name": "api\/internal\/notifications\/send-user (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/internal\/notifications\/send-user",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "internal",
                                "notifications",
                                "send-user"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                }
            ]
        },
        {
            "name": "Fatsecret",
            "item": [
                {
                    "name": "api\/fatsecret\/barcode\/{barcode} (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/fatsecret\/barcode\/{barcode}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "fatsecret",
                                "barcode",
                                "{barcode}"
                            ]
                        }
                    }
                },
                {
                    "name": "api\/fatsecret\/food\/{foodId} (NEW)",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/fatsecret\/food\/{foodId}",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "fatsecret",
                                "food",
                                "{foodId}"
                            ]
                        }
                    }
                }
            ]
        },
        {
            "name": "Webhooks",
            "item": [
                {
                    "name": "api\/webhooks\/revenuecat (NEW)",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Authorization",
                                "value": "Bearer {{token}}",
                                "type": "text"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{base_url}}\/api\/webhooks\/revenuecat",
                            "host": [
                                "{{base_url}}"
                            ],
                            "path": [
                                "api",
                                "webhooks",
                                "revenuecat"
                            ]
                        },
                        "body": {
                            "mode": "raw",
                            "raw": "{}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        }
                    }
                }
            ]
        }
    ],
    "variable": [
        {
            "key": "base_url",
            "value": "http:\/\/127.0.0.1:8000"
        },
        {
            "key": "token",
            "value": "your_token_here"
        }
    ]
}