---
title: "EntityListResponse"
url: "https://console.9fin.com/apis/entity-service/versions/31d9cce8-3ddc-42cd-b266-372482fbb0e1/schemas/EntityListResponse"
---

> Full API specification: https://console.9fin.com/apis/entity-service/versions/31d9cce8-3ddc-42cd-b266-372482fbb0e1.md

# EntityListResponse

Public-facing page of entities; `next_cursor` is None on the last page.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: 9fin Entity API
  version: 0.5.0
servers:
  - description: Production environment
    url: https://api.9fin.com
components:
  schemas:
    EntityResponse:
      description: Public-facing subset of an entity.
      properties:
        active_flag:
          anyOf:
            - type: boolean
            - type: "null"
          title: Active Flag
        alias:
          anyOf:
            - items:
                type: string
              type: array
            - type: "null"
          title: Alias
        cik:
          anyOf:
            - type: integer
            - type: "null"
          title: Cik
        country_ref_name:
          anyOf:
            - type: string
            - type: "null"
          title: Country Ref Name
        coverage_region:
          anyOf:
            - items:
                type: string
              type: array
            - type: "null"
          title: Coverage Region
        created_at:
          format: date-time
          title: Created At
          type: string
        description:
          anyOf:
            - type: string
            - type: "null"
          title: Description
        industry_ref_code:
          anyOf:
            - type: string
            - type: "null"
          title: Industry Ref Code
        modified_at:
          format: date-time
          title: Modified At
          type: string
        nf_id:
          title: Nf Id
          type: string
        roles:
          items:
            type: string
          title: Roles
          type: array
        street_name:
          anyOf:
            - type: string
            - type: "null"
          title: Street Name
        website:
          anyOf:
            - type: string
            - type: "null"
          title: Website
      required:
        - nf_id
        - roles
        - website
        - description
        - street_name
        - country_ref_name
        - industry_ref_code
        - cik
        - active_flag
        - alias
        - coverage_region
        - created_at
        - modified_at
      title: EntityResponse
      type: object
    EntityListResponse:
      description: Public-facing page of entities; `next_cursor` is None on the last page.
      properties:
        items:
          items:
            $ref: "#/components/schemas/EntityResponse"
          title: Items
          type: array
        next_cursor:
          anyOf:
            - type: string
            - type: "null"
          title: Next Cursor
      required:
        - items
        - next_cursor
      title: EntityListResponse
      type: object
```
