The generated API clients are a work in progress, you can also find our stable clients on the Algolia documentation.

Skip to main content

Predict API (1.0.0)

Download OpenAPI specification:Download

API powering the Predict feature of Algolia.

Profiles

Manage users' profiles.

Get user profile

Get predictions, properties (raw, computed or custom) and segments (computed or custom) for a user profile.

Authorizations:
(appIdapiKey)
path Parameters
userID
required
string

User ID for authenticated users or cookie ID for non-authenticated repeated users (visitors).

Request Body schema: application/json
One of
modelsToRetrieve
Array of strings (modelsToRetrieve)
Items Enum: "funnel_stage" "order_value" "affinities"

Responses

Request samples

Content type
application/json
Example
{
  • "modelsToRetrieve": [
    ]
}

Response samples

Content type
application/json
{
  • "user": "string",
  • "predictions": {
    },
  • "properties": {
    },
  • "segments": {
    }
}

Delete user profile

Delete all data and predictions associated with an authenticated user (userID) or an anonymous user (cookieID, sessionID).

Authorizations:
(appIdapiKey)
path Parameters
userID
required
string

User ID for authenticated users or cookie ID for non-authenticated repeated users (visitors).

Responses

Response samples

Content type
application/json
{
  • "user": "string",
  • "deletedUntil": "string"
}

Get all user profiles

Get all users with predictions in the provided application.

Authorizations:
(appIdapiKey)
Request Body schema: application/json
One of
modelsToRetrieve
Array of strings (modelsToRetrieve)
Items Enum: "funnel_stage" "order_value" "affinities"

Responses

Request samples

Content type
application/json
Example
{
  • "modelsToRetrieve": [
    ]
}

Response samples

Content type
application/json
{
  • "users": [
    ],
  • "previousPageToken": "string",
  • "nextPageToken": "string"
}

Models

Manage models.

Get a list of available model types

Get a list of all available model types. Each model type can be activated more than once, by selecting a different data source.

Authorizations:
(appIdapiKey)

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Get a model’s instance configuration

Get the configuration for a model that was activated.

Authorizations:
(appIdapiKey)
path Parameters
modelID
required
string

The ID of the model to retrieve.

Responses

Response samples

Content type
application/json
{
  • "modelID": "string",
  • "name": "string",
  • "type": "funnel_stage",
  • "sourceID": "string",
  • "index": "string",
  • "modelAttributes": [
    ],
  • "lastTrained": "string",
  • "lastInference": "string",
  • "errorMessage": "string",
  • "modelStatus": "pending"
}

Update a model instance

Update a model’s configuration.

Authorizations:
(appIdapiKey)
path Parameters
modelID
required
string

The ID of the model to retrieve.

Request Body schema: application/json
name
string (name)

The model’s instance name.

modelAttributes
Array of strings (modelsParams_modelAttributes)
modelStatus
string (modelStatus)
Enum: "active" "inactive"

active - model is running and generating predictions. The active value is allowed only if the current status of the model is inactive.
inactive - model training and inference have been paused. The inactive value is allowed only if the current status of the model is active.

Responses

Request samples

Content type
application/json
{
  • "name": "string",
  • "modelAttributes": [
    ],
  • "modelStatus": "active"
}

Response samples

Content type
application/json
{
  • "modelID": "string",
  • "updatedAt": "string"
}

Delete a model instance

Delete the model’s configuration, pipelines and generated predictions.

Authorizations:
(appIdapiKey)
path Parameters
modelID
required
string

The ID of the model to retrieve.

Responses

Response samples

Content type
application/json
{
  • "modelID": "string",
  • "deletedUntil": "string"
}

Get model instances

Get a list of all model instances.

Authorizations:
(appIdapiKey)

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Activate a model instance

Activate an existing model template. This action triggers the training and inference pipelines for the selected model. The model is added with modelStatus=pending. If a model with the exact same source & index already exists, the API endpoint returns an error.

