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

# Get property list

> Fetch a single property list with its resolved identifiers

`GET /api/v2/buyer/advertisers/{advertiserId}/property-lists/{listId}`

Returns one property list with its full resolved identifier set and filters. The stored list contains only resolved identifiers — `resolutionSummary` and the transient `unresolvedIdentifiers` / `registeredIdentifiers` from create/update are omitted here.

## Request

<CodeGroup>
  ```bash curl theme={null}
  curl https://api.interchange.io/api/v2/buyer/advertisers/12345/property-lists/42 \
    -H "Authorization: Bearer $SCOPE3_API_KEY"
  ```
</CodeGroup>

## Parameters

| Field          | Type   | Required | Notes                            |
| -------------- | ------ | -------- | -------------------------------- |
| `advertiserId` | string | Yes      | Path. Owning advertiser          |
| `listId`       | string | Yes      | Path. The property list to fetch |

## Response

```json theme={null}
{
  "propertyList": {
    "listId": "42",
    "name": "Q1 Campaign - UK Premium",
    "purpose": "include",
    "identifiers": [
      { "type": "domain", "value": "example-times.com" },
      { "type": "domain", "value": "example-press.co.uk" }
    ],
    "domains": ["example-times.com", "example-press.co.uk"],
    "propertyCount": 25,
    "filters": { "channels_any": ["display", "olv"] },
    "createdAt": "2026-01-15T10:30:00.000Z",
    "updatedAt": "2026-01-20T14:45:00.000Z"
  }
}
```

`identifiers` is the persisted resolved set. `domains` is a convenience view of `identifiers` where `type: "domain"`; app identifiers are not in it.

## Errors

* `404 NOT_FOUND` — `listId` or `advertiserId` does not exist or is not visible to the authenticated account.

See [Errors](/v2/reference/errors) for the full error contract.

## Related

<CardGroup cols={2}>
  <Card title="Property list tasks" href="/v2/buyer/property-lists/tasks" icon="list-check">
    All property list operations
  </Card>

  <Card title="Property Lists guide" href="/v2/guides/property-lists" icon="list">
    Identifier types, resolution, and concepts
  </Card>

  <Card title="Update property list" href="/v2/buyer/property-lists/tasks/update-property-list" icon="pen">
    Replace identifiers on this list
  </Card>

  <Card title="List property lists" href="/v2/buyer/property-lists/tasks/list-property-lists" icon="list">
    All lists for an advertiser
  </Card>
</CardGroup>
