πŸ“˜

Note

You cannot try out this API from the developer portal at the moment. We are working on fixing the known limitations. Feel free to try out the API in a tool of your choice. The API request and response information are provided in this document.

Resource URL

HTTP Method: POST

URL: https://api.clibrain.com/v1/capabilities/extract/media

Content-Type header: multipart/form-data

Request

Request Type: Form-data

Key NameRequiredFormatValue
filetruebinaryA file
modeltrueJSON textExtract parametrisation JSON.

Here is the sample JSON object data model. All parameters are optional in the JSON data file.

{
  "variables": {
        "size": {
            "type": "string",
            "description": "Size in inches"
        },
        "refresh_rate": {
            "type": "string",
            "description": "Motion Refresh Rate"
        }
    }
}

Read the request body description of Extract text to understand the semantics of this object.

Response

{
    "extracted_data": {
        "refresh_rate": "100 Hz",
        "size": "55 pulgadas"
    }
}

Read the response body description of Extract text to understand the semantics of this object.

Examples

Find a complete example in this recipe: