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

# List Members

List members associated with a target (e.g., organization or blob).

## **GET** `/members/target/:target/:target_id`

### Path Parameters

| Parameter   | Type   | Required | Description                           |
| :---------- | :----- | :------- | :------------------------------------ |
| `target`    | string | Yes      | Resource type: `org` or `blob`.       |
| `target_id` | string | Yes      | The unique ID of the target resource. |

### Response

| Parameter | Type  | Description             |
| :-------- | :---- | :---------------------- |
| `members` | array | List of member objects. |

### Example

<CodeGroup>
  ```bash Request theme={null}
  curl -X GET https://api.blobhub.io/v1/members/target/org/org_123
  ```

  ```json Response theme={null}
  {
    "status": "success",
    "members": [
      {
        "id": "mem_001",
        "user_id": "user_456",
        "role": "admin"
      }
    ]
  }
  ```
</CodeGroup>
