Vendasta SiteDetail Service API

Partner-facing endpoints for WordPress site information.

Operations 1

POST /v1/websites/site-details List Site Details #

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/vendasta-sitedetail-service-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

vendasta-sitedetail-service-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: WordPress Hosting SiteDetail Service API
  version: 1.0.0
  description: Partner-facing endpoints for WordPress site information.
servers:
- description: Production
  url: https://prod.apigateway.co/grpc
tags:
- description: Partner-facing endpoints for WordPress site information.
  name: SiteDetail Service
paths:
  /v1/websites/site-details:
    post:
      description: 'List primary and alternate domains for all WordPress sites owned by the partner.


        Required OAuth2 scopes: `partner:read`, `business-app`'
      operationId: PartnerApi_ListSiteDetails
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1ListSiteDetailsRequest'
        description: Request message for listing primary and alternate domains for all WordPress sites owned by a partner.
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ListSiteDetailsResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      security:
      - OAuth2:
        - partner:read
        - business-app
      summary: List Site Details
      tags:
      - SiteDetail Service
components:
  schemas:
    rpcStatus:
      properties:
        code:
          format: int32
          type: integer
        details:
          items:
            $ref: '#/components/schemas/protobufAny'
          type: array
        message:
          type: string
      type: object
    v1SiteDetails:
      description: Domain information for a single WordPress site including primary and alternate domains.
      properties:
        accountId:
          description: The account ID that owns the site.
          type: string
        alternateDomains:
          description: Alternate domains associated with the site.
          items:
            type: string
          type: array
        primaryDomain:
          description: The primary domain of the site.
          type: string
      title: Site Details
      type: object
    v1ListSiteDetailsResponse:
      description: Response message containing paginated site domain information.
      properties:
        hasMore:
          description: Whether or not more results exist.
          type: boolean
        sites:
          description: The list of site domain information.
          items:
            $ref: '#/components/schemas/v1SiteDetails'
          type: array
        totalResults:
          description: The total number of results for this query across all pages.
          format: int64
          type: string
      title: List Site Details Response
      type: object
    v1ListSiteDetailsRequest:
      description: Request message for listing primary and alternate domains for all WordPress sites owned by a partner.
      properties:
        page:
          description: Optional. The page number (0-indexed). Offset = page * page_size.
          format: int64
          type: string
        pageSize:
          description: Optional. The number of results to return per page (max 500, default 25).
          format: int64
          type: string
        partnerId:
          description: Required. The partner ID to list site domains for.
          type: string
      required:
      - partnerId
      title: List Site Details Request
      type: object
    protobufAny:
      additionalProperties: {}
      properties:
        '@type':
          type: string
      type: object
  securitySchemes:
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://sso-api-prod.apigateway.co/oauth2/auth
          scopes:
            business-app: Allows the application to manage all features of Business App
            partner:read: Allows the application view-only access to your platform setup information
          tokenUrl: https://sso-api-prod.apigateway.co/oauth2/token
      type: oauth2