https://app.reportdash.com/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "ReportDash Plugin",
"name_for_model": "ReportDash",
"description_for_human": "Cross channel reporting tool for Digital Marketers.",
"description_for_model": "Cross channel reporting tool for Digital Marketers. Blend data from multiple sources. Create Reports & Dashboards with ease.",
"auth": {
"type": "oauth",
"client_url": "https://app.reportdash.com/chatgpt/authorize",
"scope": "",
"authorization_url": "https://app.reportdash.com/api/client/oauth2/chatgpt/token",
"authorization_content_type": "application/json",
"verification_tokens": {
"openai": "reportdash-chatgpt-app-1-token"
}
},
"api": {
"type": "openapi",
"url": "https://app.reportdash.com/.well-known//openapi.json",
"is_user_authenticated": false
},
"logo_url": "https://storage.googleapis.com/reportdash-global/ReportDash-1024x1024.png",
"contact_email": "support@reportdash.com",
"legal_info_url": "https://www.reportdash.com/terms.html"
}
https://app.reportdash.com/.well-known//openapi.json
{
"openapi": "3.0.1",
"info": {
"title": "ReportDash ChatGPT Plugin",
"description": "Cross channel reporting tool for Digital Marketers. Blend data from multiple sources. Create Reports & Dashboards with ease.",
"version": "1.0.0"
},
"servers": [
{
"url": "https://app.reportdash.com",
"description": "Production Server 1"
},
{
"url": "https://api.reportdash.com",
"description": "Production Server 2"
},
{
"url": "http://192.168.64.9:8001",
"description": "Development Server 1"
}
],
"paths": {
"/api/client/chatgpt/app_1/v1/sources": {
"get": {
"tags": [
"Sources"
],
"servers": [
{
"url": "https://app.reportdash.com",
"description": "Production Server 1"
},
{
"url": "http://192.168.64.9:8001",
"description": "Development Server 1"
}
],
"security": [
{
"bearerAuth": []
}
],
"summary": "Get all Sources",
"description": "Get all the Sources linked by the User. Sources for example facebook_ads",
"responses": {
"200": {
"description": "A list of all sources",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/sources"
},
"example": {
"sources": [
{
"source_fields": [
{
"field_id": "campaign",
"field_name": "Campaign",
"field_type": "dimension",
"field_value_type": "string"
},
{
"field_id": "clicks",
"field_name": "Clicks",
"field_type": "metric",
"field_value_type": "integer"
}
],
"source_id": "facebook_ads:id1",
"source_name": "Facebook Ads Account Name 1",
"source_type": "facebook_ads"
},
{
"source_fields": [
{
"field_id": "campaign",
"field_name": "Campaign",
"field_type": "dimension",
"field_value_type": "string"
},
{
"field_id": "clicks",
"field_name": "Clicks",
"field_type": "metric",
"field_value_type": "integer"
}
],
"source_id": "facebook_ads:id2",
"source_name": "Facebook Ads Account Name 2",
"source_type": "facebook_ads"
}
]
}
}
}
},
"400": {
"description": "Authorization Errors",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/bearer_token_error"
}
}
}
}
}
}
},
"/api/client/chatgpt/app_1/v1/data": {
"post": {
"tags": [
"Sources"
],
"servers": [
{
"url": "https://api.reportdash.com",
"description": "Production Server 1"
},
{
"url": "http://192.168.64.9:8001",
"description": "Development Server 1"
}
],
"security": [
{
"bearerAuth": []
}
],
"summary": "Get Data from Source",
"description": "Get Data from a Source linked by the User. Sources for example facebook_ads",
"requestBody": {
"description": "Request Data Body",
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/get_widget_data_request_body"
},
"example": {
"source_id": "facebook_ads:ID1",
"source_fields": [
{
"field_id": "campaign_name"
},
{
"field_id": "clicks"
}
]
}
}
}
},
"responses": {
"200": {
"description": "Data from a Source",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/widget_data"
},
"example": {
"status": "SUCCESS",
"job_id": "JOB_ID",
"data": [
[
"C1",
1
],
[
"C2",
2
]
],
"source": {
"source_type": "facebook_ads",
"source_id": "facebook_ads:ID1",
"source_name": "Facebook Ads Account Name 1",
"source_fields": [
{
"field_id": "campaign_name",
"field_name": "Campaign Name",
"field_type": "dimension",
"field_value_type": "string"
},
{
"field_id": "clicks",
"field_name": "Clicks",
"field_type": "metric",
"field_value_type": "integer"
}
]
}
}
}
}
},
"400": {
"description": "Authorization and Data Load Errors",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/components/schemas/bearer_token_error"
},
{
"$ref": "#/components/schemas/widget_data_error"
}
]
}
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"bearer_token_error": {
"type": "object",
"properties": {
"error": {
"type": "string",
"enum": [
"BEARER_TOKEN_REQUIRED",
"INVALID_BEARER_TOKEN"
]
}
}
},
"widget_data_error": {
"type": "object",
"properties": {
"error": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"FAILED"
]
}
}
},
"source": {
"type": "object",
"properties": {
"source_id": {
"type": "string",
"description": "ID of the source"
},
"source_type": {
"type": "string",
"description": "Type of the source. facebook_ads, google_ads etc"
},
"source_name": {
"type": "string",
"description": "Name of the source"
},
"source_fields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"field_id": {
"type": "string",
"description": "ID of the field"
},
"field_name": {
"type": "string",
"description": "Name of the field"
},
"field_type": {
"type": "string",
"description": "Type of the field",
"enum": [
"dimension",
"metric"
]
},
"field_value_type": {
"type": "string",
"description": "Value Type of the field",
"enum": [
"string",
"integer",
"number"
]
}
}
}
}
}
},
"sources": {
"type": "object",
"properties": {
"sources": {
"type": "array",
"items": {
"$ref": "#/components/schemas/source"
}
}
}
},
"widget_data": {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"SUCCESS",
"FAILED"
]
},
"data": {
"type": "array",
"items": {
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"type": "number"
}
]
}
}
},
"source": {
"$ref": "#/components/schemas/source"
}
}
},
"get_widget_data_request_body": {
"type": "object",
"properties": {
"source_id": {
"type": "string",
"description": "ID of the source"
},
"source_fields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"field_id": {
"type": "string"
}
},
"required": [
"field_id"
]
}
}
},
"required": [
"source_id",
"source_fields"
]
}
},
"securitySchemes": {
"bearerAuth": {
"type": "http",
"scheme": "bearer",
"bearerFormat": "JWT"
}
}
}
}
Discover other plugins from the marketing category
Mrkter
Plugin for managing finance and marketing operation.
0 Comments

