Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .claude/skills/grid-api/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ Use this flow when the user asks for a "realtime quote" or "just in time" funded

## Error Handling

API responses follow this structure on success:
Single-resource responses:

```json
{
Expand All @@ -444,6 +444,19 @@ API responses follow this structure on success:
}
```

List responses return results in a `data` array with pagination fields:

```json
{
"data": [ ... ],
"hasMore": true,
"nextCursor": "...",
"totalCount": 42
}
```

Use `jq '.data[]'` to iterate results or `jq '[.data[] | select(.currency == "NGN")]'` to filter.

On error:

```json
Expand Down