API Explorer
Classifiers Endpoint

This endpoint allows you to list the active natural language understanding classifiers on your account.

Listing Classifiers

A GET returns the classifiers for your organization, most recent first.

  • uuid - the UUID of the classifier, filterable as uuid.
  • name - the name of the classifier
  • intents - the list of intents this classifier exposes (list of strings)
  • type - the type of the classifier, one of 'wit' or 'luis'
  • created_on - when this classifier was created

Example:

GET /api/v2/classifiers.json

Response:

{
    "next": null,
    "previous": null,
    "results": [
    {
        "uuid": "9a8b001e-a913-486c-80f4-1356e23f582e",
        "name": "Temba Classifier",
        "intents": ["book_flight", "book_car"],
        "type": "wit",
        "created_on": "2013-02-27T09:06:15.456"
    },
    ...