Voyant.io Org Settings API

Organization settings: domain, company name, preferences.

Operations 3

GET /api/org-settings Get Org Settings #
PUT /api/org-settings Update Org Settings #
GET /api/org-settings/domain Get Primary Domain #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/voyant-org-settings-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

voyant-org-settings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: VoyantIO Org Settings API
  description: '

    ## Brand Context Intelligence Platform


    VoyantIO provides AI-powered brand context management for GTM teams.


    ### Core Capabilities


    - **Context Streams** - Centralized brand knowledge that any AI tool can use

    - **Telemetry** - Visitor tracking with IP geolocation and company enrichment

    - **Signals** - Social listening across 10+ platforms: GitHub, Reddit, HackerNews, LinkedIn, Twitter/X, Discord, ProductHunt, YouTube, G2, Slack, and government sources

    - **Target Graph** - Account and contact intelligence with engagement tracking

    - **RAG** - Retrieval-augmented content generation with brand awareness


    ### Authentication


    Most endpoints require a Bearer token from Clerk authentication.

    Public endpoints (telemetry ingestion, well-known files) are clearly marked.


    ### Rate Limits


    - Telemetry ingestion: 100 req/min per IP

    - API endpoints: 1000 req/min per org

    '
  version: 1.0.0
servers:
- url: https://voice-forge-production.up.railway.app
  description: Production
tags:
- name: org-settings
  description: 'Organization settings: domain, company name, preferences.'
paths:
  /api/org-settings:
    get:
      tags:
      - org-settings
      summary: Get Org Settings
      description: Get organization settings.
      operationId: get_org_settings_api_org_settings_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrgSettingsResponse'
      security:
      - HTTPBearer: []
    put:
      tags:
      - org-settings
      summary: Update Org Settings
      description: Update organization settings.
      operationId: update_org_settings_api_org_settings_put
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrgSettingsRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties:
                  type: boolean
                type: object
                title: Response Update Org Settings Api Org Settings Put
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
  /api/org-settings/domain:
    get:
      tags:
      - org-settings
      summary: Get Primary Domain
      description: 'Get the primary domain for this org.

        Returns user-set domain if available, otherwise falls back to most common content domain.'
      operationId: get_primary_domain_api_org_settings_domain_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Get Primary Domain Api Org Settings Domain Get
      security:
      - HTTPBearer: []
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    OrgSettingsRequest:
      properties:
        primary_domain:
          anyOf:
          - type: string
          - type: 'null'
          title: Primary Domain
          description: Primary domain for this organization (e.g., buf.build)
        company_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Company Name
          description: Display name for the company
      type: object
      title: OrgSettingsRequest
    OrgSettingsResponse:
      properties:
        primary_domain:
          anyOf:
          - type: string
          - type: 'null'
          title: Primary Domain
        company_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Company Name
      type: object
      title: OrgSettingsResponse
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer