We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2032fbc commit 420fc41Copy full SHA for 420fc41
1 file changed
.claude/skills/grid-api/SKILL.md
@@ -434,7 +434,7 @@ Use this flow when the user asks for a "realtime quote" or "just in time" funded
434
435
## Error Handling
436
437
-API responses follow this structure on success:
+Single-resource responses:
438
439
```json
440
{
@@ -444,6 +444,19 @@ API responses follow this structure on success:
444
}
445
```
446
447
+List responses return results in a `data` array with pagination fields:
448
+
449
+```json
450
+{
451
+ "data": [ ... ],
452
+ "hasMore": true,
453
+ "nextCursor": "...",
454
+ "totalCount": 42
455
+}
456
+```
457
458
+Use `jq '.data[]'` to iterate results or `jq '[.data[] | select(.currency == "NGN")]'` to filter.
459
460
On error:
461
462
0 commit comments