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

# The Listing object

<Note>
  We'll be expanding the object incrementally and with backward compatibility.
</Note>

#### Attributes

<ResponseField name="id" type="string">
  Unique identifier for the object.
</ResponseField>

<ResponseField name="platform" type="enum">
  The platform where the listing is published. One of `amazon` or `walmart`.
</ResponseField>

<ResponseField name="channel" type="string">
  The ID of the platform channel where the listing is published.
</ResponseField>

<ResponseField name="status" type="enum">
  The status of the product. One of `active` or `inactive`.
</ResponseField>

<ResponseField name="sku" type="string">
  Unique identifier for the object.
</ResponseField>

<ResponseField name="currency" type="enum">
  Three-letter ISO currency code, in lowercase.
</ResponseField>

<ResponseField name="current_price" type="nullable integer">
  The current listed price in cents (in the currency specified) of the listing.
  Exclusive of shipping price.
</ResponseField>

<ResponseField name="current_shipping" type="nullable integer">
  The current shipping price in cents (in the currency specified) of the
  listing.
</ResponseField>

<ResponseField name="cost" type="nullable integer">
  The cost of a single unit in cents (in the currency specified) of the listing.
</ResponseField>

<ResponseField name="minimum_price" type="nullable integer">
  The minimum price in cents (in the currency specified) of the listing.
  Inclusive of shipping price for Amazon listings.
</ResponseField>

<ResponseField name="maximum_price" type="nullable integer">
  The maximum price in cents (in the currency specified) of the listing.
  Inclusive of shipping price for Amazon listings.
</ResponseField>

<ResponseField name="strategy" type="nullable string">
  The ID of the repricing strategy assigned to the listing.
</ResponseField>

<ResponseField name="repricing" type="boolean">
  Has the value `true` if repricing by Aura is enabled for this listing or the
  value `false` if repricing is disabled.
</ResponseField>

<ResponseField name="manual_price" type="nullable integer">
  The manual price in cents (in the currency specified) that Aura will enforce
  on repriceable listings. Will have no effect on non-repriceable listings, i.e.
  `repricing` is `false`, `minimum_price` is unset or incalculable (if using
  profit-based minimum pricing and cost or fees are unavailable), or current
  shipping is unavailable. Manual price is inclusive of shipping price.
</ResponseField>

#### More attributes

<Expandable title="properties">
  <ResponseField name="object" type="string">
    String representing the object's type. Objects of the same type share the
    same value.
  </ResponseField>

  <ResponseField name="created" type="timestamp">
    Time at which the object was created. Measured in seconds since the Unix epoch.
  </ResponseField>
</Expandable>

<ResponseExample>
  ```json THE LISTING OBJECT theme={null}
  {
    "id": "0195b630-49ab-77ca-a2e8-5a7f3235f946",
    "object": "listing",
    "platform": "amazon",
    "channel": "f70a0f0d-48e1-4466-8f4c-32747b395de9",
    "status": "active",
    "sku": "SAMPLE-SKU",
    "currency": "usd",
    "current_price": 7405,
    "current_shipping": 0,
    "cost": 2200,
    "minimum_price": 7299,
    "maximum_price": 7999,
    "strategy": "c38970b9-bbf4-4288-a18b-b8bd1de4fbb7",
    "repricing": true,
    "manual_price": null,
    "created": 1662738023
  }
  ```
</ResponseExample>
