POST
/
api
/
v2
/
result
/
{result_id}
/
extract_data
Extract more data from a previous workflow run
curl --request POST \
  --url https://api.jsonify.com/api/v2/result/{result_id}/extract_data \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<the site name>"
}'
{
  "message": "<string>",
  "result": {
    "changed": true,
    "credits": {
      "remaining": 123,
      "used": 123
    },
    "details": {
      "descr": "<string>"
    },
    "json": {
      "data": true
    },
    "screenshots": [
      "<string>"
    ],
    "when": 123,
    "done": true,
    "id": "<string>"
  },
  "success": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

result_id
string
required

The result GUID

Query Parameters

directive
string

A human-readable directive to the AI about how to rephrase the data

Body

application/json · string

A JSON schema to extract against. Must be valid JSON.

Example:
{ "name": "<the site name>" }

Response

200 - application/json

A task result

The response is of type object.