How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

miso.ai Bulk API API

The Bulk API provides an efficient interface for making multiple Search / Recommendations / Q&A requests in one APIcall. These requests will be executed concurrently at the Miso side, and returned at once when all of them are finished.This API is particularly useful when you need to invoke multiple Miso APIs to respond to a user request.Using this API, you can batch multiple API calls into one, and significantly save the network round-trip times.### Request schemaThe request schema for this API call is as follow:```POST /v1/bulk{ "requests": [ { "api_name": "search/search", "body": { ... } }, { "api_name": "recommendation/product_to_product", "body": { ... } }, ... ]}```Each request object should contain:* **api_name**: name of the API you want to access. The name should contain a slash `/`.For example, search/search for search requests, search/autocomplete for autocomplete requests, etc.* **body**: the complete request body as if you are making the API request individually.Any errors in one of the requests will be returned, and will not prevent other requests from beingexecuted.### Response SchemaBulk API endpoint will return the API responses in the same order as they appear in the request.For example, if the Bulk API request is like the following:```POST /v1/bulk{ "requests": [ {... request 1 ...}, {... request 2 ...} ]}``` The response will be like:```{ "data": [ // response for request 1 { "error": false, "status_code": 200, "body": { ... } }, // response for request 2 { "error": false, "status_code": 200, "body": { ... } } ]}```Each response object will contain the following fields:* **error**: whether there was an error with the request. You should check this field to determine whether toperform error handling.* **status_code**: status code of the request.* **body**: the response body of the request (as if the request was sent individually).Let's see a complete example with MovieLens data. The following requests will issue two requests in one API call that return the `Sci-Fi` movies directed by*Ridley Scott*, and *James Cameron* respectively in the first and second responses:```POST /v1/bulk{ "requests": [ { "api_name": "search/search", "body": { "user_id": "test_user", "q": "sci-fi", "fq": "custom_attributes.director:\"Ridley Scott\"" } }, { "api_name": "search/search", "body": { "user_id": "test_user", "q": "sci-fi", "fq": "custom_attributes.director:\"James Cameron\"" } } ]}```The response will be like:```{ "data": [ { "error": false, "status_code": 200, "body": { "data": { "took": 136, "miso_id": "19ab254c-5fb8-11ec-bd48-b20169940af9", "products": [ { "product_id": "blade-runner", "title": "Blade Runner (1982)" } ], "total": 6, "start": 0 } } }, { "error": false, "status_code": 200, "body": { "data": { "took": 116, "miso_id": "19ab254c-5fb8-11ec-bd48-b20169940af9", "products": [ { "product_id": "avatar", "title": "Avatar (2009)" } ], "total": 10, "start": 0 } } } ]}```

miso.ai Bulk API API is one of 10 APIs that miso.ai publishes on the APIs.io network, described by a machine-readable OpenAPI specification.

Tagged areas include Bulk API. The published artifact set on APIs.io includes an OpenAPI specification, API documentation, and authentication docs.

This API exposes 1 operation across 1 path, and defines 7 schemas. It is described by OpenAPI 3.2.0, at version 1.1.4.

Requests are made against a single base URL, https://api.askmiso.com.

1 operations 1 paths 7 schemas 1 POST

Metadata

The identity and technical contract details declared by the specification.

Specification
OpenAPI 3.2.0
API Version
1.1.4
Base URL
https://api.askmiso.com
Authentication
API Key, API Key
Resource Areas
1

Authentication & Security 2

miso.ai Bulk API API declares 2 security schemes for authenticating requests. An API key is passed in the query as api_key (Secret_API_Key). An API key is passed in the query as api_key (Publishable_API_Key).

  • Secret_API_Key — Your secret API key is used to access every Miso API endpoint. You should secure this key and only use it on a backend server. Never leave this key in your cli…
  • Publishable_API_Key — Your publishable API key is used to call Miso's APIs from your front-end code. It can be used to stream interactions from the browser using Miso's Interactions…

Paths & Operations 1

Across 1 path, the API surfaces 1 operation — 1 POST. Each is listed below with its method, path, parameters, and response codes.

Bulk API 1

The Bulk API provides an efficient interface for making multiple Search / Recommendations / Q&A requests in one API call. These requests will be executed concurrently at the Miso…

POST
/v1/bulk
Bulk Request API
bulk_v1_bulk_post body → 200422

Schemas 7

The contract defines 7 schemas that model the data the API accepts and returns. The most detailed are ValidationError (3 properties), BulkIndividualResponse (3 properties), EngineAPIRequest (2 properties), BulkResponse (2 properties). Each schema is shown below with its type and property counts.

HTTPValidationError
object
1 property
BulkResponse
object
Bulk API response
2 properties 2 required
EngineAPIRequest
object
Engine API request
2 properties 2 required
BulkIndividualResponse
object
Individual response in a bulk API request
3 properties 3 required
ValidationError
object
3 properties 3 required
BulkRequest
object
Bulk API request
1 property 1 required
GeneralBody
object
Allow any json body

Specification

The full machine-readable OpenAPI contract behind this narrative.

Source

misoai-bulk-api-api-openapi.yml Raw ↑

Other APIs miso.ai publishes across the network.

miso.ai Ask APIs API
miso.ai Experiment APIs API
miso.ai Interaction APIs API
miso.ai Product / Content APIs API
miso.ai Product Recommendations API
miso.ai Q&A APIs API
miso.ai Search APIs API
miso.ai User APIs API
miso.ai User Recommendations API
Where this information came from

This is an independent, third-party profile of miso.ai Bulk API API, published by API Evangelist. We do not operate, host, resell, or support these APIs, and we are not affiliated with or endorsed by the company unless stated above. Everything here is built from publicly available information — the company's own site, developer portal, documentation, public repositories, and the specifications it publishes for public use. Nothing is obtained by breaching a system, defeating an access control, or using credentials.

The Kin Score and Agent Readiness rating are independently calculated assessments of a company's public API artifacts, scored against a published rubric. They are not certifications, endorsements, security assessments, or audits.

Corrections, re-scores, and removal are free — no partnership or purchase required, and you do not need to justify the request. A removed company is recorded as unrated, never scored zero for having asked. Acknowledgement within one business day; removal within two.

info@apievangelist.com · Read the full data-sourcing policy →
On a security or compliance team? Put security in the subject line and you will get a person, not a form — we will tell you exactly which public URLs this profile was built from.