---
title: "Get Post Performance Metrics"
method: GET
path: "/blogs/analytics/posts"
tags: ["Analytics"]
---

# Get Post Performance Metrics

`GET /blogs/analytics/posts`

Get per-post performance metrics including visits, clicks, organic traffic, and conversion rate.

## Query parameters

- `start_date` string, date
- `end_date` string, date
- `sort` 'visits' | 'clicks' | 'organic' | 'cvr'
- `order` 'asc' | 'desc'
- `limit` integer
- `include` 'title'

## Response `200`

Post metrics retrieved successfully

- PostMetricsResponse
  - `data` PostMetricRow[] — Per-post traffic metric rows for the requested date range.
    - `post_id` integer — Post ID
    - `visits` integer — Total visits
    - `clicks` integer — Total clicks
    - `organic` integer — Organic search visits
    - `cvr` number, float — Conversion rate
    - `title` string, nullable — Post title (included when include=title)
  - `meta` DateRangeMeta
    - `start_date` string, date — Start date of the data range
    - `end_date` string, date — End date of the data range
    - `total` integer — Total number of results

## Other responses

- `401` — Authentication failed
- `403` — Insufficient permissions
- `500` — 서버 내부 오류

---

[API](https://skmtc.dev/inblog/apis/inblog-api.md) · [All operations](https://skmtc.dev/inblog/apis/inblog-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/inblog/inblog-api/revisions/445daf773d30/schema)
