---
title: "Get Intel Profile data"
method: GET
path: "/enterprise/entityLists"
tags: ["Entity Lists"]
---

# Get Intel Profile data

`GET /enterprise/entityLists`

Returns all intel profiles associated with the authenticated enterprise account. When `details=true` is passed, each list includes its full entity membership. Entity lists group named entities (companies, technologies, threat actors, custom text terms) that can be used to scope and filter intelligence feeds.

Entity members may be resolved Feedly entities (returned with an `id`) or unresolved custom text strings (returned with a `text` field only).

## Query parameters

- `details` boolean

## Response `200`

An array of entity list objects for the enterprise account. Returns all lists when `details=true`, each fully populated with its entity membership.

- EntityList[]
  - `id` string, required — Unique identifier for the entity list. Follows the pattern `nlp/f/entity/cl:{teamId}:{label}-{shortHash}`.
  - `label` string, required — Human-readable name for the entity list, as set by the creator.
  - `type` 'customTopic', required — The list type. Always `customTopic` for enterprise entity lists created via the Feedly UI or API.
  - `description` string, required — Auto-generated comma-separated summary of the entity labels contained in the list. Truncated for large lists.
  - `createdBy` string, uuid, required — UUID of the Feedly user who created this entity list.
  - `created` integer, required — Unix timestamp in milliseconds when the list was created.
  - `inferredType` string — The dominant entity category inferred from the list's members. Common values include `org`, `tech`, `person`, `malware`, `vulnerability`. Present in most lists; may be absent if the list is empty or type cannot be determined.
  - `updated` integer — Unix timestamp in milliseconds when the list was last modified. Only present if the list has been edited after initial creation.
  - `updatedBy` string, uuid — UUID of the Feedly user who last modified this entity list. Only present alongside `updated`.
  - `entities` EntityMember[], required — The members of this entity list. Each member is either a resolved Feedly entity (has an `id`) or an unresolved custom text term (has a `text` field only). Only populated when the request is made with `details=true`.
    - `id` string — Feedly entity identifier. Format: `nlp/f/entity/gz:{type}:{slug}`. Present when the member is a resolved entity in Feedly's knowledge graph.
    - `text` string — Raw custom text string. Present when the member is an unresolved or user-defined term that does not map to a known Feedly entity.

## Other responses

- `400` — Bad request — invalid query parameter value.
- `401` — Unauthorized — the Bearer token is missing, expired, or invalid.
- `403` — Forbidden — the authenticated user does not have enterprise access or lacks permission to view entity lists.
- `429` — Rate limit exceeded.
- `500` — Internal server error.

---

[API](https://skmtc.net/feedly/apis/streams-api.md) · [All operations](https://skmtc.net/feedly/apis/streams-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/feedly/streams-api/revisions/d38216a6d069/schema)
