> ## Documentation Index
> Fetch the complete documentation index at: https://bulkgrid.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Find public and owned sources

> Required permission: sources:read.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/sources/search
openapi: 3.0.3
info:
  title: Bulkgrid API
  version: 0.1.0
  description: >-
    Search indexed content, create crawl and extraction runs, and retrieve
    results. API keys require the scopes listed for each operation. OAuth
    connections grant MCP and search access only.
servers:
  - url: https://bulkgrid.com
    description: Bulkgrid
security:
  - apiKeyAuth: []
  - bearerAuth: []
tags:
  - name: Sources
    description: Source discovery, subscriptions, and indexing
  - name: Collections
    description: Collections and content selection rules
  - name: Search
    description: Search endpoints
  - name: Runs
    description: Run creation and lifecycle endpoints
  - name: Results
    description: Run result retrieval endpoints
paths:
  /api/v1/sources/search:
    get:
      tags:
        - Sources
      summary: Find public and owned sources
      description: 'Required permission: sources:read.'
      operationId: sourcesSearch
      parameters:
        - name: query
          in: query
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  sources:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        identifier:
                          type: string
                        type:
                          type: string
                          enum:
                            - domain
                            - document
                            - repository
                        integration_type:
                          type: string
                          enum:
                            - web
                            - upload
                            - github
                        label:
                          nullable: true
                          type: string
                        icon_url:
                          nullable: true
                          type: string
                        visibility:
                          type: string
                          enum:
                            - public
                            - private
                        updated_at:
                          type: string
                        totalItems:
                          type: number
                        isSubscribed:
                          type: boolean
                        isOwned:
                          type: boolean
                        displayIdentifier:
                          type: string
                        displayTotalItems:
                          type: number
                      required:
                        - id
                        - identifier
                        - type
                        - integration_type
                        - label
                        - icon_url
                        - visibility
                        - updated_at
                        - totalItems
                        - isSubscribed
                        - isOwned
                        - displayIdentifier
                        - displayTotalItems
                      additionalProperties: {}
                required:
                  - sources
                additionalProperties: false
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  details: {}
                required:
                  - error
                additionalProperties: false
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  details: {}
                required:
                  - error
                additionalProperties: false
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  details: {}
                required:
                  - error
                additionalProperties: false
        '404':
          description: Not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  details: {}
                required:
                  - error
                additionalProperties: false
        '429':
          description: Rate limited
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  details: {}
                required:
                  - error
                additionalProperties: false
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  details: {}
                required:
                  - error
                additionalProperties: false
      security:
        - apiKeyAuth: []
        - bearerAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Bulkgrid API key
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Bulkgrid API key or OAuth access token. OAuth grants currently allow
        search:query and mcp:use only.

````