{
  "openapi": "3.1.0",
  "info": {
    "title": "Fodda Context & Research API",
    "description": "Complete technical interface for retrieving expert-curated knowledge graphs, real-time institutional data, and autonomous research profiles.",
    "version": "1.7.0"
  },
  "servers": [
    {
      "url": "https://api.fodda.ai"
    }
  ],
  "paths": {
    "/v1/health": {
      "get": {
        "summary": "V1 API health check",
        "description": "Check service availability.\n\nPrice: Free ($0)",
        "operationId": "v1_api_health_check",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/spt/validate": {
      "get": {
        "summary": "Validate SPT",
        "description": "Check if a Stripe Shared Payment Token (SPT) is active and has remaining balance.\n\nPrice: Free ($0)",
        "operationId": "validate_spt",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/offerings": {
      "get": {
        "summary": "List offerings catalog",
        "description": "Retrieve the list of all available offerings, tools, and pricing plans.\n\nPrice: Free ($0)",
        "operationId": "list_offerings_catalog",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/research/pricing": {
      "get": {
        "summary": "Get Pricing map",
        "description": "Get canonical price map for billing.\n\nPrice: Free ($0)",
        "operationId": "get_pricing_map",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/research/offerings": {
      "get": {
        "summary": "Get research offerings catalog",
        "description": "List all research tools available.\n\nPrice: Free ($0)",
        "operationId": "get_research_offerings_catalog",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/research/deep-dive": {
      "post": {
        "summary": "Launch Autonomous Research Deep Dive",
        "description": "Trigger the autonomous research agent to explore a topic, search graphs, and synthesize a report.\n\nPrice: $10–$15 (billed as deep_research_light/heavy)",
        "operationId": "launch_autonomous_research_deep_dive",
        "x-fodda-price-usd": 10,
        "x-fodda-billing-type": "deep_research_light/heavy",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "query"
                ],
                "properties": {
                  "query": {
                    "type": "string",
                    "description": "The research prompt"
                  },
                  "mode": {
                    "type": "string",
                    "enum": [
                      "fast",
                      "comprehensive"
                    ],
                    "default": "fast"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/research/deep-dive/status/{job_id}": {
      "get": {
        "summary": "Check Deep Research Status",
        "description": "Check status of deep research and return report when completed.\n\nPrice: $10–$15 (billed as deep_research_light/heavy)",
        "operationId": "check_deep_research_status",
        "x-fodda-price-usd": 10,
        "x-fodda-billing-type": "deep_research_light/heavy",
        "parameters": [
          {
            "name": "job_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/research/chat": {
      "post": {
        "summary": "Research chat turn",
        "description": "Persist chat state and get next turn response.\n\nPrice: $1.50 (billed as research_chat)",
        "operationId": "research_chat_turn",
        "x-fodda-price-usd": 1.5,
        "x-fodda-billing-type": "research_chat",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "sessionId",
                  "message"
                ],
                "properties": {
                  "sessionId": {
                    "type": "string"
                  },
                  "message": {
                    "type": "string"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/research/stream": {
      "get": {
        "summary": "Streaming research search",
        "description": "Run search and stream output using Server-Sent Events.\n\nPrice: $1.50 (billed as research_stream)",
        "operationId": "streaming_research_search",
        "x-fodda-price-usd": 1.5,
        "x-fodda-billing-type": "research_stream",
        "parameters": [
          {
            "name": "query",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/research/schedules": {
      "post": {
        "summary": "Create scheduled Briefing",
        "description": "Create a subscription schedule for brand or topic briefings.\n\nPrice: $10.00 (billed as weekly_tracker)",
        "operationId": "create_scheduled_briefing",
        "x-fodda-price-usd": 10,
        "x-fodda-billing-type": "weekly_tracker",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "topic",
                  "frequency"
                ],
                "properties": {
                  "topic": {
                    "type": "string"
                  },
                  "frequency": {
                    "type": "string",
                    "enum": [
                      "daily",
                      "weekly"
                    ]
                  },
                  "email": {
                    "type": "string"
                  },
                  "slack_webhook": {
                    "type": "string"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      },
      "get": {
        "summary": "List scheduled briefings",
        "description": "Get all configured schedules.\n\nPrice: Free ($0)",
        "operationId": "list_scheduled_briefings",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/research/schedules/{schedule_id}": {
      "delete": {
        "summary": "Cancel scheduled briefing",
        "description": "Delete briefing schedule.\n\nPrice: Free ($0)",
        "operationId": "cancel_scheduled_briefing",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "parameters": [
          {
            "name": "schedule_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      },
      "patch": {
        "summary": "Modify scheduled briefing",
        "description": "Update brief schedule configuration.\n\nPrice: Free ($0)",
        "operationId": "modify_scheduled_briefing",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "parameters": [
          {
            "name": "schedule_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/research/schedules/{schedule_id}/runs": {
      "get": {
        "summary": "Get scheduled briefing runs",
        "description": "Retrieve execution history of runs.\n\nPrice: Free ($0)",
        "operationId": "get_scheduled_briefing_runs",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "parameters": [
          {
            "name": "schedule_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/context": {
      "get": {
        "summary": "URL context extraction",
        "description": "Extract main content text from a web page URL.\n\nPrice: $0.50 (billed as url_context)",
        "operationId": "url_context_extraction",
        "x-fodda-price-usd": 0.5,
        "x-fodda-billing-type": "url_context",
        "parameters": [
          {
            "name": "url",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/graph-slice": {
      "get": {
        "summary": "Graph slice JSON-LD",
        "description": "Get semantic Schema.org slice of a graph.\n\nPrice: Free ($0)",
        "operationId": "graph_slice_json_ld",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "parameters": [
          {
            "name": "graph_id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "source_id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/log/question": {
      "post": {
        "summary": "Log search question",
        "description": "Track queries.\n\nPrice: Free ($0)",
        "operationId": "log_search_question",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/accounts/trial-upgrade": {
      "post": {
        "summary": "Upgrade account status",
        "description": "Upgrade trial account.\n\nPrice: Free ($0)",
        "operationId": "upgrade_account_status",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/user/context": {
      "post": {
        "summary": "Set user research context profile",
        "description": "Set custom profile filters.\n\nPrice: $0.50 (billed as url_context)",
        "operationId": "set_user_research_context_profile",
        "x-fodda-price-usd": 0.5,
        "x-fodda-billing-type": "url_context",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/user/usage/export": {
      "get": {
        "summary": "Bulk export query and usage history",
        "description": "Export customer query usage history as CSV or JSON for accounting, finance, and agentic workflows.\n\nPrice: Free ($0)",
        "operationId": "bulk_export_query_and_usage_history",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "parameters": [
          {
            "name": "format",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string",
              "enum": [
                "csv",
                "json"
              ],
              "default": "csv"
            },
            "description": "Export format"
          },
          {
            "name": "startDate",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string",
              "format": "date"
            },
            "description": "Start date filter (YYYY-MM-DD)"
          },
          {
            "name": "endDate",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string",
              "format": "date"
            },
            "description": "End date filter (YYYY-MM-DD)"
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/user/invoices/export": {
      "get": {
        "summary": "Bulk export consolidated invoices and billing summary",
        "description": "Export consolidated Stripe and Lava billing transactions as CSV.\n\nPrice: Free ($0)",
        "operationId": "bulk_export_consolidated_invoices_and_billing_summary",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "parameters": [
          {
            "name": "format",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string",
              "enum": [
                "csv",
                "json"
              ],
              "default": "csv"
            },
            "description": "Export format"
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/user/briefings/export": {
      "get": {
        "summary": "Bulk export research briefings and deliverables",
        "description": "Export all completed analyst research briefings and consult sessions with YAML frontmatter as a ZIP archive or JSON payload.\n\nPrice: Free ($0)",
        "operationId": "bulk_export_research_briefings_and_deliverables",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "parameters": [
          {
            "name": "format",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string",
              "enum": [
                "zip",
                "json"
              ],
              "default": "zip"
            },
            "description": "Export format"
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/graphs/catalog": {
      "get": {
        "summary": "Graph registry catalog",
        "description": "Get all registry graphs.\n\nPrice: Free ($0)",
        "operationId": "graph_registry_catalog",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/graphs/mine": {
      "get": {
        "summary": "Get active graphs list",
        "description": "Get graphs active on user account.\n\nPrice: Free ($0)",
        "operationId": "get_active_graphs_list",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/graphs": {
      "get": {
        "summary": "List available context graphs",
        "description": "List available knowledge graphs.\n\nPrice: $0.50 (billed as search)",
        "operationId": "list_available_context_graphs",
        "x-fodda-price-usd": 0.5,
        "x-fodda-billing-type": "search",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/graphs/{graph_id}/nodes/{node_id}": {
      "get": {
        "summary": "Get node properties",
        "description": "Retrieve complete properties of a graph node.\n\nPrice: Free ($0)",
        "operationId": "get_node_properties",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "parameters": [
          {
            "name": "graph_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "node_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/graphs/{graph_id}/neighbors": {
      "post": {
        "summary": "Traverse neighbors",
        "description": "Depth-limited relationship exploration.\n\nPrice: Free ($0)",
        "operationId": "traverse_neighbors",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "parameters": [
          {
            "name": "graph_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/graphs/{graph_id}/adjacent": {
      "get": {
        "summary": "Discover adjacent trends",
        "description": "Surfaces similar trends in the embeddings space.\n\nPrice: $7.50 (billed as adjacent_trends)",
        "operationId": "discover_adjacent_trends",
        "x-fodda-price-usd": 7.5,
        "x-fodda-billing-type": "adjacent_trends",
        "parameters": [
          {
            "name": "graph_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/graphs/{graph_id}/search": {
      "post": {
        "summary": "Search knowledge graph",
        "description": "Search trends and signals semantically.\n\nPrice: $7.50 (billed as topic_research)",
        "operationId": "search_knowledge_graph",
        "x-fodda-price-usd": 7.5,
        "x-fodda-billing-type": "topic_research",
        "parameters": [
          {
            "name": "graph_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/graphs/{graph_id}/evidence": {
      "post": {
        "summary": "Get evidence",
        "description": "Get source articles and signals for a trend.\n\nPrice: $2.50 (billed as standalone_evidence)",
        "operationId": "get_evidence",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_evidence",
        "parameters": [
          {
            "name": "graph_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/graphs/{graph_id}/labels/{label}/values": {
      "get": {
        "summary": "List label category values",
        "description": "Enumerate all unique filter values.\n\nPrice: Free ($0)",
        "operationId": "list_label_category_values",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "parameters": [
          {
            "name": "graph_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "label",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/sources/chunks/{chunk_id}": {
      "get": {
        "summary": "Get source chunk content",
        "description": "Get actual text of a source chunk.\n\nPrice: $0.50 (billed as search)",
        "operationId": "get_source_chunk_content",
        "x-fodda-price-usd": 0.5,
        "x-fodda-billing-type": "search",
        "parameters": [
          {
            "name": "chunk_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/graphs/{graph_id}/statistics": {
      "get": {
        "summary": "Search statistics",
        "description": "Get metrics and expert quotes.\n\nPrice: $2.50 (billed as standalone_statistics)",
        "operationId": "search_statistics",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_statistics",
        "parameters": [
          {
            "name": "graph_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/brand-intelligence/{brandName}": {
      "post": {
        "summary": "Get Brand Intelligence profile",
        "description": "Consolidated brand signals dashboard.\n\nPrice: $10.00 (billed as brand_intelligence)",
        "operationId": "get_brand_intelligence_profile",
        "x-fodda-price-usd": 10,
        "x-fodda-billing-type": "brand_intelligence",
        "parameters": [
          {
            "name": "brandName",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/search/domain": {
      "post": {
        "summary": "Domain Intelligence parallel search",
        "description": "Search across all PSFK domain graphs.\n\nPrice: $2.50 (billed as domain_intelligence)",
        "operationId": "domain_intelligence_parallel_search",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "domain_intelligence",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/search/expert": {
      "post": {
        "summary": "Expert Intelligence parallel search",
        "description": "Search across specialist/framework graphs.\n\nPrice: $2.50 (billed as expert_intelligence)",
        "operationId": "expert_intelligence_parallel_search",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "expert_intelligence",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/search/report": {
      "post": {
        "summary": "Report Intelligence parallel search",
        "description": "Search across industry research report graphs.\n\nPrice: $2.50 (billed as report_intelligence)",
        "operationId": "report_intelligence_parallel_search",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "report_intelligence",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/search/filtered": {
      "post": {
        "summary": "Filtered semantic search",
        "description": "Semantic search with metadata filter options.\n\nPrice: $0.50 (billed as search)",
        "operationId": "filtered_semantic_search",
        "x-fodda-price-usd": 0.5,
        "x-fodda-billing-type": "search",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/search/filters": {
      "get": {
        "summary": "List search filters keys",
        "description": "Returns available filters.\n\nPrice: Free ($0)",
        "operationId": "list_search_filters_keys",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/user/preferences/toggle": {
      "post": {
        "summary": "Toggle user preference setting",
        "description": "Set settings.\n\nPrice: Free ($0)",
        "operationId": "toggle_user_preference_setting",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/admin/invalidate-registry-cache": {
      "post": {
        "summary": "Force registry invalidation",
        "description": "Admin refresh.\n\nPrice: Free ($0)",
        "operationId": "force_registry_invalidation",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/analysts": {
      "get": {
        "summary": "List synthetic expert analysts",
        "description": "Retrieve registered expert analyst personas.\n\nPrice: Free ($0)",
        "operationId": "list_synthetic_expert_analysts",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/analysts/brands": {
      "get": {
        "summary": "List covered analyst brands",
        "description": "Get brands covered by specialists.\n\nPrice: Free ($0)",
        "operationId": "list_covered_analyst_brands",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/analysts/consult": {
      "post": {
        "summary": "Consult analyst turn",
        "description": "Ask a synthetic expert analyst a question.\n\nPrice: $2.50 (billed as expert_agent)",
        "operationId": "consult_analyst_turn",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "expert_agent",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "analyst_id",
                  "query"
                ],
                "properties": {
                  "analyst_id": {
                    "type": "string"
                  },
                  "query": {
                    "type": "string"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/context": {
      "post": {
        "summary": "Unified Supplemental Context",
        "description": "Unified access to FRED, Census, PubMed, Google Trends, etc. in parallel.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "unified_supplemental_context",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "query"
                ],
                "properties": {
                  "query": {
                    "type": "string",
                    "description": "Search query or research topic"
                  },
                  "domain": {
                    "type": "string",
                    "description": "Optional domain hint (retail, beauty, fashion, etc.)"
                  },
                  "brands": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "Brand names for product lookups"
                  },
                  "graph_ids": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "Graph IDs from prior search for domain inference"
                  },
                  "sources": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "Explicit source IDs to execute"
                  },
                  "categories": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "Category filters"
                  },
                  "geo": {
                    "type": "string",
                    "description": "Country code hint (e.g. BR, TH, GB)"
                  },
                  "geography": {
                    "type": "string",
                    "description": "Country code or country name (e.g. BR, Brazil, United Kingdom)"
                  },
                  "location": {
                    "type": "string",
                    "description": "Location hint"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Unified supplemental data payload with source coverage telemetry",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "query": {
                      "type": "string"
                    },
                    "domain": {
                      "type": "string"
                    },
                    "sources_queried": {
                      "type": "number"
                    },
                    "sources_returned": {
                      "type": "number"
                    },
                    "sources_succeeded": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "sources_failed": {
                      "type": "array",
                      "items": {
                        "type": "object"
                      }
                    },
                    "sources_skipped": {
                      "type": "array",
                      "items": {
                        "type": "object"
                      }
                    },
                    "source_coverage": {
                      "type": "object",
                      "properties": {
                        "considered": {
                          "type": "number"
                        },
                        "selected": {
                          "type": "number"
                        },
                        "attempted": {
                          "type": "number"
                        },
                        "returned": {
                          "type": "number"
                        },
                        "dropped": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string"
                              },
                              "stage": {
                                "type": "string",
                                "enum": [
                                  "routing",
                                  "fetch",
                                  "consolidate",
                                  "coherence"
                                ]
                              },
                              "reason": {
                                "type": "string"
                              }
                            }
                          }
                        },
                        "query_interpreted_as": {
                          "type": "string"
                        },
                        "domain_inference": {
                          "type": "string"
                        },
                        "classifier_path": {
                          "type": "string",
                          "enum": [
                            "regex",
                            "gemini",
                            "fallback"
                          ]
                        },
                        "need_adjacency_applied": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "demand_signals": {
                      "type": "object"
                    },
                    "economic_context": {
                      "type": "object"
                    },
                    "market_data": {
                      "type": "object"
                    },
                    "financial_reporting": {
                      "type": "object"
                    },
                    "research_signals": {
                      "type": "object"
                    },
                    "demographic_context": {
                      "type": "object"
                    },
                    "_meta": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/sources": {
      "get": {
        "summary": "List supplemental sources",
        "description": "Retrieve catalog of institutional data providers.\n\nPrice: Free ($0)",
        "operationId": "list_supplemental_sources",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/supplemental/earnings/snapshot": {
      "get": {
        "summary": "Earnings call snapshot intelligence",
        "description": "Query company earnings transcripts, commentary and guidance.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "earnings_call_snapshot_intelligence",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/earnings/analyst-concerns": {
      "get": {
        "summary": "Get earnings top analyst concerns",
        "description": "Retrieve Wall Street worries about a sector/ticker.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "get_earnings_top_analyst_concerns",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/earnings/question-themes": {
      "get": {
        "summary": "Get earnings Q&A question themes",
        "description": "Retrieve analyst questions focus areas.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "get_earnings_q_a_question_themes",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/earnings/management-themes": {
      "get": {
        "summary": "Get management presentation themes",
        "description": "Retrieve executive messaging focal points.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "get_management_presentation_themes",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/earnings/divergence": {
      "get": {
        "summary": "Get earnings concerns divergence",
        "description": "Identify divergence gaps between worries and management answers.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "get_earnings_concerns_divergence",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/copilot/search_insights": {
      "post": {
        "summary": "Strategic Insight Retrieval (Copilot)",
        "description": "High-level trend and insight discovery optimized for Microsoft Copilot reasoning.\n\nPrice: Free ($0)",
        "operationId": "strategic_insight_retrieval__copilot_",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/copilot/get_evidence": {
      "post": {
        "summary": "Evidence-Backed Grounding (Copilot)",
        "description": "Retrieve verifiable source articles and data points for grounding.\n\nPrice: Free ($0)",
        "operationId": "evidence_backed_grounding__copilot_",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/copilot/get_statistics": {
      "post": {
        "summary": "Quantitative Statistics (Copilot)",
        "description": "Semantic search over metrics and expert quotes for Copilot.\n\nPrice: Free ($0)",
        "operationId": "quantitative_statistics__copilot_",
        "x-fodda-price-usd": 0,
        "x-fodda-billing-type": "free",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": []
      }
    },
    "/v1/supplemental/suggest": {
      "get": {
        "summary": "Supplemental: suggest",
        "description": "Supplemental data snapshot endpoint for suggest.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__suggest",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/census/retail-snapshot": {
      "get": {
        "summary": "Supplemental: retail-snapshot",
        "description": "Supplemental data snapshot endpoint for census.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__retail_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/census/demographics-snapshot": {
      "get": {
        "summary": "Supplemental: demographics-snapshot",
        "description": "Supplemental data snapshot endpoint for census.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__demographics_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/fred/economic-snapshot": {
      "get": {
        "summary": "Supplemental: economic-snapshot",
        "description": "Supplemental data snapshot endpoint for fred.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__economic_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/wikipedia/pageviews": {
      "get": {
        "summary": "Supplemental: pageviews",
        "description": "Supplemental data snapshot endpoint for wikipedia.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__pageviews",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/worldbank/global-snapshot": {
      "get": {
        "summary": "Supplemental: global-snapshot",
        "description": "Supplemental data snapshot endpoint for worldbank.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__global_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/fda/ingredient-safety": {
      "get": {
        "summary": "Supplemental: ingredient-safety",
        "description": "Supplemental data snapshot endpoint for fda.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__ingredient_safety",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/fda/recalls": {
      "get": {
        "summary": "Supplemental: recalls",
        "description": "Supplemental data snapshot endpoint for fda.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__recalls",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/clinical-trials/search": {
      "get": {
        "summary": "Supplemental: search",
        "description": "Supplemental data snapshot endpoint for clinical-trials.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__search",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/bls/economic-snapshot": {
      "get": {
        "summary": "Supplemental: economic-snapshot",
        "description": "Supplemental data snapshot endpoint for bls.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__economic_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/bea/spending-snapshot": {
      "get": {
        "summary": "Supplemental: spending-snapshot",
        "description": "Supplemental data snapshot endpoint for bea.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__spending_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/ons/uk-snapshot": {
      "get": {
        "summary": "Supplemental: uk-snapshot",
        "description": "Supplemental data snapshot endpoint for ons.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__uk_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/cbs/nl-snapshot": {
      "get": {
        "summary": "Supplemental: nl-snapshot",
        "description": "Supplemental data snapshot endpoint for cbs.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__nl_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/ptdata/pt-snapshot": {
      "get": {
        "summary": "Supplemental: pt-snapshot",
        "description": "Supplemental data snapshot endpoint for ptdata.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__pt_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/bcb/br-snapshot": {
      "get": {
        "summary": "Supplemental: br-snapshot",
        "description": "Supplemental data snapshot endpoint for bcb.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__br_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/ibge/br-snapshot": {
      "get": {
        "summary": "Supplemental: br-snapshot",
        "description": "Supplemental data snapshot endpoint for ibge.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__br_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/bcrp/pe-snapshot": {
      "get": {
        "summary": "Supplemental: pe-snapshot",
        "description": "Supplemental data snapshot endpoint for bcrp.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__pe_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/arg/ar-snapshot": {
      "get": {
        "summary": "Supplemental: ar-snapshot",
        "description": "Supplemental data snapshot endpoint for arg.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__ar_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/banxico/mx-snapshot": {
      "get": {
        "summary": "Supplemental: mx-snapshot",
        "description": "Supplemental data snapshot endpoint for banxico.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__mx_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/bch/hn-snapshot": {
      "get": {
        "summary": "Supplemental: hn-snapshot",
        "description": "Supplemental data snapshot endpoint for bch.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__hn_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/abs/au-snapshot": {
      "get": {
        "summary": "Supplemental: au-snapshot",
        "description": "Supplemental data snapshot endpoint for abs.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__au_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/eurostat/eu-snapshot": {
      "get": {
        "summary": "Supplemental: eu-snapshot",
        "description": "Supplemental data snapshot endpoint for eurostat.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__eu_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/ecb/ea-snapshot": {
      "get": {
        "summary": "Supplemental: ea-snapshot",
        "description": "Supplemental data snapshot endpoint for ecb.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__ea_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/ecb/euro-snapshot": {
      "get": {
        "summary": "Supplemental: euro-snapshot",
        "description": "Supplemental data snapshot endpoint for ecb.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__euro_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/boe/uk-snapshot": {
      "get": {
        "summary": "Supplemental: uk-snapshot",
        "description": "Supplemental data snapshot endpoint for boe.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__uk_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/nordic/region-snapshot": {
      "get": {
        "summary": "Supplemental: region-snapshot",
        "description": "Supplemental data snapshot endpoint for nordic.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__region_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/nordic/snapshot": {
      "get": {
        "summary": "Supplemental: snapshot",
        "description": "Supplemental data snapshot endpoint for nordic.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/rba/au-rates": {
      "get": {
        "summary": "Supplemental: au-rates",
        "description": "Supplemental data snapshot endpoint for rba.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__au_rates",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/bundesbank/de-snapshot": {
      "get": {
        "summary": "Supplemental: de-snapshot",
        "description": "Supplemental data snapshot endpoint for bundesbank.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__de_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/ine/es-snapshot": {
      "get": {
        "summary": "Supplemental: es-snapshot",
        "description": "Supplemental data snapshot endpoint for ine.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__es_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/insee/fr-snapshot": {
      "get": {
        "summary": "Supplemental: fr-snapshot",
        "description": "Supplemental data snapshot endpoint for insee.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__fr_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/snb/ch-snapshot": {
      "get": {
        "summary": "Supplemental: ch-snapshot",
        "description": "Supplemental data snapshot endpoint for snb.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__ch_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/snb/swiss-snapshot": {
      "get": {
        "summary": "Supplemental: swiss-snapshot",
        "description": "Supplemental data snapshot endpoint for snb.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__swiss_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/bis/global-snapshot": {
      "get": {
        "summary": "Supplemental: global-snapshot",
        "description": "Supplemental data snapshot endpoint for bis.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__global_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/pdh/pacific-snapshot": {
      "get": {
        "summary": "Supplemental: pacific-snapshot",
        "description": "Supplemental data snapshot endpoint for pdh.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__pacific_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/qatar/qa-snapshot": {
      "get": {
        "summary": "Supplemental: qa-snapshot",
        "description": "Supplemental data snapshot endpoint for qatar.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__qa_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/bahrain/bh-snapshot": {
      "get": {
        "summary": "Supplemental: bh-snapshot",
        "description": "Supplemental data snapshot endpoint for bahrain.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__bh_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/boi/il-snapshot": {
      "get": {
        "summary": "Supplemental: il-snapshot",
        "description": "Supplemental data snapshot endpoint for boi.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__il_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/india/in-snapshot": {
      "get": {
        "summary": "Supplemental: in-snapshot",
        "description": "Supplemental data snapshot endpoint for india.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__in_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/sarb/za-snapshot": {
      "get": {
        "summary": "Supplemental: za-snapshot",
        "description": "Supplemental data snapshot endpoint for sarb.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__za_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/bnm/my-snapshot": {
      "get": {
        "summary": "Supplemental: my-snapshot",
        "description": "Supplemental data snapshot endpoint for bnm.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__my_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/hkma/hk-snapshot": {
      "get": {
        "summary": "Supplemental: hk-snapshot",
        "description": "Supplemental data snapshot endpoint for hkma.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__hk_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/estat/jp-snapshot": {
      "get": {
        "summary": "Supplemental: jp-snapshot",
        "description": "Supplemental data snapshot endpoint for estat.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__jp_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/bok/kr-snapshot": {
      "get": {
        "summary": "Supplemental: kr-snapshot",
        "description": "Supplemental data snapshot endpoint for bok.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__kr_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/bot/th-snapshot": {
      "get": {
        "summary": "Supplemental: th-snapshot",
        "description": "Supplemental data snapshot endpoint for bot.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__th_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/boc/ca-snapshot": {
      "get": {
        "summary": "Supplemental: ca-snapshot",
        "description": "Supplemental data snapshot endpoint for boc.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__ca_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/statcan/ca-snapshot": {
      "get": {
        "summary": "Supplemental: ca-snapshot",
        "description": "Supplemental data snapshot endpoint for statcan.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__ca_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/bps/id-snapshot": {
      "get": {
        "summary": "Supplemental: id-snapshot",
        "description": "Supplemental data snapshot endpoint for bps.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__id_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/psa/ph-snapshot": {
      "get": {
        "summary": "Supplemental: ph-snapshot",
        "description": "Supplemental data snapshot endpoint for psa.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__ph_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/sg/sg-snapshot": {
      "get": {
        "summary": "Supplemental: sg-snapshot",
        "description": "Supplemental data snapshot endpoint for sg.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__sg_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/bcch/cl-snapshot": {
      "get": {
        "summary": "Supplemental: cl-snapshot",
        "description": "Supplemental data snapshot endpoint for bcch.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__cl_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/cn/cn-snapshot": {
      "get": {
        "summary": "Supplemental: cn-snapshot",
        "description": "Supplemental data snapshot endpoint for cn.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__cn_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/usaspending/snapshot": {
      "get": {
        "summary": "Supplemental: snapshot",
        "description": "Supplemental data snapshot endpoint for usaspending.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/dol/snapshot": {
      "get": {
        "summary": "Supplemental: snapshot",
        "description": "Supplemental data snapshot endpoint for dol.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/socrata/us-snapshot": {
      "get": {
        "summary": "Supplemental: us-snapshot",
        "description": "Supplemental data snapshot endpoint for socrata.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__us_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/socrata/city/{cityKey}": {
      "get": {
        "summary": "Supplemental: {cityKey}",
        "description": "Supplemental data snapshot endpoint for socrata.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental___citykey_",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/socrata/portals": {
      "get": {
        "summary": "Supplemental: portals",
        "description": "Supplemental data snapshot endpoint for socrata.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__portals",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/cdc/health-data": {
      "get": {
        "summary": "Supplemental: health-data",
        "description": "Supplemental data snapshot endpoint for cdc.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__health_data",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/pubmed/research-trends": {
      "get": {
        "summary": "Supplemental: research-trends",
        "description": "Supplemental data snapshot endpoint for pubmed.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__research_trends",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/wto/trade-snapshot": {
      "get": {
        "summary": "Supplemental: trade-snapshot",
        "description": "Supplemental data snapshot endpoint for wto.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__trade_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/wto/global-snapshot": {
      "get": {
        "summary": "Supplemental: global-snapshot",
        "description": "Supplemental data snapshot endpoint for wto.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__global_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/openfoodfacts": {
      "get": {
        "summary": "Supplemental: openfoodfacts",
        "description": "Supplemental data snapshot endpoint for openfoodfacts.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__openfoodfacts",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/ridb": {
      "get": {
        "summary": "Supplemental: ridb",
        "description": "Supplemental data snapshot endpoint for ridb.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__ridb",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/osm": {
      "get": {
        "summary": "Supplemental: osm",
        "description": "Supplemental data snapshot endpoint for osm.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__osm",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/google-trends": {
      "get": {
        "summary": "Supplemental: google-trends",
        "description": "Supplemental data snapshot endpoint for google-trends.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__google_trends",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/amazon": {
      "get": {
        "summary": "Supplemental: amazon",
        "description": "Supplemental data snapshot endpoint for amazon.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__amazon",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/usda/ers-snapshot": {
      "get": {
        "summary": "Supplemental: ers-snapshot",
        "description": "Supplemental data snapshot endpoint for usda.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__ers_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/usda/nass-snapshot": {
      "get": {
        "summary": "Supplemental: nass-snapshot",
        "description": "Supplemental data snapshot endpoint for usda.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__nass_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/usda/fdc-search": {
      "get": {
        "summary": "Supplemental: fdc-search",
        "description": "Supplemental data snapshot endpoint for usda.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__fdc_search",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/usda/ams-snapshot": {
      "get": {
        "summary": "Supplemental: ams-snapshot",
        "description": "Supplemental data snapshot endpoint for usda.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__ams_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/bestbuy": {
      "get": {
        "summary": "Supplemental: bestbuy",
        "description": "Supplemental data snapshot endpoint for bestbuy.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__bestbuy",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/tripadvisor/brand-intelligence": {
      "get": {
        "summary": "Supplemental: brand-intelligence",
        "description": "Supplemental data snapshot endpoint for tripadvisor.\n\nPrice: $10.00 (billed as brand_intelligence)",
        "operationId": "supplemental__brand_intelligence",
        "x-fodda-price-usd": 10,
        "x-fodda-billing-type": "brand_intelligence",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/fsa/hygiene": {
      "get": {
        "summary": "Supplemental: hygiene",
        "description": "Supplemental data snapshot endpoint for fsa.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__hygiene",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/companies-house/profile": {
      "get": {
        "summary": "Supplemental: profile",
        "description": "Supplemental data snapshot endpoint for companies-house.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__profile",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/pew/survey-data": {
      "get": {
        "summary": "Supplemental: survey-data",
        "description": "Supplemental data snapshot endpoint for pew.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__survey_data",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/pew/attitudes-snapshot": {
      "get": {
        "summary": "Supplemental: attitudes-snapshot",
        "description": "Supplemental data snapshot endpoint for pew.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__attitudes_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/oecd/economic-snapshot": {
      "get": {
        "summary": "Supplemental: economic-snapshot",
        "description": "Supplemental data snapshot endpoint for oecd.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__economic_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/openalex/research-trends": {
      "get": {
        "summary": "Supplemental: research-trends",
        "description": "Supplemental data snapshot endpoint for openalex.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__research_trends",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/semantic-scholar/research-influence": {
      "get": {
        "summary": "Supplemental: research-influence",
        "description": "Supplemental data snapshot endpoint for semantic-scholar.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__research_influence",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/sports/context": {
      "post": {
        "summary": "Supplemental: context",
        "description": "Supplemental data snapshot endpoint for sports.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__context",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/events/context": {
      "post": {
        "summary": "Supplemental: context",
        "description": "Supplemental data snapshot endpoint for events.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__context",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/youtube/context": {
      "post": {
        "summary": "Supplemental: context",
        "description": "Supplemental data snapshot endpoint for youtube.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__context",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/cbs/nl-buurt": {
      "get": {
        "summary": "Supplemental: nl-buurt",
        "description": "Supplemental data snapshot endpoint for cbs.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__nl_buurt",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/pdok/bag-snapshot": {
      "get": {
        "summary": "Supplemental: bag-snapshot",
        "description": "Supplemental data snapshot endpoint for pdok.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__bag_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/cbs/nl-crime": {
      "get": {
        "summary": "Supplemental: nl-crime",
        "description": "Supplemental data snapshot endpoint for cbs.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__nl_crime",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/luchtmeetnet/snapshot": {
      "get": {
        "summary": "Supplemental: snapshot",
        "description": "Supplemental data snapshot endpoint for luchtmeetnet.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/police-uk/snapshot": {
      "get": {
        "summary": "Supplemental: snapshot",
        "description": "Supplemental data snapshot endpoint for police-uk.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/epc/snapshot": {
      "get": {
        "summary": "Supplemental: snapshot",
        "description": "Supplemental data snapshot endpoint for epc.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/acs/tract-snapshot": {
      "get": {
        "summary": "Supplemental: tract-snapshot",
        "description": "Supplemental data snapshot endpoint for acs.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__tract_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/airnow/snapshot": {
      "get": {
        "summary": "Supplemental: snapshot",
        "description": "Supplemental data snapshot endpoint for airnow.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/nasa/eonet": {
      "get": {
        "summary": "Supplemental: eonet",
        "description": "Supplemental data snapshot endpoint for nasa.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__eonet",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/nasa/power": {
      "get": {
        "summary": "Supplemental: power",
        "description": "Supplemental data snapshot endpoint for nasa.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__power",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/nasa/techtransfer": {
      "get": {
        "summary": "Supplemental: techtransfer",
        "description": "Supplemental data snapshot endpoint for nasa.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__techtransfer",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/fbi/crime-snapshot": {
      "get": {
        "summary": "Supplemental: crime-snapshot",
        "description": "Supplemental data snapshot endpoint for fbi.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__crime_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/statcan/census-snapshot": {
      "get": {
        "summary": "Supplemental: census-snapshot",
        "description": "Supplemental data snapshot endpoint for statcan.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__census_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/ons/neighbourhood-snapshot": {
      "get": {
        "summary": "Supplemental: neighbourhood-snapshot",
        "description": "Supplemental data snapshot endpoint for ons.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__neighbourhood_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/hud/snapshot": {
      "get": {
        "summary": "Supplemental: snapshot",
        "description": "Supplemental data snapshot endpoint for hud.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/msc/aqhi-snapshot": {
      "get": {
        "summary": "Supplemental: aqhi-snapshot",
        "description": "Supplemental data snapshot endpoint for msc.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__aqhi_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/predictions/context": {
      "post": {
        "summary": "Supplemental: context",
        "description": "Supplemental data snapshot endpoint for predictions.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__context",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/seatgeek/context": {
      "post": {
        "summary": "Supplemental: context",
        "description": "Supplemental data snapshot endpoint for seatgeek.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__context",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/finance/market-snapshot": {
      "post": {
        "summary": "Supplemental: market-snapshot",
        "description": "Supplemental data snapshot endpoint for finance.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__market_snapshot",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/finance/profile": {
      "post": {
        "summary": "Supplemental: profile",
        "description": "Supplemental data snapshot endpoint for finance.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__profile",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    },
    "/v1/supplemental/admin/probe": {
      "post": {
        "summary": "Supplemental: probe",
        "description": "Supplemental data snapshot endpoint for admin.\n\nPrice: $2.50 (billed as standalone_supplemental)",
        "operationId": "supplemental__probe",
        "x-fodda-price-usd": 2.5,
        "x-fodda-billing-type": "standalone_supplemental",
        "responses": {
          "200": {
            "description": "Success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ApiResponse"
                }
              }
            }
          }
        },
        "security": [
          {
            "apiKey": []
          },
          {
            "stripeSPT": []
          }
        ]
      }
    }
  },
  "components": {
    "schemas": {
      "Graph": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "curator": {
            "type": "string"
          },
          "domain": {
            "type": "string"
          }
        }
      },
      "ApiResponse": {
        "type": "object",
        "properties": {
          "ok": {
            "type": "boolean"
          },
          "requestId": {
            "type": "string"
          },
          "schema_version": {
            "type": "string"
          },
          "search_path": {
            "type": "string"
          },
          "deterministic": {
            "type": "boolean"
          },
          "dataStatus": {
            "type": "string"
          },
          "rows": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "rowId": {
                  "type": "string"
                },
                "rowName": {
                  "type": "string"
                },
                "rowSummary": {
                  "type": "string"
                },
                "_score": {
                  "type": "number"
                }
              }
            }
          },
          "meta": {
            "type": "object",
            "properties": {
              "decision": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "total_billable_units": {
                    "type": "integer"
                  }
                }
              }
            }
          }
        }
      }
    },
    "securitySchemes": {
      "apiKey": {
        "type": "apiKey",
        "name": "X-API-Key",
        "in": "header",
        "description": "Required for all endpoints unless marked public."
      },
      "stripeSPT": {
        "type": "http",
        "scheme": "bearer",
        "description": "Stripe Shared Payment Token (MPP). Pass an SPT obtained from Stripe Link via Authorization: Bearer spt_xxx."
      }
    }
  }
}