Artwork by Date

The artwork by date summary REST API endpoint provides counts (and running totals) of how many artwork records were ingested, by month. Counts are also provided by collection date.

GET /api/summary/artworkbydate

Monthly counts of ingested artwork.

Example request:

GET /api/summary/artworkbydate HTTP/1.1
Host: example.com

Example response:

  HTTP/1.1 200 OK
  Content-Type: application/json

{
    "results": {
        "creation": [{
            "count": 53,
            "total": 53,
            "year": "2014",
            "month": "05"
        }],
        "collection": []
    }
}
Status Codes:

Back to API documentation index