Authorizations:
(appIdapiKey)
Request Body schema: application/json
type
required
string (modelsToRetrieve)
Enum: "funnel_stage" "order_value" "affinities"
name
required
string (name)

The model’s instance name.

sourceID
required
string (sourceID)

The data source ID, as returned by the (external) sources API.

index
required
string (index)

The index name.

modelAttributes
Array of strings (modelsParams_modelAttributes)

Responses

Request samples

Content type
application/json
{
  • "type": "funnel_stage",
  • "name": "string",
  • "sourceID": "string",
  • "index": "string",
  • "modelAttributes": [
    ]
}

Response samples

Content type
application/json
{
  • "modelID": "string",
  • "updatedAt": "string"
}

Get a model’s instance metrics

Get the model instance’ training metrics.

Authorizations:
(appIdapiKey)
path Parameters
modelID
required
string

The ID of the model to retrieve.

Responses

Response samples

Content type
application/json
{
  • "modelID": "string",
  • "metrics": [
    ]
}

Segments

Manage segments.

Get segment users

Get the profiles of users that belong to a segment.

Authorizations:
(appIdapiKey)
path Parameters
segmentID
required
string

The ID of the Segment to fetch.

Request Body schema: application/json
One of
modelsToRetrieve
Array of strings (modelsToRetrieve)
Items Enum: "funnel_stage" "order_value" "affinities"

Responses

Request samples

Content type
application/json
Example
{
  • "modelsToRetrieve": [
    ]
}

Response samples

Content type
application/json
{
  • "segmentID": "string",
  • "users": [
    ],
  • "previousPageToken": "string",
  • "nextPageToken": "string"
}

Get the segment configuration

Get the segment configuration.

Authorizations:
(appIdapiKey)
path Parameters
segmentID
required
string

The ID of the Segment to fetch.

Responses

Response samples

Content type
application/json
{
  • "segmentID": "string",
  • "name": "string",
  • "conditions": {
    },
  • "segmentStatus": "active",
  • "type": "computed",
  • "errorMessage": "string"
}

Update segment

Update a segment’s configuration.

Authorizations:
(appIdapiKey)
path Parameters
segmentID
required
string

The ID of the Segment to fetch.

Request Body schema: application/json
One of
name
string (SegmentsParams_name)

The name or description of the segment.

Responses

Request samples

Content type
application/json
Example
{
  • "name": "string"
}

Response samples

Content type
application/json
{
  • "segmentID": "string",
  • "updatedAt": "2021-07-22T12:30:00Z"
}

Delete a segment's configuration

Delete the segment’s configuration. User intents (predictions) from the segment are not deleted. All segment types (computed or custom) can be deleted.

When the query is successful, the HTTP response is 200 OK and returns the date until which you can safely consider the data as being deleted.

Authorizations:
(appIdapiKey)
path Parameters
segmentID
required
string

The ID of the Segment to fetch.

Responses

Response samples

Content type
application/json
{
  • "segmentID": "string",
  • "deletedUntil": "2021-07-22T12:30:00Z"
}

Get all segments

Get the list of segments with their configuration.

Authorizations:
(appIdapiKey)
query Parameters
type
string (segmentType)
Enum: "computed" "custom"

The type of segments to fetch.

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Create a segment

Create a new segment. All segments added by this endpoint will have a computed type. The endpoint receives a filters parameter, with a syntax similar to filters for Rules.

Authorizations:
(appIdapiKey)
Request Body schema: application/json
name
required
string (SegmentsParams_name)

The name or description of the segment.

required
object (segmentParentConditions)

The conditions that define which user profiles are included in the segment.

Can contain operands and a maximum of 1 level of nested conditions.

Responses

Request samples

Content type
application/json
{
  • "name": "string",
  • "conditions": {
    }
}

Response samples

Content type
application/json
{
  • "segmentID": "string",
  • "updatedAt": "2021-07-22T12:30:00Z"
}