API

List company opening hours

Lists opening hours of a company.

GET/v1/marketplace/companies/{company_id}/opening_hours

Path Parameters

company_id*string
Example"dwawd8awudawd"

Query Parameters

filter?

Filtering

Date range must be less than a year.

select?array<string>
expand?array<string>

Response Body

application/json

curl -X GET "https://api.noona.is/v1/marketplace/companies/dwawd8awudawd/opening_hours"
{
  "2020-08-24": [
    {
      "starts_at": "11:00",
      "ends_at": "13:00"
    },
    {
      "starts_at": "18:00",
      "ends_at": "21:00"
    }
  ]
}