Skip to content

Series Metrics

Introduction

The Series Metrics endpoint provides an overview of key statistics related to a specific series, such as the number of published titles associated with the series.

Series Metrics Object

The series metrics resource includes the following fields:

Field Type Description
products Integer The total number of published titles in the series.

Managing Series Resources

The metrics endpoint is read-only and does not accept modification requests.

Getting Series Metrics (GET)

Endpoint

GET https://api.openpublishing.com/resource/v3/seriess/<ID>/metrics

<ID> is the unique identifier of the series.

Response Structure

The response is a JSON object containing the metric resource object.

Example Request

URL:

GET https://api.openpublishing.com/resource/v3/seriess/3/metrics

Example Response

```json { "products": 3 }