> 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/getauctionparameters.md).

# getAuctionParameters()

```typescript
/**
   * Get the auction parameters for the Collective Portrait Registry contract.
   *
   * @remarks
   * The auction parameters are the multiplier, percentage, and epoch used by the Collective Portrait Registry contract to calculate the auction price.
   * Although return type is any, the return value is an object with three properties: auctionMultiplier, auctionPercentage, and auctionEpoch.
   * Subject to change.
   *
   * @returns {any} - The auction parameters for the Collective Portrait Registry contract.
   * @beta
   * @async
   */
  getAuctionParameters(): any {
    const parameters =
      this.portrait.portraitCollectiveContract.getAuctionParameters();

    const json = {
      auctionMultiplier: parameters[0],
      auctionPercentage: parameters[1],
      auctionEpoch: parameters[2],
    };

    return json;
  }
```
