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

# Get collection

You can get a specific collection in a project by calling [`client.collections().get(name)`](/sdk/topk-py#get-3):

<CodeGroup>
  ```python Python theme={null}
  collection = client.collections().get("books")
  ```

  ```typescript Javascript theme={null}
  const collection = await client.collections().get("books")
  ```
</CodeGroup>

The `get()` function takes the name of a collection and returns a single `Collection` object.

<CodeGroup>
  ```python Python theme={null}
  print(f"Collection name: {collection.name}")
  print(f"Organization ID: {collection.org_id}")
  print(f"Project ID: {collection.project_id}")
  print(f"Region: {collection.region}")
  print(f"Schema: {collection.schema}")
  ```

  ```js Javascript theme={null}
  console.log(`Collection name: ${collection.name}`);
  console.log(`Organization ID: ${collection.orgId}`);
  console.log(`Project ID: ${collection.projectId}`);
  console.log(`Region: ${collection.region}`);
  console.log(`Schema: ${collection.schema}`);
  ```
</CodeGroup>
