openapi: 3.0.0 info: title: TensorFlow.js Social Media MCP Server version: 1.0.0 x-guidance: TensorFlow.js Social MCP resource server. 168 ML analytics tools, each payable via x402 (Solana devnet USDC). POST to /api/v1/tools/{name}/sync with an x402 payment; unauthenticated calls receive an HTTP 402 challenge. paths: /tools/analyze-image: post: summary: MobileNet Image Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/analyze-image' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Takes an image URL (imageUrl) and runs it through a pre-trained MobileNet model to classify visual content and detect high-level concepts/objects. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/detect-objects: post: summary: COCO-SSD Object Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/detect-objects' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Identifies and localizes common objects within an image (imageUrl) using a COCO-SSD object detection model. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/detect-faces: post: summary: Facial Feature & Demographic Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/detect-faces' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Detects faces in an image (imageUrl) and infers estimated attributes such as age, gender, and emotion/expressions. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/classify-image: post: summary: Custom Label Image Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/classify-image' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Evaluates an image (imageUrl) against a caller-provided list of custom candidate categories (labels). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/analyze-text: post: summary: General NLP Text Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/analyze-text' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Processes a block of input text to extract syntactic structures, key terms, and textual characteristics. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/extract-keywords: post: summary: ML Keyword Extraction requestBody: content: application/json: schema: $ref: '#/components/schemas/extract-keywords' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Extracts the most salient keywords and keyphrases from the input text, with an optional target count (numKeywords). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/detect-sentiment: post: summary: Text Sentiment Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/detect-sentiment' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Evaluates the emotional tone of the provided text to classify it as positive, negative, or neutral along with a confidence score. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/detect-toxicity: post: summary: Toxicity & Offensiveness Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/detect-toxicity' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Checks the input text for toxicity, harassment, obscenities, insults, or offensive language. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/embed-text: post: summary: Text Embedding Generation requestBody: content: application/json: schema: $ref: '#/components/schemas/embed-text' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Converts the input text into a dense vector embedding suitable for similarity search or semantic matching. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/answer-question: post: summary: Extractive Question Answering requestBody: content: application/json: schema: $ref: '#/components/schemas/answer-question' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Extracts a concise answer to a user query (question) based exclusively on the provided reference passage (context). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-trend: post: summary: Trend Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-trend' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Analyzes a series of chronological numeric data points (dataPoints) to identify the directional trend (e.g., upward, downward, flat). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/forecast-data: post: summary: Time Series Forecasting requestBody: content: application/json: schema: $ref: '#/components/schemas/forecast-data' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Projects future values across a specified number of intervals (periods) using historical numeric data points (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/detect-anomalies: post: summary: Outlier & Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/detect-anomalies' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Scans a sequence of numeric data points (dataPoints) to flag statistical anomalies or outlier spikes/drops. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/cluster-data: post: summary: K-Means Data Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/cluster-data' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Partitions multi-dimensional data vectors (dataPoints) into a user-specified number of distinct groups (k). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/reduce-dimensions: post: summary: PCA Dimensionality Reduction requestBody: content: application/json: schema: $ref: '#/components/schemas/reduce-dimensions' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Applies Principal Component Analysis (PCA) on high-dimensional vectors (dataPoints) to project them into fewer target dimensions. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/regression: post: summary: Neural Network Regression requestBody: content: application/json: schema: $ref: '#/components/schemas/regression' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Fits a regression neural network on continuous numeric coordinates (dataPoints) to model relationships and output predictions. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/train-model: post: summary: K-Nearest Neighbors (KNN) Model Training requestBody: content: application/json: schema: $ref: '#/components/schemas/train-model' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Trains an on-the-fly KNN classification/regression model given an array of input features, corresponding labels, and training epochs. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/ab-test: post: summary: A/B Test Statistical Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/ab-test' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Compares conversion or metric performance between two sample groups (groupA and groupB) to evaluate statistical significance. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/analyze-youtube-thumbnails: post: summary: Channel Thumbnail Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/analyze-youtube-thumbnails' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Analyzes a list of thumbnail image URLs (imageUrls) to evaluate visual appeal, composition, and expected engagement. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/classify-youtube-content: post: summary: Video Content Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/classify-youtube-content' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Categorizes YouTube titles/descriptions (texts) into video genres (e.g., tutorial, gaming, vlog). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-youtube-views: post: summary: YouTube View Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-youtube-views' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Forecasts view counts using metadata features (title length, description length, word count, likes, comments, and presence of emojis or numbers). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/youtube-comment-sentiment: post: summary: YouTube Comment Sentiment Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/youtube-comment-sentiment' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Evaluates viewer sentiment across a list of YouTube comment strings (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/youtube-channel-keywords: post: summary: Channel Keyword Extraction requestBody: content: application/json: schema: $ref: '#/components/schemas/youtube-channel-keywords' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Discovers high-traffic keywords and search terms from a collection of channel video texts (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/youtube-trend-detection: post: summary: Channel Performance Trend Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/youtube-trend-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Detects growth or deceleration trends across historic YouTube metrics (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/youtube-forecast: post: summary: YouTube Channel Growth Forecasting requestBody: content: application/json: schema: $ref: '#/components/schemas/youtube-forecast' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Projects future YouTube subscriber or view growth from historical metric sequences (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/youtube-anomaly-detection: post: summary: YouTube View Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/youtube-anomaly-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Flags sudden spikes or drops in view history (dataPoints) that deviate from expected channel baseline patterns. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/youtube-thumbnail-comparison: post: summary: YouTube Thumbnail A/B Comparison requestBody: content: application/json: schema: $ref: '#/components/schemas/youtube-thumbnail-comparison' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Compares two thumbnail image URLs (imageUrl1, imageUrl2) to evaluate visual differences and suggest the more engaging option. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/youtube-topic-clustering: post: summary: YouTube Video Topic Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/youtube-topic-clustering' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Clusters video titles/transcripts (texts) into thematic groupings using semantic similarity. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/analyze-instagram-images: post: summary: Instagram Feed Image Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/analyze-instagram-images' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Examines a batch of post images (imageUrls) to evaluate aesthetic consistency, dominant objects, and quality. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-instagram-engagement: post: summary: Instagram Post Engagement Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-instagram-engagement' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Predicts post engagement scores based on caption length, hashtag count, emoji count, and baseline interaction metrics (likes, comments, shares). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/classify-instagram-content: post: summary: Instagram Content Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/classify-instagram-content' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Categorizes Instagram post caption text into thematic niches (e.g., fitness, lifestyle, travel, business). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/instagram-caption-sentiment: post: summary: Instagram Caption Sentiment Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/instagram-caption-sentiment' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Detects the sentiment and brand tone conveyed in an Instagram caption text. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/instagram-hashtag-extraction: post: summary: Instagram Hashtag Discovery requestBody: content: application/json: schema: $ref: '#/components/schemas/instagram-hashtag-extraction' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Analyzes post strings (texts) to extract relevant existing hashtags or recommend high-engagement topical tags. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/instagram-visual-trends: post: summary: Visual Trend Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/instagram-visual-trends' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Analyzes a series of image URLs (imageUrls) over time to detect shifts in visual style, filters, or aesthetic trends. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/instagram-follower-forecast: post: summary: Instagram Follower Growth Forecast requestBody: content: application/json: schema: $ref: '#/components/schemas/instagram-follower-forecast' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Projects future Instagram follower counts based on historical follower logs (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/instagram-anomaly-detection: post: summary: Instagram Engagement Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/instagram-anomaly-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Pinpoints anomalous spikes or dips in historic post interaction counts (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/instagram-post-comparison: post: summary: Visual Post Comparison requestBody: content: application/json: schema: $ref: '#/components/schemas/instagram-post-comparison' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Compares two Instagram post images (imageUrl1, imageUrl2) for visual similarity, composition, and aesthetic quality. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/instagram-content-clustering: post: summary: Instagram Content Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/instagram-content-clustering' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Groups a collection of post captions (texts) into distinct thematic pillars. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/analyze-tiktok-thumbnails: post: summary: TikTok Video Cover Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/analyze-tiktok-thumbnails' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Evaluates a series of TikTok video cover thumbnails (imageUrls) for hook potential and visual clarity. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-tiktok-virality: post: summary: TikTok Virality Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-tiktok-virality' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Estimates viral potential based on video title, description, duration, hashtag/emoji count, views, likes, comments, and shares. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/classify-tiktok-content: post: summary: TikTok Content Categorization requestBody: content: application/json: schema: $ref: '#/components/schemas/classify-tiktok-content' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Classifies a set of TikTok captions or transcripts (texts) into video categories (e.g., comedy, life-hack, dance, review). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/tiktok-content-sentiment: post: summary: TikTok Content Sentiment Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/tiktok-content-sentiment' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Measures sentiment across TikTok caption and video transcript strings (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/tiktok-trending-topics: post: summary: TikTok Trending Topic Extraction requestBody: content: application/json: schema: $ref: '#/components/schemas/tiktok-trending-topics' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Analyzes current video captions (texts) to identify emerging viral topics and trending concepts. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/tiktok-view-patterns: post: summary: TikTok View Pattern Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/tiktok-view-patterns' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Identifies cyclical or plateau patterns within historic video view counts (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/tiktok-follower-forecast: post: summary: TikTok Follower Growth Forecast requestBody: content: application/json: schema: $ref: '#/components/schemas/tiktok-follower-forecast' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Predicts future follower trajectory using historic account follower totals (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/tiktok-anomaly-detection: post: summary: TikTok Engagement Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/tiktok-anomaly-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Detects irregular view or engagement surges and drops across video metric timelines (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/tiktok-thumbnail-comparison: post: summary: TikTok Thumbnail Comparison requestBody: content: application/json: schema: $ref: '#/components/schemas/tiktok-thumbnail-comparison' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Compares two video cover images (imageUrl1, imageUrl2) to evaluate framing and clickability. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/tiktok-content-clustering: post: summary: TikTok Content Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/tiktok-content-clustering' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Partitions video caption/concept texts (texts) into cohesive sub-genre clusters. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/twitter-content-keywords: post: summary: Tweet Keyword Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/twitter-content-keywords' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Analyzes a collection of tweets (texts) to pull out prominent keywords, acronyms, and buzzwords. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-twitter-engagement: post: summary: Tweet Engagement Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-twitter-engagement' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Forecasts retweets and likes based on character count, links, mentions, hashtags, question marks, and initial engagement. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/classify-twitter-topics: post: summary: Tweet Topic Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/classify-twitter-topics' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Categorizes tweet messages (texts) into standard conversational topics (e.g., tech, politics, sports, entertainment). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/twitter-toxicity-detection: post: summary: Tweet Toxicity Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/twitter-toxicity-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Detects abusive, hostile, or toxic commentary within tweet strings (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/twitter-sentiment-analysis: post: summary: Tweet Sentiment Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/twitter-sentiment-analysis' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Gauges community sentiment (positive, negative, neutral) across a collection of tweets (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/twitter-keyword-extraction: post: summary: Tweet Keyword Extraction requestBody: content: application/json: schema: $ref: '#/components/schemas/twitter-keyword-extraction' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Extracts key terms and phrases from a set of tweets (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/twitter-follower-forecast: post: summary: Twitter Follower Forecasting requestBody: content: application/json: schema: $ref: '#/components/schemas/twitter-follower-forecast' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Predicts follower growth over future time periods based on historical follower logs (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/twitter-anomaly-detection: post: summary: Twitter Engagement Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/twitter-anomaly-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Identifies statistical outliers or engagement abnormalities across time-series tweet interaction data (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/twitter-tweet-comparison: post: summary: Tweet Similarity Comparison requestBody: content: application/json: schema: $ref: '#/components/schemas/twitter-tweet-comparison' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Compares two tweet strings (text1, text2) for semantic similarity, style, and tone. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/twitter-topic-clustering: post: summary: Tweet Topic Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/twitter-topic-clustering' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Discovers thematic discussion clusters across a broad dataset of tweets (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/analyze-facebook-content: post: summary: Facebook Post Content Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/analyze-facebook-content' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Analyzes the complete post context including the written message (message) and optional image URL (imageUrl). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-facebook-engagement: post: summary: Facebook Engagement Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-facebook-engagement' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Predicts reactions, comments, and shares using post parameters (message length, word count, links, hashtags, emojis, impressions). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/classify-facebook-topics: post: summary: Facebook Topic Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/classify-facebook-topics' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Classifies Facebook post texts (texts) into business, news, personal, community, or promotional topics. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/facebook-comment-sentiment: post: summary: Facebook Comment Sentiment Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/facebook-comment-sentiment' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Evaluates the sentiment score and tone of a Facebook post comment (text). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/facebook-post-keywords: post: summary: Post Keyword Extraction requestBody: content: application/json: schema: $ref: '#/components/schemas/facebook-post-keywords' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Extracts essential keywords and recurring themes from a list of post captions (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/facebook-posting-trends: post: summary: Posting Trend Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/facebook-posting-trends' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Analyzes cadence and historic posting frequency (dataPoints) to determine whether page posting velocity is rising or falling. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/facebook-growth-forecast: post: summary: Facebook Page Growth Forecasting requestBody: content: application/json: schema: $ref: '#/components/schemas/facebook-growth-forecast' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Forecasts future fan/page follower counts based on historical data series (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/facebook-anomaly-detection: post: summary: Facebook Engagement Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/facebook-anomaly-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Identifies unusual spikes or drops in page reach or engagement data (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/facebook-visual-comparison: post: summary: Visual Comparison for Posts requestBody: content: application/json: schema: $ref: '#/components/schemas/facebook-visual-comparison' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Compares two post graphic assets (imageUrl1, imageUrl2) to evaluate visual similarities. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/facebook-content-clustering: post: summary: Content Pillar Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/facebook-content-clustering' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Groups Facebook post messages (texts) into distinct category clusters. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/discord-sentiment-analysis: post: summary: Discord Message Sentiment Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/discord-sentiment-analysis' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Determines member sentiment and community mood across chat messages (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/discord-toxicity-detection: post: summary: Discord Toxicity Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/discord-toxicity-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Flags harassment, toxicity, or violation-prone language across server chat messages (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-discord-engagement: post: summary: Discord Engagement Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-discord-engagement' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Predicts message engagement (reactions and replies) based on message length, emojis, and mentions. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/classify-discord-topics: post: summary: Discord Topic Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/classify-discord-topics' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Categorizes channel conversations (texts) into discussion topics (e.g., support, gaming, off-topic). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/discord-keyword-extraction: post: summary: Discord Keyword Extraction requestBody: content: application/json: schema: $ref: '#/components/schemas/discord-keyword-extraction' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Extracts common keywords and slang terms actively used across channel message histories (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/discord-activity-patterns: post: summary: Server Activity Pattern Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/discord-activity-patterns' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Analyzes historical message frequency (dataPoints) to identify peak usage windows and cyclical lulls. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/discord-growth-forecast: post: summary: Discord Member Growth Forecast requestBody: content: application/json: schema: $ref: '#/components/schemas/discord-growth-forecast' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Projects future member growth numbers using historic member count logs (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/discord-anomaly-detection: post: summary: Discord Server Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/discord-anomaly-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Detects irregular activity spikes (such as raid events or unexpected dormancy) within message volume data (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/discord-channel-comparison: post: summary: Discord Channel Comparison requestBody: content: application/json: schema: $ref: '#/components/schemas/discord-channel-comparison' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Compares the conversation style and message content between two separate channels (texts1 vs texts2). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/discord-member-clustering: post: summary: Member Activity Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/discord-member-clustering' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Segments community members into activity cohorts (e.g., lurkers, power users) based on message count, reaction count, and active days. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/analyze-twitch-content: post: summary: Stream Content Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/analyze-twitch-content' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Evaluates stream titles, tags, and descriptive markers (texts) to gauge stream focus and appeal. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-twitch-viewers: post: summary: Twitch Viewer Count Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-twitch-viewers' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Estimates expected concurrent viewership based on stream title length, game popularity score, broadcast duration, and follower count. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/classify-twitch-games: post: summary: Twitch Game & Content Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/classify-twitch-games' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Classifies stream descriptions (texts) into game genres (e.g., FPS, MOBA, Just Chatting). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/twitch-chat-sentiment: post: summary: Twitch Chat Sentiment Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/twitch-chat-sentiment' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Computes real-time viewer sentiment from a stream's chat log entries (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/twitch-keyword-extraction: post: summary: Twitch Keyword & Emote Extraction requestBody: content: application/json: schema: $ref: '#/components/schemas/twitch-keyword-extraction' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Extracts high-frequency keywords, meme terms, and emote references from chat or stream logs (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/twitch-viewer-trends: post: summary: Viewer Trend Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/twitch-viewer-trends' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Determines whether concurrent viewership is trending up, stabilizing, or dropping from timeline metrics (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/twitch-growth-forecast: post: summary: Channel Growth Forecast requestBody: content: application/json: schema: $ref: '#/components/schemas/twitch-growth-forecast' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Forecasts channel growth (views or followers) based on historical time-series entries (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/twitch-anomaly-detection: post: summary: Viewer Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/twitch-anomaly-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Detects abnormal dips or spikes in viewer count (dataPoints), such as raids or viewer drop-offs. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/twitch-clip-comparison: post: summary: Twitch Clip Comparison requestBody: content: application/json: schema: $ref: '#/components/schemas/twitch-clip-comparison' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Compares metadata/transcription of two clips (text1, text2) for topical or tone similarity. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/twitch-stream-clustering: post: summary: Stream Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/twitch-stream-clustering' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Groups streams into content and format clusters using descriptive stream texts (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/reddit-sentiment-analysis: post: summary: Reddit Post & Comment Sentiment Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/reddit-sentiment-analysis' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Analyzes community sentiment across Reddit submissions or comments (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/reddit-toxicity-detection: post: summary: Reddit Toxicity Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/reddit-toxicity-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Detects hostile, toxic, or subreddit-rule-violating comments/posts (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-reddit-engagement: post: summary: Reddit Post Engagement Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-reddit-engagement' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Predicts upvote and comment performance using title length, body length, upvote ratio, comment counts, and awards. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/classify-reddit-topics: post: summary: Reddit Topic Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/classify-reddit-topics' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Categorizes Reddit submission texts (texts) into topical subjects and subreddit themes. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/reddit-keyword-extraction: post: summary: Reddit Keyword Extraction requestBody: content: application/json: schema: $ref: '#/components/schemas/reddit-keyword-extraction' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Extracts dominant keywords, jargon, and common talking points from Reddit discussions (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/reddit-trend-detection: post: summary: Subreddit Trend Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/reddit-trend-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Analyzes chronological score or activity metrics (dataPoints) to detect rising discussions or declining trends. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/reddit-growth-forecast: post: summary: Subreddit Subscriber Forecast requestBody: content: application/json: schema: $ref: '#/components/schemas/reddit-growth-forecast' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Forecasts subscriber or active member count trajectory from historical records (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/reddit-anomaly-detection: post: summary: Reddit Engagement Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/reddit-anomaly-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Identifies unexpected engagement anomalies or brigading spikes in metric streams (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/reddit-post-comparison: post: summary: Reddit Post Comparison requestBody: content: application/json: schema: $ref: '#/components/schemas/reddit-post-comparison' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Compares the text content, formatting, and angle of two posts (text1, text2). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/reddit-community-clustering: post: summary: Community Post Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/reddit-community-clustering' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Groups community submissions (texts) into distinct topical clusters to identify sub-communities. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/linkedin-sentiment-analysis: post: summary: LinkedIn Post Sentiment Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/linkedin-sentiment-analysis' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Analyzes professional tone and positive/negative sentiment across LinkedIn post bodies (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-linkedin-engagement: post: summary: LinkedIn Engagement Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-linkedin-engagement' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Predicts post engagement (likes, comments) using post length, hashtags, external links, image count, and initial reactions. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/classify-linkedin-topics: post: summary: LinkedIn Topic Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/classify-linkedin-topics' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Categorizes post text (texts) into professional domains (e.g., leadership, hiring, career advice, tech). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/linkedin-keyword-extraction: post: summary: LinkedIn Keyword Extraction requestBody: content: application/json: schema: $ref: '#/components/schemas/linkedin-keyword-extraction' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Extracts industry-specific terminology, skills, and business buzzwords from post updates (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/linkedin-trend-detection: post: summary: LinkedIn Trend Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/linkedin-trend-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Evaluates whether engagement on a company page or profile is trending upward or downward over historical series (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/linkedin-growth-forecast: post: summary: LinkedIn Follower Growth Forecast requestBody: content: application/json: schema: $ref: '#/components/schemas/linkedin-growth-forecast' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Forecasts future follower growth from historical page follower totals (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/linkedin-anomaly-detection: post: summary: LinkedIn Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/linkedin-anomaly-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Flags unusual spikes or drop-offs in post impressions or interactions (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/linkedin-post-comparison: post: summary: Post Copy Comparison requestBody: content: application/json: schema: $ref: '#/components/schemas/linkedin-post-comparison' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Compares two LinkedIn updates (text1, text2) for professional framing, length, and style. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/linkedin-content-clustering: post: summary: Professional Content Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/linkedin-content-clustering' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Groups a set of professional updates (texts) into thematic content categories. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/linkedin-audience-segmentation: post: summary: B2B Audience Segmentation requestBody: content: application/json: schema: $ref: '#/components/schemas/linkedin-audience-segmentation' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Classifies and segments audience segments based on industry, seniority level, and company size attributes. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/threads-sentiment-analysis: post: summary: Threads Sentiment Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/threads-sentiment-analysis' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Evaluates the sentiment score of short-form conversational posts (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/threads-toxicity-detection: post: summary: Threads Toxicity Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/threads-toxicity-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Flags inflammatory or toxic posts within Threads discussions (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-threads-engagement: post: summary: Threads Engagement Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-threads-engagement' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Estimates expected replies and likes based on character count, emoji presence, and early interactions. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/classify-threads-topics: post: summary: Threads Topic Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/classify-threads-topics' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Categorizes short-form Threads posts (texts) into topical categories. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/threads-keyword-extraction: post: summary: Threads Keyword Extraction requestBody: content: application/json: schema: $ref: '#/components/schemas/threads-keyword-extraction' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Pulls trending keywords and conversational tags from a list of post bodies (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/threads-trend-detection: post: summary: Threads Trend Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/threads-trend-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Identifies positive or negative momentum across time-series Threads metrics (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/threads-growth-forecast: post: summary: Threads Follower Growth Forecast requestBody: content: application/json: schema: $ref: '#/components/schemas/threads-growth-forecast' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Projects future follower totals based on past performance logs (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/threads-anomaly-detection: post: summary: Threads Engagement Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/threads-anomaly-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Identifies statistical outliers in Threads interaction metrics (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/threads-post-comparison: post: summary: Threads Post Comparison requestBody: content: application/json: schema: $ref: '#/components/schemas/threads-post-comparison' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Evaluates textual similarity and phrasing between two short posts (text1, text2). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/threads-content-clustering: post: summary: Threads Content Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/threads-content-clustering' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Groups conversational updates (texts) into thematic discussion threads. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/bluesky-sentiment-analysis: post: summary: Bluesky Sentiment Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/bluesky-sentiment-analysis' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Gauges community sentiment across posts published on the AT Protocol / Bluesky (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/bluesky-toxicity-detection: post: summary: Bluesky Toxicity Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/bluesky-toxicity-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Analyzes Bluesky post strings (texts) to identify toxic or abusive content. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-bluesky-engagement: post: summary: Bluesky Engagement Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-bluesky-engagement' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Forecasts reposts, likes, and replies based on post length, word count, and engagement baseline. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/classify-bluesky-topics: post: summary: Bluesky Topic Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/classify-bluesky-topics' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Classifies Bluesky skeletal feed posts (texts) into interest categories. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/bluesky-keyword-extraction: post: summary: Bluesky Keyword Extraction requestBody: content: application/json: schema: $ref: '#/components/schemas/bluesky-keyword-extraction' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Extracts key terms and topics currently under discussion across feed posts (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/bluesky-trend-detection: post: summary: Bluesky Trend Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/bluesky-trend-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Detects velocity and direction of metric timelines (dataPoints) on Bluesky feeds. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/bluesky-growth-forecast: post: summary: Bluesky Growth Forecast requestBody: content: application/json: schema: $ref: '#/components/schemas/bluesky-growth-forecast' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Predicts follower or interaction trends using historic data points (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/bluesky-anomaly-detection: post: summary: Bluesky Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/bluesky-anomaly-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Finds sudden unusual fluctuations in post interactions or follow rates (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/bluesky-post-comparison: post: summary: Bluesky Post Comparison requestBody: content: application/json: schema: $ref: '#/components/schemas/bluesky-post-comparison' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Compares two post bodies (text1, text2) for similarity and message structure. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/bluesky-content-clustering: post: summary: Bluesky Content Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/bluesky-content-clustering' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Groups feeds and posts (texts) into distinct semantic topic clusters. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/mastodon-sentiment-analysis: post: summary: Mastodon Status Sentiment Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/mastodon-sentiment-analysis' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Evaluates the sentiment of federated statuses/toots (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/mastodon-toxicity-detection: post: summary: Mastodon Toxicity Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/mastodon-toxicity-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Scans decentralized statuses (texts) for offensive language or toxicity. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-mastodon-engagement: post: summary: Mastodon Engagement Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-mastodon-engagement' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Predicts boost, favorite, and reply activity based on status length and initial counts. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/classify-mastodon-topics: post: summary: Mastodon Topic Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/classify-mastodon-topics' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Classifies fediverse statuses (texts) into subject categories (e.g., FOSS, privacy, news). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/mastodon-keyword-extraction: post: summary: Mastodon Keyword Extraction requestBody: content: application/json: schema: $ref: '#/components/schemas/mastodon-keyword-extraction' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Extracts prominent keywords and terminology from federated post texts (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/mastodon-trend-detection: post: summary: Mastodon Trend Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/mastodon-trend-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Identifies trends across chronological engagement metrics (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/mastodon-growth-forecast: post: summary: Mastodon Growth Forecast requestBody: content: application/json: schema: $ref: '#/components/schemas/mastodon-growth-forecast' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Forecasts account or instance follower growth based on historical data series (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/mastodon-anomaly-detection: post: summary: Mastodon Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/mastodon-anomaly-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Spots irregular traffic spikes or federation drops from time-series metrics (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/mastodon-status-comparison: post: summary: Mastodon Status Comparison requestBody: content: application/json: schema: $ref: '#/components/schemas/mastodon-status-comparison' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Compares two federated status texts (text1, text2) for semantic parity. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/mastodon-content-clustering: post: summary: Mastodon Content Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/mastodon-content-clustering' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Partitions status texts (texts) into thematic fediverse discussion clusters. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/github-issue-sentiment: post: summary: GitHub Issue Sentiment Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/github-issue-sentiment' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Gauges developer sentiment and urgency across issue bodies or pull request descriptions (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/classify-github-issues: post: summary: GitHub Issue Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/classify-github-issues' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Automatically tags and categorizes issues (texts) into types like bug report, feature request, documentation, or question. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/github-keyword-extraction: post: summary: Repository & Issue Keyword Extraction requestBody: content: application/json: schema: $ref: '#/components/schemas/github-keyword-extraction' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Extracts error codes, technical libraries, and key terms from issue reports (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/github-trend-detection: post: summary: Repo Trend Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/github-trend-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Evaluates star, fork, or issue resolution trends from time-series logs (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/github-growth-forecast: post: summary: GitHub Star/Traffic Forecast requestBody: content: application/json: schema: $ref: '#/components/schemas/github-growth-forecast' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Forecasts repository growth (stars, forks, or views) based on historic trend lines (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/github-anomaly-detection: post: summary: GitHub Activity Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/github-anomaly-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Flags unusual spikes or valleys in commit activity, star counts, or issue creations (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/github-repo-comparison: post: summary: GitHub Repository Comparison requestBody: content: application/json: schema: $ref: '#/components/schemas/github-repo-comparison' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Compares documentation/readme strings between two projects (texts1 vs texts2) to evaluate functional overlap. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/github-issue-clustering: post: summary: Issue Report Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/github-issue-clustering' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Groups issue titles and descriptions (texts) into clusters to highlight duplicate bugs and related feature sets. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-github-issue-engagement: post: summary: GitHub Issue Engagement Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-github-issue-engagement' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Predicts developer response and discussion volume based on issue title length, body length, labels, and comment count. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/github-contributor-patterns: post: summary: Contributor Pattern Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/github-contributor-patterns' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Evaluates contributor impact and rhythm using commit count, additions, deletions, and active days. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/spotify-track-sentiment: post: summary: Spotify Track Mood & Sentiment Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/spotify-track-sentiment' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Derives musical mood (valence, emotional tone) from audio feature vectors (danceability, energy, valence, tempo, loudness, etc.). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/spotify-genre-classification: post: summary: Audio Feature Genre Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/spotify-genre-classification' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Classifies audio characteristics (danceability, energy, tempo, acousticness, etc.) into musical genres. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-spotify-popularity: post: summary: Spotify Popularity Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-spotify-popularity' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Predicts track popularity score from acoustic and production features (tempo, energy, danceability, loudness). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/spotify-audio-keywords: post: summary: Audio Descriptor Keyword Extraction requestBody: content: application/json: schema: $ref: '#/components/schemas/spotify-audio-keywords' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Generates descriptive tags and mood keywords (e.g., "upbeat", "acoustic", "melancholic") based on acoustic audio parameters. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/spotify-trend-detection: post: summary: Music Streaming Trend Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/spotify-trend-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Analyzes stream counts or chart position vectors (dataPoints) to determine whether a track is rising or declining. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/spotify-growth-forecast: post: summary: Spotify Stream & Follower Growth Forecast requestBody: content: application/json: schema: $ref: '#/components/schemas/spotify-growth-forecast' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Projects future artist follower or monthly listener metrics based on historical logs (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/spotify-anomaly-detection: post: summary: Streaming Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/spotify-anomaly-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Identifies unnatural spikes or drops in daily play counts or playlist saves (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/spotify-track-comparison: post: summary: Audio Track Comparison requestBody: content: application/json: schema: $ref: '#/components/schemas/spotify-track-comparison' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Compares the complete audio feature profiles of two individual tracks (track1, track2) to measure musical similarity. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/spotify-playlist-clustering: post: summary: Playlist Track Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/spotify-playlist-clustering' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Groups a collection of track feature objects (tracks) into cohesive mood or genre clusters. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/spotify-audio-analysis: post: summary: Deep Audio Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/spotify-audio-analysis' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Performs in-depth feature modeling on core acoustic metrics (danceability, energy, valence, tempo, loudness, speechiness, liveness). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/analyze-pinterest-images: post: summary: Pin Image Aesthetic Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/analyze-pinterest-images' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Evaluates pin visuals (imageUrls) for visual composition, vertical orientation, and aesthetic appeal. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/predict-pinterest-engagement: post: summary: Pin Engagement Prediction requestBody: content: application/json: schema: $ref: '#/components/schemas/predict-pinterest-engagement' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Forecasts pin saves and clicks using title length, description length, external links, and board follower reach. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/classify-pinterest-content: post: summary: Pin Content Classification requestBody: content: application/json: schema: $ref: '#/components/schemas/classify-pinterest-content' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Categorizes pin text (text) into Pinterest categories (e.g., home decor, recipes, fashion, DIY). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/pinterest-keyword-extraction: post: summary: Pin Keyword Extraction requestBody: content: application/json: schema: $ref: '#/components/schemas/pinterest-keyword-extraction' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Extracts search-intent keywords and SEO tags from pin titles/descriptions (texts). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/pinterest-trend-detection: post: summary: Pinterest Search & Save Trend Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/pinterest-trend-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Detects seasonal spikes or declining interest trends from pin engagement time-series data (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/pinterest-growth-forecast: post: summary: Pinterest Follower Growth Forecast requestBody: content: application/json: schema: $ref: '#/components/schemas/pinterest-growth-forecast' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Projects future board or profile follower growth using past historical metrics (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/pinterest-anomaly-detection: post: summary: Pin Engagement Anomaly Detection requestBody: content: application/json: schema: $ref: '#/components/schemas/pinterest-anomaly-detection' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Identifies statistical outliers or viral surges in historic pin metric streams (dataPoints). x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/pinterest-pin-comparison: post: summary: Pin Copy Comparison requestBody: content: application/json: schema: $ref: '#/components/schemas/pinterest-pin-comparison' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Compares the text titles and descriptions of two pins (text1, text2) for search relevance and keyword overlap. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/pinterest-board-clustering: post: summary: Pin Board Clustering requestBody: content: application/json: schema: $ref: '#/components/schemas/pinterest-board-clustering' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Clusters Pinterest board objects (boards) into overarching aesthetic or niche lifestyle groupings. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' /tools/pinterest-audience-analysis: post: summary: Pinterest Demographic & Interest Analysis requestBody: content: application/json: schema: $ref: '#/components/schemas/pinterest-audience-analysis' responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/SentimentResponse' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '402': description: Payment Required - x402 challenge headers: Payment-Required: description: Base64-encoded x402 PaymentRequired object schema: type: string '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' description: Analyzes audience target segments using age range (ageRange), gender, location, and interest tags. x-payment-info: protocols: - network: solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp payTo: 9JsHkfFkvqiJbRZyEPkY11j6V14Ex11K6fAb4Lyf3a1x scheme: exact price: mode: fixed currency: USD amount: value: 0.05 currency: USD atomic: '50000' components: schemas: SentimentResponse: type: object properties: score: type: number sentiment: type: string required: - score - sentiment AnomalyDetectionResponse: type: object properties: value: type: number isAnomaly: type: boolean error: type: number required: - value - isAnomaly TrendDetectionResponse: type: object properties: trend: type: string averageChange: type: number required: - trend EngagementPredictionResponse: type: object properties: engagementScore: type: number required: - engagementScore KeywordExtractionResponse: type: object properties: term: type: string score: type: number required: - term - score ErrorResponse: type: object properties: error: type: string code: type: string required: - error analyze-image: type: object properties: imageUrl: type: string required: - imageUrl detect-objects: type: object properties: imageUrl: type: string required: - imageUrl detect-faces: type: object properties: imageUrl: type: string required: - imageUrl classify-image: type: object properties: imageUrl: type: string labels: type: array items: type: string required: - imageUrl - labels analyze-text: type: object properties: text: type: string required: - text extract-keywords: type: object properties: text: type: string numKeywords: type: number required: - text detect-sentiment: type: object properties: text: type: string required: - text detect-toxicity: type: object properties: text: type: string required: - text embed-text: type: object properties: text: type: string required: - text answer-question: type: object properties: question: type: string context: type: string required: - question - context predict-trend: type: object properties: dataPoints: type: array items: type: number required: - dataPoints forecast-data: type: object properties: dataPoints: type: array items: type: number periods: type: number required: - dataPoints detect-anomalies: type: object properties: dataPoints: type: array items: type: number required: - dataPoints cluster-data: type: object properties: dataPoints: type: array k: type: number required: - dataPoints - k reduce-dimensions: type: object properties: dataPoints: type: array dimensions: type: number required: - dataPoints - dimensions regression: type: object properties: dataPoints: type: array required: - dataPoints train-model: type: object properties: features: type: array labels: type: array epochs: type: number required: - features - labels ab-test: type: object properties: groupA: type: array items: type: number groupB: type: array items: type: number required: - groupA - groupB analyze-youtube-thumbnails: type: object properties: imageUrls: type: array items: type: string required: - imageUrls classify-youtube-content: type: object properties: texts: type: array items: type: string required: - texts predict-youtube-views: type: object properties: titleLen: type: number descLen: type: number hasNumbers: type: boolean hasEmoji: type: boolean wordCount: type: number likes: type: number comments: type: number required: - titleLen - descLen - wordCount - likes - comments youtube-comment-sentiment: type: object properties: texts: type: array items: type: string required: - texts youtube-channel-keywords: type: object properties: texts: type: array items: type: string required: - texts youtube-trend-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints youtube-forecast: type: object properties: dataPoints: type: array items: type: number required: - dataPoints youtube-anomaly-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints youtube-thumbnail-comparison: type: object properties: imageUrl1: type: string imageUrl2: type: string required: - imageUrl1 - imageUrl2 youtube-topic-clustering: type: object properties: texts: type: array items: type: string required: - texts analyze-instagram-images: type: object properties: imageUrls: type: array items: type: string required: - imageUrls predict-instagram-engagement: type: object properties: captionLen: type: number hashtagCount: type: number emojiCount: type: number likes: type: number comments: type: number shares: type: number required: - captionLen - hashtagCount - likes - comments classify-instagram-content: type: object properties: text: type: string required: - text instagram-caption-sentiment: type: object properties: text: type: string required: - text instagram-hashtag-extraction: type: object properties: texts: type: array items: type: string required: - texts instagram-visual-trends: type: object properties: imageUrls: type: array items: type: string required: - imageUrls instagram-follower-forecast: type: object properties: dataPoints: type: array items: type: number required: - dataPoints instagram-anomaly-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints instagram-post-comparison: type: object properties: imageUrl1: type: string imageUrl2: type: string required: - imageUrl1 - imageUrl2 instagram-content-clustering: type: object properties: texts: type: array items: type: string required: - texts analyze-tiktok-thumbnails: type: object properties: imageUrls: type: array items: type: string required: - imageUrls predict-tiktok-virality: type: object properties: titleLen: type: number descLen: type: number duration: type: number hashtagCount: type: number emojiCount: type: number views: type: number likes: type: number comments: type: number shares: type: number required: - titleLen - duration - views - likes classify-tiktok-content: type: object properties: texts: type: array items: type: string required: - texts tiktok-content-sentiment: type: object properties: texts: type: array items: type: string required: - texts tiktok-trending-topics: type: object properties: texts: type: array items: type: string required: - texts tiktok-view-patterns: type: object properties: dataPoints: type: array items: type: number required: - dataPoints tiktok-follower-forecast: type: object properties: dataPoints: type: array items: type: number required: - dataPoints tiktok-anomaly-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints tiktok-thumbnail-comparison: type: object properties: imageUrl1: type: string imageUrl2: type: string required: - imageUrl1 - imageUrl2 tiktok-content-clustering: type: object properties: texts: type: array items: type: string required: - texts twitter-content-keywords: type: object properties: texts: type: array items: type: string required: - texts predict-twitter-engagement: type: object properties: textLen: type: number hashtagCount: type: number mentionCount: type: number linkCount: type: number questionCount: type: number exclamationCount: type: number likes: type: number retweets: type: number replies: type: number required: - textLen - likes - retweets classify-twitter-topics: type: object properties: texts: type: array items: type: string required: - texts twitter-toxicity-detection: type: object properties: texts: type: array items: type: string required: - texts twitter-sentiment-analysis: type: object properties: texts: type: array items: type: string required: - texts twitter-keyword-extraction: type: object properties: texts: type: array items: type: string required: - texts twitter-follower-forecast: type: object properties: dataPoints: type: array items: type: number required: - dataPoints twitter-anomaly-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints twitter-tweet-comparison: type: object properties: text1: type: string text2: type: string required: - text1 - text2 twitter-topic-clustering: type: object properties: texts: type: array items: type: string required: - texts analyze-facebook-content: type: object properties: message: type: string imageUrl: type: string required: - message predict-facebook-engagement: type: object properties: messageLen: type: number hashtagCount: type: number emojiCount: type: number linkCount: type: number wordCount: type: number impressions: type: number required: - messageLen - wordCount classify-facebook-topics: type: object properties: texts: type: array items: type: string required: - texts facebook-comment-sentiment: type: object properties: text: type: string required: - text facebook-post-keywords: type: object properties: texts: type: array items: type: string required: - texts facebook-posting-trends: type: object properties: dataPoints: type: array items: type: number required: - dataPoints facebook-growth-forecast: type: object properties: dataPoints: type: array items: type: number required: - dataPoints facebook-anomaly-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints facebook-visual-comparison: type: object properties: imageUrl1: type: string imageUrl2: type: string required: - imageUrl1 - imageUrl2 facebook-content-clustering: type: object properties: texts: type: array items: type: string required: - texts discord-sentiment-analysis: type: object properties: texts: type: array items: type: string required: - texts discord-toxicity-detection: type: object properties: texts: type: array items: type: string required: - texts predict-discord-engagement: type: object properties: messageLen: type: number emojiCount: type: number mentionCount: type: number reactionCount: type: number replyCount: type: number required: - messageLen classify-discord-topics: type: object properties: texts: type: array items: type: string required: - texts discord-keyword-extraction: type: object properties: texts: type: array items: type: string required: - texts discord-activity-patterns: type: object properties: dataPoints: type: array items: type: number required: - dataPoints discord-growth-forecast: type: object properties: dataPoints: type: array items: type: number required: - dataPoints discord-anomaly-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints discord-channel-comparison: type: object properties: texts1: type: array items: type: string texts2: type: array items: type: string required: - texts1 - texts2 discord-member-clustering: type: object properties: messageCount: type: number reactionCount: type: number activeDays: type: number required: - messageCount - reactionCount - activeDays analyze-twitch-content: type: object properties: texts: type: array items: type: string required: - texts predict-twitch-viewers: type: object properties: titleLen: type: number gamePopularity: type: number durationMinutes: type: number followerCount: type: number required: - titleLen - durationMinutes classify-twitch-games: type: object properties: texts: type: array items: type: string required: - texts twitch-chat-sentiment: type: object properties: texts: type: array items: type: string required: - texts twitch-keyword-extraction: type: object properties: texts: type: array items: type: string required: - texts twitch-viewer-trends: type: object properties: dataPoints: type: array items: type: number required: - dataPoints twitch-growth-forecast: type: object properties: dataPoints: type: array items: type: number required: - dataPoints twitch-anomaly-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints twitch-clip-comparison: type: object properties: text1: type: string text2: type: string required: - text1 - text2 twitch-stream-clustering: type: object properties: texts: type: array items: type: string required: - texts reddit-sentiment-analysis: type: object properties: texts: type: array items: type: string required: - texts reddit-toxicity-detection: type: object properties: texts: type: array items: type: string required: - texts predict-reddit-engagement: type: object properties: titleLen: type: number bodyLen: type: number upvoteRatio: type: number commentCount: type: number awards: type: number required: - titleLen - bodyLen classify-reddit-topics: type: object properties: texts: type: array items: type: string required: - texts reddit-keyword-extraction: type: object properties: texts: type: array items: type: string required: - texts reddit-trend-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints reddit-growth-forecast: type: object properties: dataPoints: type: array items: type: number required: - dataPoints reddit-anomaly-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints reddit-post-comparison: type: object properties: text1: type: string text2: type: string required: - text1 - text2 reddit-community-clustering: type: object properties: texts: type: array items: type: string required: - texts linkedin-sentiment-analysis: type: object properties: texts: type: array items: type: string required: - texts predict-linkedin-engagement: type: object properties: textLen: type: number hashtagCount: type: number linkCount: type: number imageCount: type: number commentCount: type: number likeCount: type: number required: - textLen classify-linkedin-topics: type: object properties: texts: type: array items: type: string required: - texts linkedin-keyword-extraction: type: object properties: texts: type: array items: type: string required: - texts linkedin-trend-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints linkedin-growth-forecast: type: object properties: dataPoints: type: array items: type: number required: - dataPoints linkedin-anomaly-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints linkedin-post-comparison: type: object properties: text1: type: string text2: type: string required: - text1 - text2 linkedin-content-clustering: type: object properties: texts: type: array items: type: string required: - texts linkedin-audience-segmentation: type: object properties: industry: type: string seniority: type: string companySize: type: string required: - industry threads-sentiment-analysis: type: object properties: texts: type: array items: type: string required: - texts threads-toxicity-detection: type: object properties: texts: type: array items: type: string required: - texts predict-threads-engagement: type: object properties: textLen: type: number emojiCount: type: number likeCount: type: number replyCount: type: number required: - textLen classify-threads-topics: type: object properties: texts: type: array items: type: string required: - texts threads-keyword-extraction: type: object properties: texts: type: array items: type: string required: - texts threads-trend-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints threads-growth-forecast: type: object properties: dataPoints: type: array items: type: number required: - dataPoints threads-anomaly-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints threads-post-comparison: type: object properties: text1: type: string text2: type: string required: - text1 - text2 threads-content-clustering: type: object properties: texts: type: array items: type: string required: - texts bluesky-sentiment-analysis: type: object properties: texts: type: array items: type: string required: - texts bluesky-toxicity-detection: type: object properties: texts: type: array items: type: string required: - texts predict-bluesky-engagement: type: object properties: textLen: type: number wordCount: type: number likeCount: type: number repostCount: type: number replyCount: type: number required: - textLen classify-bluesky-topics: type: object properties: texts: type: array items: type: string required: - texts bluesky-keyword-extraction: type: object properties: texts: type: array items: type: string required: - texts bluesky-trend-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints bluesky-growth-forecast: type: object properties: dataPoints: type: array items: type: number required: - dataPoints bluesky-anomaly-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints bluesky-post-comparison: type: object properties: text1: type: string text2: type: string required: - text1 - text2 bluesky-content-clustering: type: object properties: texts: type: array items: type: string required: - texts mastodon-sentiment-analysis: type: object properties: texts: type: array items: type: string required: - texts mastodon-toxicity-detection: type: object properties: texts: type: array items: type: string required: - texts predict-mastodon-engagement: type: object properties: textLen: type: number boostCount: type: number favouriteCount: type: number replyCount: type: number required: - textLen classify-mastodon-topics: type: object properties: texts: type: array items: type: string required: - texts mastodon-keyword-extraction: type: object properties: texts: type: array items: type: string required: - texts mastodon-trend-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints mastodon-growth-forecast: type: object properties: dataPoints: type: array items: type: number required: - dataPoints mastodon-anomaly-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints mastodon-status-comparison: type: object properties: text1: type: string text2: type: string required: - text1 - text2 mastodon-content-clustering: type: object properties: texts: type: array items: type: string required: - texts github-issue-sentiment: type: object properties: texts: type: array items: type: string required: - texts classify-github-issues: type: object properties: texts: type: array items: type: string required: - texts github-keyword-extraction: type: object properties: texts: type: array items: type: string required: - texts github-trend-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints github-growth-forecast: type: object properties: dataPoints: type: array items: type: number required: - dataPoints github-anomaly-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints github-repo-comparison: type: object properties: texts1: type: array items: type: string texts2: type: array items: type: string required: - texts1 - texts2 github-issue-clustering: type: object properties: texts: type: array items: type: string required: - texts predict-github-issue-engagement: type: object properties: titleLen: type: number bodyLen: type: number labelCount: type: number commentCount: type: number required: - titleLen - bodyLen github-contributor-patterns: type: object properties: commits: type: number additions: type: number deletions: type: number activeDays: type: number required: - commits - activeDays spotify-track-sentiment: type: object properties: danceability: type: number energy: type: number valence: type: number tempo: type: number loudness: type: number speechiness: type: number acousticness: type: number instrumentalness: type: number liveness: type: number durationMs: type: number required: - danceability - energy - valence - tempo spotify-genre-classification: type: object properties: danceability: type: number energy: type: number valence: type: number tempo: type: number loudness: type: number speechiness: type: number acousticness: type: number instrumentalness: type: number liveness: type: number required: - danceability - energy - valence - tempo predict-spotify-popularity: type: object properties: danceability: type: number energy: type: number valence: type: number tempo: type: number loudness: type: number speechiness: type: number acousticness: type: number instrumentalness: type: number liveness: type: number required: - danceability - energy - valence - tempo spotify-audio-keywords: type: object properties: danceability: type: number energy: type: number valence: type: number tempo: type: number loudness: type: number speechiness: type: number acousticness: type: number instrumentalness: type: number liveness: type: number required: - danceability - energy - valence - tempo spotify-trend-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints spotify-growth-forecast: type: object properties: dataPoints: type: array items: type: number required: - dataPoints spotify-anomaly-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints spotify-track-comparison: type: object properties: track1: type: object track2: type: object required: - track1 - track2 spotify-playlist-clustering: type: object properties: tracks: type: array items: type: object required: - tracks spotify-audio-analysis: type: object properties: danceability: type: number energy: type: number valence: type: number tempo: type: number loudness: type: number speechiness: type: number acousticness: type: number instrumentalness: type: number liveness: type: number required: - danceability - energy - valence - tempo analyze-pinterest-images: type: object properties: imageUrls: type: array items: type: string required: - imageUrls predict-pinterest-engagement: type: object properties: titleLen: type: number descLen: type: number linkCount: type: number boardFollowers: type: number required: - titleLen classify-pinterest-content: type: object properties: text: type: string required: - text pinterest-keyword-extraction: type: object properties: texts: type: array items: type: string required: - texts pinterest-trend-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints pinterest-growth-forecast: type: object properties: dataPoints: type: array items: type: number required: - dataPoints pinterest-anomaly-detection: type: object properties: dataPoints: type: array items: type: number required: - dataPoints pinterest-pin-comparison: type: object properties: text1: type: string text2: type: string required: - text1 - text2 pinterest-board-clustering: type: object properties: boards: type: array items: type: object required: - boards pinterest-audience-analysis: type: object properties: ageRange: type: string gender: type: string location: type: string interests: type: array items: type: string required: - ageRange