Save the response
curl -o api-response.json https://example/api/itemsInspect a small sample
Confirm field names, null handling and nested objects before writing the final query.
Filter incomplete records
SELECT id, name, status, updated
FROM 'C:\Data\api-response.json'
WHERE status <> 'Completed'
ORDER BY updated DESC;