NeuralAudience
This plugin is designed to analyze the comments from a given YouTube video and generate a persona based on the content of those comments. It uses a combination of Google Cloud Translation API, TextBlob sentiment analysis, and OpenAI's GPT-3 API to achieve this. When the user submits a YouTube URL, the plugin extracts the video ID, retrieves the video comments, translates non-English comments, and analyzes their sentiment. It then combines the translated comments into a single string, truncating it if necessary. The comments are used as input to the GPT-3 API, which generates a persona based on the content and sentiment of the comments. The generated persona includes information on the general tone of the comments, key demographics of the commenters, their goals and interests, their ratings on the Big Five personality traits (openness, conscientiousness, extraversion, agreeableness, and neuroticism), their main pain points, their intent, and their overall sentiment on a scale from 0 to 10.
0 Comments

Avian
Connect to your business data - Google Analytics, Google Ads, Facebook Ads and more.
0 Comments

IMAI
IMAI is a platform that helps brands find influencers to promote their products, manage campaigns, and track performance.
0 Comments

Placid.app
A design assistant that creates marketing visuals from your templates.
0 Comments

PPC - StoreYa.com
Your personal assistance for automating advertising – Google Ads (AdWords) and Microsoft Ads (Bing).
0 Comments

VBOUT
Interact seamlessly with VBOUT's APIs using natural language. Need help? Request 'help' for a list of commands.
0 Comments

Competitor PPC Ads
Discover your competitors' best PPC ads by entering their website address.
0 Comments

CarYardBard
AI-Powered Car Sales Ad Generator for Australian Car Dealers.
0 Comments

Bramework
Boost SEO with in-depth analysis, including keyword insights on volume, ranking, and SERP.
0 Comments

Speedy Marketing
Marketing tool for your Shopify store, ecommerce website or any business. Write SEO blogs and social media content.
0 Comments

Keyword Explorer
Keyword Explorer provides popular related keywords to amplify your content optimization.
0 Comments

Top Agencies
Find top marketing and design agencies around the World by service, locations, and ratings.
0 Comments

RoboAd
Your AI powered Ad Assistant!
0 Comments

MomentX GuideX
It gives real-time info on our store, including brand locations and promotions.
0 Comments
liveinboxer
Get the latest email from top brands.
0 Comments

Domatron Domains
Find available, brandable .com domain names for your business businesses.
0 Comments

AIPLUX TM
Analyse your business and recommend NICE classifications and items to file for trademarks.
0 Comments

Content.app
Effortlessly buffer & post Social, SEO, Ad content. Supports WordPress, Twitter, YouTube, Shopify, Medium + more!
0 Comments
Outscraper
Solutions for accessing public information from the internet for lead generation, marketing, and data science.
0 Comments

Engage AI
Retrieve hashtag follower counts, trends & suggestions to increase your content reach on LinkedIn.
0 Comments

A+QuickURL
Shorten your links and track clicks on them.
0 Comments