Skip Navigation

Opencollection API

Responses

Successful requests will return JSON objects. The structure of the returned JSON will depend on the endpoint called.

Example: fetch highlighted objects from the European Collection

      {
       [
        {
          id: ..,
          title: ..,
          accession_number: ...,
          primary_image: ...
        },
        {
          id: ..,
          title: ..,
          accession_number: ...,
          primary_image: ...
        },
        ...
       ]
      }
    

Reference:

Example: fetch a list of 10 exhibitions that opened in the 1990s

      {
       [
        {
          id: ...,
          title: ...,
          start_date: ...,
          end_date: ...,
          organizing_department: ...,
          primary_image: ...,
          primary_image_id: ...,
          status: ...,
          location: ...,
          location_id: ...
        },
        {
          id: ...,
          title: ...,
          start_date: ...,
          end_date: ...,
          organizing_department: ...,
          primary_image: ...,
          primary_image_id: ...,
          status: ...,
          location: ...,
          location_id: ...
        },
        ...
       ]
      }
    

Reference: