---
title: "Get the list of predefined items (for the logged API user's account)"
description: "GET /predefined_items — Returns the account's predefined items — reusable products or services with a name, description, cost and price that can be dropped onto a deal as line items."
canonical_url: https://developer.onepagecrm.com/api/reference/predefined-items/get-predefined_items/
source: Markdown mirror of https://developer.onepagecrm.com/api/reference/predefined-items/get-predefined_items/
---

`GET /predefined_items`

Returns the account's predefined items — reusable products or services with a name, description, cost and price that can be dropped onto a deal as line items. Search by name, and page through with page and per_page.

Resource: [Predefined Items](https://developer.onepagecrm.com/api/reference/predefined-items/) · [API Reference](https://developer.onepagecrm.com/api/reference/)

## Request

```bash
curl "https://app.onepagecrm.com/api/v3/predefined_items" \
  -u $user_id:$api_key
```

Authentication is HTTP Basic — `user_id` as username, `api_key` as password.
See https://developer.onepagecrm.com/api/authentication/.

## Responses

### 200

OK

```json
{
  "status": 0,
  "message": "OK",
  "timestamp": 1528373119,
  "data": {
    "predefined_items": [
      {
        "predefined_item": {
          "id": "5c79510e9007ba3f7519e819",
          "name": "Solar panels",
          "description": "Photovoltaic solar panels (2019 model)",
          "cost": 95,
          "price": 149.99,
          "position": 1,
          "item_group_id": "5c9a53599007ba58f13c8119"
        }
      }
    ]
  }
}
```

Standard error responses: 400, 401, 403, 404, 409, 500 — shared across the API. See https://developer.onepagecrm.com/api/errors/.

## Related guides

- [Authentication](https://developer.onepagecrm.com/api/authentication/)
- [Errors](https://developer.onepagecrm.com/api/errors/)
- [Rate limits](https://developer.onepagecrm.com/api/rate-limits/)
