Analytics

Shop performance targets

The performance targets the shop is measured against — the goal values behind the dashboard's progress bars. Each target carries its granularity (weekly / monthly / quarterly), the period it applies from (created_at), and a targets object with the per-metric goals: target_collabs, creators_messaged, sample_requests, sample_approved, videos_posted, videos_converted, spark_codes.

Omit granularity to get the latest target for each granularity the shop has set; pass one to get that granularity's history, newest first. An empty targets array means the shop has not set any.

Read-only — targets are created and edited in the Reacher dashboard. Single-shop only.

get/targets

Query parameters

granularitystring nullable

Restrict to one granularity: weekly, monthly, quarterly. Omit for the latest of each.

Restrict to one granularity: weekly, monthly, quarterly. Omit for the latest of each.

Response

Successful Response

total_countinteger required

Total number of targets

Example response

{
  "targets": [
    {
      "created_at": "2024-01-01T00:00:00Z",
      "creators_messaged": 200,
      "customer_id": 1,
      "granularity": "monthly",
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "sample_approved": 80,
      "sample_requests": 100,
      "shop_id": 123,
      "spark_codes": 10,
      "target_collabs": 50,
      "updated_at": "2024-01-01T00:00:00Z",
      "videos_converted": 25
    }
  ],
  "total_count": 1
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.