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

# Assets Overview

> Look up the assets installed at a property and their warranty coverage

The Assets API returns the assets Sibi has on record for a property: what the product is, where
it's installed, its dimensions, and its warranty coverage.

## Benefits

* **Product identity:** SKU, manufacturer, category, and serial number for each installed asset
* **Warranty visibility:** Time-sliced coverage windows so you can tell what's covered and when
* **Address-scoped:** Narrow results to the assets installed at one property

## Core Concepts

<CardGroup cols={2}>
  <Card title="Asset" icon="box">
    A single product installed at a property, with its identity, dimensions, and warranty coverage
  </Card>

  <Card title="Warranty Coverage" icon="shield-check">
    A time-sliced window during which a specific set of coverage types applies to an asset
  </Card>
</CardGroup>

## Pagination

Results are paged with an opaque cursor. Pass the previous response's `next` back as `after` to
fetch the next page; `next` is `null` once a page comes back short.

<Warning>
  Calling without an `address` browses every asset the caller can see across all properties. This is meant for one-off
  backfills, not realtime use, and can be slow at scale — supply `address` to narrow to one property instead.
</Warning>

## Next Steps

<Steps>
  <Step title="Review Documentation">Read through API reference and authentication requirements</Step>
  <Step title="Development">Try listing assets for a property by address</Step>
  <Step title="Production">Go live with your integration</Step>
</Steps>
