Bazaarvoice Contributor API

The Contributor API from Bazaarvoice — 3 operation(s) for contributor.

Operations 4

GET /{clientId}/contributors/{contributorExternalId} Contributor Search #
POST /contributor Contributor Search #
GET /contributors/{contributorExternalId} Contributor Search #
POST /contributors/{contributorExternalId} Contributor Search #

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/bazaarvoice-contributor-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

bazaarvoice-contributor-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bazaarvoice Content Search Answers Contributor API
  description: Bazaarvoice Developer Space V2.0 Content Search API. Provides programmatic search and retrieval of user-generated content (UGC) - Reviews, Questions, Answers, Contributor profiles - plus product catalog lookahead search and structured data (JSON-LD/Microdata) for products. Assembled by API Evangelist from the per-operation OpenAPI definitions published on developers.bazaarvoice.com reference pages.
  version: '2.0'
  contact:
    name: Bazaarvoice Developer Support
    url: https://developers.bazaarvoice.com/support
servers:
- url: https://content-search.eu-west-1a.bosun.qa.bazaarvoice.com/
  description: QA | Content Search
- url: https://seo-stg.bazaarvoice.com/structured-data/v1
  description: Staging Server
- url: https://seo.bazaarvoice.com/structured-data/v1
  description: Production Server
tags:
- name: Contributor
paths:
  /{clientId}/contributors/{contributorExternalId}:
    get:
      tags:
      - Contributor
      summary: Contributor Search
      operationId: clientGetSingularContributor
      parameters:
      - name: clientId
        in: path
        description: Client ID
        required: true
        schema:
          type: string
      - name: contributorExternalId
        in: path
        description: Contributor's external Id (not the internal legacy Id), use - when using the body
        required: true
        schema:
          type: string
      - name: X-Correlation-ID
        in: header
        description: Correlation ID
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ContributorSearchResult'
        '400':
          description: Invalid request body, or missing clientId header
        '500':
          description: Unexpected internal error
  /contributor:
    post:
      tags:
      - Contributor
      summary: Contributor Search
      operationId: contributorLookaheadSearch
      parameters:
      - name: clientId
        in: header
        description: Client ID
        required: true
        schema:
          type: string
      - name: X-Correlation-ID
        in: header
        description: Correlation ID
        required: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ContributorRequest'
        description: Contributor Lookahead search
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ContributorResponse'
        '400':
          description: Invalid request body, or missing clientId header
        '500':
          description: Unexpected internal error
  /contributors/{contributorExternalId}:
    get:
      tags:
      - Contributor
      summary: Contributor Search
      operationId: getSingularContributor
      parameters:
      - name: contributorExternalId
        in: path
        description: Contributor's external Id (not the internal legacy Id), use - when using the body
        required: true
        schema:
          type: string
      - name: clientId
        in: header
        description: Client ID
        required: true
        schema:
          type: string
      - name: X-Correlation-ID
        in: header
        description: Correlation ID
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ContributorSearchResult'
        '400':
          description: Invalid request body, or missing clientId header
        '500':
          description: Unexpected internal error
    post:
      tags:
      - Contributor
      summary: Contributor Search
      operationId: searchContributors
      parameters:
      - name: contributorExternalId
        in: path
        description: Contributor's external Id (not the internal legacy Id), use - when using the body
        required: true
        schema:
          type: string
      - name: clientId
        in: header
        description: Client ID
        required: true
        schema:
          type: string
      - name: X-Correlation-ID
        in: header
        description: Correlation ID
        required: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ContributorQuery'
        description: Contributor search
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ContributorSearchResponse'
        '400':
          description: Invalid request body, or missing clientId header
        '500':
          description: Unexpected internal error
components:
  schemas:
    ContributorQuery:
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        sort:
          $ref: '#/components/schemas/ContributorSort'
        fields:
          type: array
          items:
            type: string
        filters:
          $ref: '#/components/schemas/ContributorFilters'
    ContributorSearchResult:
      type: object
      properties:
        clearTextExternalId:
          type: string
        legacyInternalId:
          type: string
        displayName:
          type: string
        merit:
          type: string
        rank:
          type: string
        affiliation:
          type: string
        meritBadgeEligible:
          type: string
        hyperlinkingEnabled:
          type: string
        location:
          type: string
        externalId:
          type: string
        status:
          type: string
        contentCodes:
          type: array
          items:
            type: string
        submissionTime:
          type: string
        firstPublishTime:
          type: string
        lastPublishTime:
          type: string
    ContributorSort:
      type: object
      properties:
        field:
          type: string
        direction:
          type: string
      example:
      - field: lastPublishTime
        direction: desc
      - field: submissionTime
        direction: asc
      - field: legacyInternalId
        direction: desc
      - field: status
        direction: desc
      - field: externalId
        direction: asc
      - field: displayName
        direction: asc
    ContributorRequest:
      type: object
      properties:
        term:
          type: string
        mode:
          type: string
    ContributorFilters:
      type: object
      properties:
        externalId:
          type: array
          items:
            type: string
        legacyInternalId:
          type: array
          items:
            type: string
        displayName:
          type: array
          items:
            type: string
        affiliation:
          type: array
          items:
            type: string
          description: staff badges
        rank:
          type: array
          items:
            type: string
          description: staff badges
        merit:
          type: array
          items:
            type: string
          description: TOP_250, TOP_100 etc.
        meritBadgeEligible:
          type: boolean
        hyperlinkingEnabled:
          type: boolean
        status:
          type: string
          description: basic moderation status, APPROVED, REJECTED, PENDING, EXPIRED, SUBMITTED, AUTOMTEDHOLD etc
        statusGroup:
          type: string
          description: Grouped moderation status, APPROVED, REJECTED, PENDING, EXPIRED
    ContributorMatch:
      type: object
      properties:
        id:
          type: string
        legacyInternalID:
          type: string
        displayName:
          type: string
        externalId:
          type: string
    ContributorSearchResponse:
      type: object
      properties:
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
        totalResults:
          type: integer
          format: int32
        totalQueriedAnswers:
          type: integer
          format: int32
        results:
          type: array
          items:
            $ref: '#/components/schemas/ContributorSearchResult'
    ContributorResponse:
      type: array
      items:
        $ref: '#/components/schemas/ContributorMatch'
  securitySchemes:
    Bv-Passkey:
      type: apiKey
      in: header
      name: Bv-Passkey
      description: GEO API key for authentication