> ## 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** `/:target/:target_id/members`

### Path Parameters

| Parameter   | Type   | Required | Description                           |
| :---------- | :----- | :------- | :------------------------------------ |
| `target`    | string | Yes      | Resource type: `orgs` or `blobs`.     |
| `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/orgs/org_123/members
  ```

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