LaundryAPI
  1. Banners
LaundryAPI
  • Authentication
    • Signup
      POST
    • Resend Verification Code
      POST
    • Verify phone number
      POST
    • Login
      POST
    • Refresh Token
      GET
    • Forgot Password
      POST
    • Reset Password
      PATCH
    • Update Password
      PATCH
    • Logout
      POST
  • Users
    • Get Me
      GET
    • Update Me
      PATCH
    • Delete Me
      DELETE
    • Get All Users
      GET
    • Update User
      PATCH
    • Delete User
      DELETE
    • Create Delivery
      POST
    • Create Admin
      POST
  • Items
    • Get all items
      GET
    • Get Single item
      GET
    • Create item
      POST
    • Update item
      PATCH
    • Delete item
      DELETE
  • Orders
    • Get all orders
      GET
    • Single Order
      GET
    • Create Order
      POST
    • Delete order
      DELETE
    • Update Order
      PATCH
  • Branches
    • All Branches
    • Single Branch
    • branch's orders
    • Nearest Branches
    • Create Branch
    • update branch
    • Delete branch
  • Notifications
    • All Notifications
    • Create notification
    • Delete Notification
  • Banners
    • All Banners
      GET
    • Create Banner
      POST
    • Delete Banners
      DELETE
  • WhatsApp
    • initialize whatsapp Session
  1. Banners

All Banners

GET
http://82.180.154.188:4352/banners
Last modified:2025-04-13 20:50:06
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://82.180.154.188:4352/banners'
Response Response Example
{
    "status": "success",
    "results": 4,
    "data": {
        "banners": [
            {
                "_id": "67fc2469b25179a466d71718",
                "imageUrl": "/uploads/banners/image-1744577641616-861688328-28fcf102-f0d9-442f-83e6-20bd0eb6cb56.jpeg.avif",
                "createdAt": "2025-04-13T20:54:01.624Z",
                "__v": 0
            },
            {
                "_id": "67fc24df68396716d8ab2451",
                "imageUrl": "/uploads/banners/image-1744577759873-48282409-28fcf102-f0d9-442f-83e6-20bd0eb6cb56.jpeg.avif",
                "createdAt": "2025-04-13T20:55:59.877Z",
                "__v": 0
            },
            {
                "_id": "6837a3d8411d7803a9883867",
                "imageUrl": "http://localhost:4352/uploads/banners/image-1748476888717-734387916-IMG_20231001_204659_515.jpg",
                "offer": "offer text",
                "createdAt": "2025-05-29T00:01:28.728Z",
                "__v": 0
            },
            {
                "_id": "6837a585528c94b4b837061a",
                "offer": "offer text",
                "createdAt": "2025-05-29T00:08:37.944Z",
                "__v": 0
            }
        ]
    }
}

Request

None

Responses

🟢200Success
application/json
Body
status
string 
required
results
integer 
required
data
object 
required
banners
array [object {4}] 
required
Previous
Delete Notification
Next
Create Banner
Built with