Wasla
    Wasla
    • Auth
      • Register a new user
        POST
      • Login
        POST
      • Logout
        POST
    • FreelancerProfile
      • Certifications
        • Update Freelancer Certifications
        • Add Freelancer Certification
        • All freelancer Certifications
        • Delete Freelancer Certifaction
      • Educations
        • All Educations
        • Add Educations
      • Social Links
        • All Freelancer Social Links
        • Add Freelancer Social Link
        • Delete Freelancer Social Link
        • Update Freelancer Social Links
      • Proposal
        • Apply Freelancer on Project
        • Update Proposal
        • Delete Proposal
      • Show Freelancer
        GET
      • MyProfile
        GET
      • Add Skills
        POST
      • Freelancer Image
        POST
      • Update Freelancer Profile
        PUT
      • Delete Freelancer Profile
        DELETE
    • ClientProfile
      • Project
        • Post Project
        • Show Project
        • Update Project
        • Delete Project
      • Review
        • Create Review
        • Update Review
      • Show Profile
        GET
      • Update Profile
        PUT
      • Accept Proposal
        PUT
    • All Skills
      GET
    • All Projects
      GET
    • Schemas
      • Api Responce
      • User

      All Projects

      Developing
      Testing Env
      https://test.your-api-server.com
      Testing Env
      https://test.your-api-server.com
      GET
      /projects

      Request

      Query Params

      Header Params

      Responses

      🟢200OK
      application/json
      Body

      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET 'https://test.your-api-server.com/projects' \
      --header 'Accept: application/json'
      Response Response Example
      {
          "code": 200,
          "message": "Projects retrieved successfully",
          "data": {
              "data": [
                  {
                      "id": 4,
                      "title": "Project 4",
                      "description": "Another mobile project",
                      "status": "open",
                      "budget": 1200,
                      "duration": "4 weeks",
                      "deadline": "2025-10-14",
                      "completed_at": null,
                      "rating": null,
                      "experience_level": "entry",
                      "created_at_human": "4 hours ago",
                      "proposals_count": null,
                      "review_comment": null,
                      "client": {
                          "name": "Test Client",
                          "location": null,
                          "rating": null
                      },
                      "skills": []
                  }
              ],
              "links": {
                  "first": "http://backend.test/api/v1/projects?page=1",
                  "last": "http://backend.test/api/v1/projects?page=1",
                  "prev": null,
                  "next": null
              },
              "meta": {
                  "current_page": 1,
                  "per_page": 10,
                  "total": 1,
                  "last_page": 1
              }
          }
      }
      Modified at 2025-09-19 06:42:03
      Previous
      All Skills
      Next
      Api Responce
      Built with