Skip to main content
GET
/
place_enrichment
/
jobs
Get enrichment jobs
curl --request GET \
  --url https://api.repromptai.com/v1/{org}/place_enrichment/jobs \
  --header 'Authorization: Bearer <token>'
{
  "jobs": [
    {
      "place_id": "<string>",
      "status": "<string>",
      "job_metadata": {
        "last_enriched": "2023-11-07T05:31:56Z",
        "enrichment_metadata": {},
        "attribute_status": {},
        "country_code": "<string>"
      },
      "inputs": {
        "type": "<any>"
      },
      "outputs": {},
      "reasoning": {},
      "confidence_scores": {
        "open_closed_status": "VERY_HIGH",
        "phone": "VERY_HIGH",
        "website": "VERY_HIGH",
        "address": "VERY_HIGH",
        "categories": "VERY_HIGH",
        "opening_hours": "VERY_HIGH",
        "entity_type": "VERY_HIGH",
        "name": "VERY_HIGH",
        "parking_spaces": "VERY_HIGH",
        "parking_spaces_total": "VERY_HIGH",
        "parking_spaces_street": "VERY_HIGH",
        "parking_spaces_shared": "VERY_HIGH",
        "parking_spaces_dedicated": "VERY_HIGH",
        "chain": "VERY_HIGH",
        "tiktok": "VERY_HIGH",
        "price_tier": "VERY_HIGH",
        "approximate_user_reviews": "VERY_HIGH",
        "menu": "VERY_HIGH",
        "school_geofence": "VERY_HIGH"
      }
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

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

batchId
string | null
limit
integer
default:10000
offset
integer
default:0

Response

200 - application/json

Successful Response

jobs
PlaceJobResult · object[]
required
total
integer
required

Total number of jobs available

limit
integer
required

Number of jobs per page

offset
integer
required

Starting position of the current page

I