---
title: "Targets API"
canonical: "https://support.appfire.com/space/FD/1802633706/Targets%20API"
format: markdown
---
> Macro (aura-html)

A target represents a user-defined goal for a metric for an individual or team.

This endpoint has the following methods:

- `GET /targets`: Gets a list of targets and their associated information.
- `GET /targets/{id}`: Gets the information associated with a specific target by ID.

## Parameters

| Name | Type | Description |
| --- | --- | --- |
| `id` | double | Unique identifier for a target. |
| `key` | string | Key assigned to target. |
| `value` | double | Value of the target. |
| `member_Id` | double | Unique identifier for a member. |
| `team_id` | double | Unique identifier for a team. |
| `apex_user` | double | Filter-traversable object. |
| `apex_user_id` | double | Unique identifier for the main user record for multiple user aliases that is associated with a target. |
| `apex_user_id__in` | double | Multiple `user_alias_id`s in comma separated list. |

## Example response

```json
{
"id": 36796,
"key": "act:tgt",
"value": 2,
"apex_user_id": null,
"team_id": null
},
{
"id": 28821,
"key": "first:tgt",
"value": 8,
"apex_user_id": null,
"team_id": null
},
{
"id": 34165,
"key": "resolve:max",
"value": 75,
"apex_user_id": null,
"team_id": null
}
```