List

Endpoint

This is our endpoint to list the products. Only registered users have access to view the list.
This endpoint requires authentication.

Method URI Headers
GET https://test-api.updivision.work/api/products Accept: application/json
Authorization: Bearer {token}

Response

Example response 200

[
    {
        "id": 1,
        "name": "Apple Silicone Case for iPhone",
        "description": "On the outside, the silky, soft-touch finish of the silicone exterior feels great in your hand.",
        "picture": "https://test-api.updivision.work/api/images/product-seeder/product-1.jpeg",
        "price": "29.90"
    },
    {
        "id": 2,
        "name": "Beats Solo3",
        "description": "With up to 40 hours of battery life, Beats Solo3 is your perfect everyday headphone",
        "picture": "https://test-api.updivision.work/api/images/product-seeder/product-2.jpeg",
        "price": "300.00"
    },
    {
        "id": 3,
        "name": "Car Mount Phone Holder",
        "description": " Patented Easy One Touch mechanism allows quick one hand open and close operation",
        "picture": "https://test-api.updivision.work/api/images/product-seeder/product-3.jpg",
        "price": "50.00"
    },
    {
        "id": 4,
        "name": "Air Vent Phone Holder",
        "description": "This car mount air vent holder is designed with high quality aluminium alloy without cradles and clamps",
        "picture": "https://test-api.updivision.work/api/images/product-seeder/product-4.jpg",
        "price": "10.00"
    },
    {
        "id": 5,
        "name": "iPhone 11 Screen Protector",
        "description": " The Screen Protector covers your iPhone display",
        "picture": "https://test-api.updivision.work/api/images/product-seeder/product-5.jpg",
        "price": "20.00"
    },
    {
        "id": 6,
        "name": "Apple AirPods",
        "description": "Automatically on, automatically connected. Easy setup for all your Apple devices",
        "picture": "https://test-api.updivision.work/api/images/product-seeder/product-6.jpg",
        "price": "250.00"
    }
]

Example response 401

{
    "message": "Unauthenticated."
}