skillfed

mixpeek

Mixpeek API

mixpeek v1.3.351 81.0K downloads/30d#14,259 on PyPI
Permissive license MIT Active released

What it is and what it does

Mixpeek is an OpenAPI-generated Python client for the Mixpeek API, a service providing endpoints for data processing, retrieval, agent sessions, alerts, and analytics. It wraps HTTP communication with typed models and exception handling, requiring Python 3.9 or later and Bearer token authentication. The package depends on urllib3 for HTTP, python-dateutil for timestamp handling, pydantic for data validation, and typing-extensions for type hints.

You use it by instantiating an ApiClient with your Bearer token, then creating API class instances (AccountApi, AdhocRetrieversApi, AgentSessionsApi, AlertsApi, AnalyticsApi, etc.) to call specific endpoints. The client handles serialization, deserialization, and error responses through ApiException. It's a thin, generated wrapper around the Mixpeek service—useful if you're building applications that integrate with Mixpeek's data processing or agent capabilities.

Use it for:

  • Integrate Mixpeek's data retrieval and processing endpoints into a Python application
  • Build agent-based workflows using the AgentSessionsApi to create sessions, send messages, and manage interactions
  • Set up monitoring and alerting by creating and managing alerts through the AlertsApi
  • Analyze performance bottlenecks and retriever tuning metrics using the AnalyticsApi
  • Automate account management and authentication checks via the AccountApi

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Mixpeek is an auto-generated OpenAPI client library for accessing the Mixpeek API's data processing, retrieval, agent sessions, alerts, and analytics endpoints.

Yes, if you need to integrate with the Mixpeek API. Low install friction, active maintenance, MIT license, no known vulnerabilities, and a large API surface make it a straightforward choice. The auto-generated nature means it tracks the API closely but may lack hand-crafted ergonomics or custom helpers—verify that the endpoint coverage and client behavior match your use case.

Install

mixpeek on PyPI

pip

pip install mixpeek

uv

uv add mixpeek

poetry

poetry add mixpeek

Installing mixpeek

Before you install

Low install friction with a pure-Python wheel distribution and four lightweight runtime dependencies. Active maintenance with a release on 2026-08-14. No known vulnerabilities.

License in practice

MIT license permits commercial and private use with minimal restrictions, making it suitable for most projects.

Quickstart

pip install mixpeek

import os
import mixpeek
from mixpeek.rest import ApiException

configuration = mixpeek.Configuration(
    access_token=os.environ["BEARER_TOKEN"]
)

with mixpeek.ApiClient(configuration) as api_client:
    api_instance = mixpeek.AccountApi(api_client)
    response = api_instance.whoami_me()
    print(response)

Requires Python 3.9 or later and a valid Mixpeek API Bearer token in the BEARER_TOKEN environment variable.

Verify before relying

  • Whether the auto-generated client maintains backward compatibility across API versions
  • Performance characteristics when handling large result sets or concurrent requests
  • Rate limiting behavior and retry strategies built into the client

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies 4 — urllib3, python-dateutil, pydantic, typing-extensions
Maintenance actively maintained — 0 days since the last release
First released
Downloads 80,972/month — #14,259 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: mixpeek-1.3.351-py3-none-any.whl

Keywords: OpenAPI, OpenAPI-Generator, Mixpeek API

Tags

mixpeek api clientopenapi python clientdata processing apiretrieval api clientagent sessions apialerts management apianalytics api client
api-clientopenapi-generated

More WWW/HTTP packages