This version is deprecated and will be removed in the future, please use v2 instead.

E-CommerceRainy Days

Rainy Days

These endpoints allow you to retrieve all products, or a single product by its id. The response will be an array of JSON objects if you request all products, or a single JSON object if you request a single product.

The Rainy Days model

PropTypeDefault
id
string
-
title
string
-
description
string
-
gender
string
-
sizes
Array<string>
-
baseColor
string
-
price
float
-
discountedPrice
float
-
onSale
boolean
-
image
string
-
tags
Array<string>
-
favorite
boolean
-

All products

GET/rainy-days

Retrieve all products.

Response
[
  {
    "id": "b8b528fc-6c60-41f6-a5a9-9a8b27a9482a",
    "title": "Rainy Days Akra Jacket",
    "description": "The Women's Rainy Days Akra jacket is bound to be your new go-to water-repellent rain jacket.",
    "gender": "Female",
    "sizes": ["XS", "S", "M", "L", "XL", "XXL"],
    "baseColor": "Red",
    "price": 129.99,
    "discountedPrice": 119.99,
    "onSale": true,
    "image": "https://static.cloud.noroff.dev/api/rainy-days/0-akra-jacket.jpg",
    "tags": ["jacket", "womens"],
    "favorite": true
  },
  {
    "id": "97e77845-a485-4301-827f-51b673d4230f",
    "title": "Rainy Days M83 Jacket",
    "description": "The Women's Rainy Days M83 jacket delivers waterproof, breathable protection from head to waist. Perfect for the adventure seekers.",
    "gender": "Female",
    "sizes": ["XS", "S", "M", "L", "XL", "XXL"],
    "baseColor": "Black",
    "price": 109.99,
    "discountedPrice": 99.99,
    "onSale": true,
    "image": "https://static.cloud.noroff.dev/api/rainy-days/1-m83-jacket.jpg",
    "tags": ["jacket", "womens"],
    "favorite": true
  }
  // ...
]

Single product

GET/rainy-days/<id>

Retrieve a single product by its id.

Response
{
  "id": "b8b528fc-6c60-41f6-a5a9-9a8b27a9482a",
  "title": "Rainy Days Akra Jacket",
  "description": "The Women's Rainy Days Akra jacket is bound to be your new go-to water-repellent rain jacket.",
  "gender": "Female",
  "sizes": ["XS", "S", "M", "L", "XL", "XXL"],
  "baseColor": "Red",
  "price": 129.99,
  "discountedPrice": 119.99,
  "onSale": true,
  "image": "https://static.cloud.noroff.dev/api/rainy-days/0-akra-jacket.jpg",
  "tags": ["jacket", "womens"],
  "favorite": true
}