Ingestion Summary

The ingestion summary REST API endpoint lists how many of each type of AIP were ingested.

GET /api/summary/ingestion

Statistics about ingestions.

Example request:

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

Example response:

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

{
    "results": [{
        "total": 53,
        "type": "Artwork"
    }, {
        "total": 17,
        "type": "Supporting technology"
    }]
}
Status Codes:

Back to API documentation index