Runs
Get Items (JSON)
Paginated scraped rows for a run.
GET
/v1/runs/:id/itemsRequires authentication
Path parameters
| Name | Type | Description |
|---|---|---|
| idrequired | uuid | Run whose items you are fetching. |
Query parameters
| Name | Type | Description |
|---|---|---|
| limitoptional | integer | Page size.Default: 50Maximum: 200 |
| offsetoptional | integer | Number of items to skip.Default: 0 |
Each row includes data (scraped fields), page_number, and item_index.
curl 'https://api.gluecrawl.ai/v1/runs/RUN_ID/items?limit=50&offset=0' \ -H "Authorization: Bearer glue_yourApiKeyHere"Responses
application/json
{ "items": [ { "data": { "product_name": "Wireless Keyboard", "price": 49.99, "product_url": "https://example.com/products/wireless-keyboard", "description": "Full-size wireless keyboard with backlit keys", "rating": 4.5, "reviews_count": 312 }, "page_number": 1, "item_index": 0 }, { "data": { "product_name": "USB-C Hub", "price": 34.99, "product_url": "https://example.com/products/usb-c-hub", "description": "7-in-1 USB-C hub with HDMI and SD card reader", "rating": 4.2, "reviews_count": 187 }, "page_number": 1, "item_index": 1 }, { "data": { "product_name": "Mechanical Mouse", "price": 59.99, "product_url": "https://example.com/products/mechanical-mouse", "description": null, "rating": 4.7, "reviews_count": 94 }, "page_number": 2, "item_index": 2 } ], "total": 120, "limit": 50, "offset": 0}