Skip to main content
GET
/
batches
List Batches
curl --request GET \
  --url https://api.useqrkit.com/v1/batches \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "has_more": true,
  "next_cursor": "<string>",
  "data": [
    {
      "id": "batch_aB3dE5fG7hI9jK1m",
      "object": "batch",
      "total_count": 123,
      "completed_count": 123,
      "error_count": 123,
      "items": [
        {
          "name": "<string>",
          "type": "<string>",
          "qr_code_id": "<string>",
          "error": "<string>"
        }
      ],
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key in the Authorization header: Bearer qr_live_… or Bearer qr_test_…. Token endpoints take a Clerk session JWT instead.

Query Parameters

limit
integer
default:25
Required range: 1 <= x <= 100
cursor
string

Response

Paginated list of batches

object
string
Example:

"list"

has_more
boolean
next_cursor
string | null
data
object[]