Skip to main content
POST
/
api
/
v1
/
analyses
Submit analysis
curl --request POST \
  --url https://shelfforce.ai/api/v1/analyses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "imageUrl": "<string>",
  "placeId": "<string>",
  "taskId": "<string>"
}
'
{
  "data": {
    "id": "<string>",
    "status": "<string>",
    "createdAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key with sf_live_ prefix. Pass as Authorization: Bearer sf_live_...

Headers

Idempotency-Key
string

Unique key for idempotent requests. If a request with the same key was already processed within the last 24 hours, the cached response is returned with X-Idempotent-Replayed: true.

Example:

"idk_550e8400-e29b-41d4-a716-446655440000"

Body

application/json
imageUrl
string<uri>
required

Publicly-accessible URL of the shelf image to analyse.

Example:

"https://cdn.example.com/shelf-photo-001.jpg"

placeId
string

Optional Shelfforce place ID to associate with this analysis.

Example:

"pl_abc123"

taskId
string

Optional Shelfforce task ID to associate with this analysis.

Example:

"tsk_xyz789"

Response

Analysis accepted and queued for processing.

data
object
required