DashboardProject Summary

Project Summary

Get the performance summary shown on the project dashboard for the given date range.

curl -X POST "https://api.5centscdn.com/v2/ad-manager/101/summary" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{
  "from": "2026-01-01",
  "to": "2026-01-31"
}'
{
  "result": "success",
  "summary": {
    "summary": {
      "ad_requests": 128430,
      "filled_requests": 112230,
      "fill_rate": 87.4,
      "impressions": 96210,
      "starts": 95800,
      "first_quartiles": 91000,
      "midpoints": 85000,
      "third_quartiles": 78000,
      "completes": 68500,
      "completion_rate": 71.2,
      "clicks": 1230,
      "ctr": 1.28,
      "spend_micros": 481050000,
      "ecpm_micros": 5000000,
      "errors": 12,
      "from": "2026-01-01T00:00:00",
      "to": "2026-01-31T00:00:00"
    }
  }
}
POST
/ad-manager/{pid}/summary
POST
Base URLstring

Target server for requests. Edit to use your own host.

API Key (header: X-API-Key)
X-API-Keystring
Required

API key (sent in header)

path
pidinteger
Required

ID of the Ad Manager project.

Content-Typestring
Required

The media type of the request body

Options: application/json
fromstring

Start of the date range (YYYY-MM-DD).

tostring

End of the date range (YYYY-MM-DD).

Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-API-Keystring
Required

API Key for authentication. Provide your API key in the header.

Path Parameters

pidinteger
Required

ID of the Ad Manager project.

Example:
101

Body

application/json
fromstring

Start of the date range (YYYY-MM-DD).

Example:
2026-01-01
tostring

End of the date range (YYYY-MM-DD).

Example:
2026-01-31

Responses

resultstring

Operation outcome.

Allowed values:successerror
summaryobject

Aggregate delivery metrics for the requested range. Shape mirrors the Reports summary object.