> For the complete documentation index, see [llms.txt](https://ryan-44.gitbook.io/portrait/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ryan-44.gitbook.io/portrait/portrait-sdk/collective-portraits/read/getauctionstarttime.md).

# getAuctionStartTime()

```typescript
/**
   * Get the auction start time of the Collective Portrait.
   *
   * @remarks
   * The auction start time is the time at which the Collective Portrait will be put up for auction.
   * The auction start time is equal to the valid until time + grace period.
   * It is recommended to use this in conjunction with the timestamp from the block. You can use the Ethers library to get the timestamp from the block.
   *
   * @param {CollectivePortraitName | number} identity - The name of the Collective Portrait that the user would like to get the auction start time for.
   * @returns {number} - The auction start time of the Collective Portrait.
   * @beta
   * @async
   */
  getAuctionStartTime(identity: CollectivePortraitName | number): number {
    const validUntil = this.getValidUntil(identity);
    return validUntil + this.getGracePeriod();
  }
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://ryan-44.gitbook.io/portrait/portrait-sdk/collective-portraits/read/getauctionstarttime.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
