--- id: mixpeek version: "1.3.351" license: MIT license_treatment: permissive maintenance: active --- # mixpeek — Mixpeek API License: permissive · Maintenance: active · Downloads: 81.0K/mo ## 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 above — 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 pip install mixpeek uv add mixpeek 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_current - Install friction: low - Maintenance: active - Downloads: 81.0K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags mixpeek api client, openapi python client, data processing api, retrieval api client, agent sessions api, alerts management api, analytics api client, api-client, openapi-generated [View on SkillFed](https://skillfed.io/packages/mixpeek) · [View on PyPI](https://pypi.org/project/mixpeek/)