> ## Documentation Index
> Fetch the complete documentation index at: https://docs.series.hr/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Credit Details

> Get detailed credit information including tracked users

Get detailed breakdown of credit usage by place and tracked users.

## Request

```bash theme={null}
curl -X GET https://api.series.hr/activity-credits/details/workspace_12345 \
  -H "apikey: YOUR_API_KEY"
```

## Parameters

<ParamField path="workspaceId" type="string" required>
  The workspace ID
</ParamField>

## Response

<ResponseField status={200} name="200">
  ```json theme={null}
  {
    "success": true,
    "data": {
      "workspaceId": "workspace_12345",
      "totalTrackedUsers": 1250,
      "creditsPerUser": 2.8,
      "byPlace": [
        {
          "placeId": "9876543210",
          "placeName": "Main Game",
          "trackedUsers": 800,
          "creditsUsed": 2240
        },
        {
          "placeId": "9876543211",
          "placeName": "Training Area",
          "trackedUsers": 450,
          "creditsUsed": 1260
        }
      ]
    }
  }
  ```
</ResponseField>


## OpenAPI

````yaml GET /activity-credits/details/{workspaceId}
openapi: 3.0.0
info:
  title: Series API
  version: 1.0.0
  description: >-
    Series API — a free REST API by Sailboat Games, LLC that lets Roblox
    communities programmatically manage workspaces, staff, sessions, time-off
    and activity data.
  contact:
    name: Sailboat Games, LLC.
    email: admin@sailboatgames.com
servers:
  - url: https://api.series.hr
    description: Production API
security:
  - ApiKeyAuth: []
paths:
  /activity-credits/details/{workspaceId}:
    get:
      tags:
        - Activity Credits
      summary: Get Credit Details
      description: Get detailed credit information including tracked users
      parameters:
        - name: workspaceId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Credit details
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
      description: >-
        Pass your API key in the `apikey` header. Alternatively, the `x-api-key`
        header is also accepted.

````