Skip to main content
POST
/
api
/
public
/
v2
/
tables
/
{table_id}
/
sheets
/
{sheet_id}
/
cells
/
{cell_id}
/
recalculations
Recalculate Cell
curl --request POST \
  --url https://api.promptlayer.com/api/public/v2/tables/{table_id}/sheets/{sheet_id}/cells/{cell_id}/recalculations \
  --header 'X-API-KEY: <api-key>'
{
  "success": false,
  "message": "<string>",
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://promptlayer-claude-nice-fermi-nop3f.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Trigger recalculation for a single cell. Returns 202 Accepted with an execution_id that can be used to track progress.

Authorizations

X-API-KEY
string
header
required

Path Parameters

table_id
string<uuid>
required
sheet_id
string<uuid>
required
cell_id
string<uuid>
required

Response

No cells to recalculate

Standard error response. Some legacy endpoints may return either message or error.

success
boolean
default:false

Indicates that the request failed.

message
string

Human-readable error message.

error
string

Machine-readable or fallback error message.