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

# List Contact Segments

> List all segments that a contact belongs to.

Retrieve all segments the contact is actively a member of.

### Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the contact.
</ParamField>

### Response

<ResponseField name="data" type="array">
  <ResponseField name="id" type="string">The segment ID.</ResponseField>
  <ResponseField name="name" type="string">Segment name.</ResponseField>
  <ResponseField name="type" type="string">Segment type (`manual` or `dynamic`).</ResponseField>
  <ResponseField name="addedAt" type="string">Timestamp when the contact joined the segment.</ResponseField>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.mailofly.com/api/v1/contacts/cnt_123/segments \
    -H "Authorization: Bearer mf_live_your_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": [
      {
        "id": "seg_vip_customers",
        "name": "VIP Customers",
        "type": "manual",
        "addedAt": "2026-09-11T12:00:00Z"
      }
    ]
  }
  ```
</ResponseExample>


## Related topics

- [List Segment Contacts](/api/segments/list-segment-contacts.md)
- [List Contacts](/api/contacts/list-contacts.md)
- [List Segments](/api/segments/list-segments.md)
- [Add Contact to Segment](/api/contacts/add-contact-to-segment.md)
- [Delete Contact Segment](/api/contacts/delete-contact-segment.md)
