Skip to main content
GET
/
place_enrichment
/
batches
List All Batches Endpoint
curl --request GET \
  --url https://api.repromptai.com/v1/{org}/place_enrichment/batches \
  --header 'Authorization: Bearer <token>'
{
  "batches": [
    {
      "id": "batch_2025_03_10_123456",
      "name": "NYC Restaurants March 2025",
      "created_at": "2025-03-10T15:30:00Z",
      "organization_id": "org-abc123",
      "job_count": 150,
      "completed_count": 142,
      "failed_count": 3,
      "pending_count": 0,
      "in_progress_count": 5
    }
  ],
  "total": 42,
  "limit": 10,
  "offset": 0
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

apiKey
string | null

Query Parameters

limit
integer
default:10

Number of batches to return per page

Required range: 1 <= x <= 500
offset
integer
default:0

Number of batches to skip

Required range: x >= 0
query
string | null

Optional search string to filter batches by name (case-insensitive)

Response

200 - application/json

List of all batches for the organization with pagination

batches
BatchJob · object[]
required
total
integer
required
limit
integer
required
offset
integer
required
I