GET
/
items
curl --request GET \
  --url https://api.vectorify.ai/v1/items \
  --header 'Api-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "item_id": "<string>",
      "tenant": 123,
      "url": "<string>",
      "created_at": "<string>",
      "collection": {
        "id": "<string>",
        "name": "<string>",
        "slug": "<string>",
        "source": "<string>",
        "metadata": [
          "<any>"
        ],
        "created_at": "<string>",
        "items_count": 123
      },
      "upserts": [
        {
          "id": "<string>",
          "chunk_size": 123,
          "status": "<string>",
          "started_at": "<string>",
          "completed_at": "<string>",
          "created_at": "<string>"
        }
      ]
    }
  ],
  "meta": {
    "current_page": 123,
    "from": 123,
    "last_page": 123,
    "links": [
      {
        "url": "<string>",
        "label": "<string>",
        "active": true
      }
    ],
    "path": "<string>",
    "per_page": 123,
    "to": 123,
    "total": 123
  },
  "links": {
    "first": "<string>",
    "last": "<string>",
    "prev": "<string>",
    "next": "<string>"
  }
}

Authorizations

Api-Key
string
header
required

Response

200 - application/json

Paginated set of Item

The response is of type object.

GET
/
items
curl --request GET \
  --url https://api.vectorify.ai/v1/items \
  --header 'Api-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "item_id": "<string>",
      "tenant": 123,
      "url": "<string>",
      "created_at": "<string>",
      "collection": {
        "id": "<string>",
        "name": "<string>",
        "slug": "<string>",
        "source": "<string>",
        "metadata": [
          "<any>"
        ],
        "created_at": "<string>",
        "items_count": 123
      },
      "upserts": [
        {
          "id": "<string>",
          "chunk_size": 123,
          "status": "<string>",
          "started_at": "<string>",
          "completed_at": "<string>",
          "created_at": "<string>"
        }
      ]
    }
  ],
  "meta": {
    "current_page": 123,
    "from": 123,
    "last_page": 123,
    "links": [
      {
        "url": "<string>",
        "label": "<string>",
        "active": true
      }
    ],
    "path": "<string>",
    "per_page": 123,
    "to": 123,
    "total": 123
  },
  "links": {
    "first": "<string>",
    "last": "<string>",
    "prev": "<string>",
    "next": "<string>"
  }
}

Authorizations

Api-Key
string
header
required

Response

200 - application/json

Paginated set of Item

The response is of type object.