StackShare · Example Payload

Stackshare Enrichment Example

Retrieve the full tech stack for a company by domain using the StackShare GraphQL API

Developer ToolsSoftware DiscoveryTech Stacks

Stackshare Enrichment Example is an example object payload from StackShare, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

stackshare-enrichment-example.json Raw ↑
{
  "title": "Tech Stack Enrichment Example",
  "description": "Retrieve the full tech stack for a company by domain using the StackShare GraphQL API",
  "request": {
    "method": "POST",
    "url": "https://api.stackshare.io/graphql?api_key={{STACKSHARE_API_KEY}}",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "query": "{ enrichment(domain: \"stripe.com\") { domain companyId companyName companyTools { count pageInfo { hasNextPage endCursor } edges { node { tool { id name } sourcesSummary sources } } } } }"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": {
        "enrichment": {
          "domain": "stripe.com",
          "companyId": "stripe",
          "companyName": "Stripe",
          "companyTools": {
            "count": 42,
            "pageInfo": {
              "hasNextPage": true,
              "endCursor": "cursor_abc123"
            },
            "edges": [
              {
                "node": {
                  "tool": {
                    "id": "tool_ruby",
                    "name": "Ruby"
                  },
                  "sourcesSummary": "Confirmed from job postings and engineering blog",
                  "sources": ["job_postings", "engineering_blog"]
                }
              },
              {
                "node": {
                  "tool": {
                    "id": "tool_postgresql",
                    "name": "PostgreSQL"
                  },
                  "sourcesSummary": "Confirmed from engineering blog",
                  "sources": ["engineering_blog"]
                }
              }
            ]
          }
        }
      }
    }
  }
}