openapi: 3.2.0 info: title: VoyantIO Targetgraph 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: targetgraph description: Target graph queries and relationship mapping. paths: /api/targetGraph/listOrganizations: get: tags: - targetgraph summary: List Organizations description: Get organizations in the format expected by the frontend. operationId: list_organizations_api_targetGraph_listOrganizations_get security: - HTTPBearer: [] parameters: - name: limit in: query required: false schema: type: integer description: Number of organizations to return default: 100 title: Limit description: Number of organizations to return responses: '200': description: Successful Response content: application/json: schema: {} '422': description: Validation Error content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' /api/targetGraph/listPeople: get: tags: - targetgraph summary: List People description: Get people in the format expected by the frontend. operationId: list_people_api_targetGraph_listPeople_get security: - HTTPBearer: [] parameters: - name: limit in: query required: false schema: type: integer description: Number of people to return default: 100 title: Limit description: Number of people to return responses: '200': description: Successful Response content: application/json: schema: {} '422': description: Validation Error content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' /api/targetGraph/listRepositories: get: tags: - targetgraph summary: List Repositories description: 'Get repositories being monitored. For now, return empty as we''re not tracking repos separately.' operationId: list_repositories_api_targetGraph_listRepositories_get responses: '200': description: Successful Response content: application/json: schema: {} security: - HTTPBearer: [] /api/targetGraph/stats: get: tags: - targetgraph summary: Get Stats description: Get overall statistics for the target graph. operationId: get_stats_api_targetGraph_stats_get responses: '200': description: Successful Response content: application/json: schema: {} security: - HTTPBearer: [] components: schemas: HTTPValidationError: properties: detail: items: $ref: '#/components/schemas/ValidationError' type: array title: Detail type: object title: HTTPValidationError 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 securitySchemes: HTTPBearer: type: http scheme: bearer