DemandSphere Sites API

The Sites API from DemandSphere — 2 operation(s) for sites.

Operations 2

POST /sites/hierarchy/list Get a list of hierarchy properties #
POST /sites/properties/list Get a list of properties #

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/demandsphere-sites-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

demandsphere-sites-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 5.0.0
  title: DemandSphere API v5.0 Documentation Keywords Sites API
  description: ''
servers:
- url: https://api.demandsphere.com
  description: Production API Server
security:
- ApiKey: []
tags:
- name: Sites
paths:
  /sites/hierarchy/list:
    post:
      summary: Get a list of hierarchy properties
      operationId: Sites_HierarchyList
      tags:
      - Sites
      responses:
        '200':
          $ref: '#/components/responses/Response200Hierarchy'
        '400':
          $ref: '#/components/responses/Response400'
  /sites/properties/list:
    post:
      summary: Get a list of properties
      operationId: Sites_PropertiesList
      tags:
      - Sites
      responses:
        '200':
          $ref: '#/components/responses/Response200Properties'
        '400':
          $ref: '#/components/responses/Response400'
components:
  responses:
    Response200Hierarchy:
      description: success
      content:
        application/json:
          schema:
            type: object
            properties:
              hierarchyList:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    siteName:
                      type: string
                    organizationName:
                      type: string
                    accountName:
                      type: string
                    url:
                      type: string
                    numUsers:
                      type: integer
                    keywords:
                      type: integer
                    image:
                      type: string
                    ownership:
                      type: string
              meta:
                type: object
                properties:
                  api_version:
                    type: string
    Response200Properties:
      description: success
      content:
        application/json:
          schema:
            type: object
            properties:
              propertyList:
                type: object
                properties:
                  organizations:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                        id:
                          type: string
                        accounts:
                          type: array
                          items:
                            type: object
                            properties:
                              name:
                                type: string
                              id:
                                type: string
                              sites:
                                type: array
                                items:
                                  type: object
                                  properties:
                                    id:
                                      type: string
                                    siteName:
                                      type: string
                                    organizationId:
                                      type: string
                                    organizationName:
                                      type: string
                                    accountId:
                                      type: string
                                    accountName:
                                      type: string
                                    url:
                                      type: string
                                    numUsers:
                                      type: integer
                                    keywords:
                                      type: integer
                                    image:
                                      type: string
                                    ownership:
                                      type: string
                                    favicon:
                                      type: string
                                    countryCode:
                                      type: string
                                    geoname:
                                      type: string
                  accounts:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                        id:
                          type: string
                        sites:
                          type: array
                          items:
                            type: object
                            properties:
                              id:
                                type: string
                              siteName:
                                type: string
                              organizationId:
                                type: string
                              organizationName:
                                type: string
                              accountId:
                                type: string
                              accountName:
                                type: string
                              url:
                                type: string
                              numUsers:
                                type: integer
                              keywords:
                                type: integer
                              image:
                                type: string
                              ownership:
                                type: string
                              favicon:
                                type: string
                              countryCode:
                                type: string
                              geoname:
                                type: string
              meta:
                type: object
                properties:
                  api_version:
                    type: string
    Response400:
      description: Error
      content:
        application/json:
          schema:
            type: object
  securitySchemes:
    ApiKey:
      type: apiKey
      name: api_key
      in: query