systemprompt-api 0.21.1

Axum-based HTTP server and API gateway for systemprompt.io AI governance infrastructure. Exposes governed agents, MCP, A2A, and admin endpoints with rate limiting and RBAC.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Trackable-link routes for content campaigns.
//!
//! Re-exports the redirect, generation, and analytics handlers along with their
//! request/response types.
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

mod handlers;
mod types;

pub use handlers::{
    generate_link_handler, get_campaign_performance_handler, get_content_journey_handler,
    get_link_clicks_handler, get_link_performance_handler, list_links_handler, redirect_handler,
};
pub use types::{AnalyticsQuery, GenerateLinkRequest, GenerateLinkResponse, ListLinksQuery};