Skip to main content
GET
/
accounts
/
technologies
Technology slug lookup
curl --request GET \
  --url https://app.pipecorn.com/api/v2/accounts/technologies \
  --header 'X-API-KEY: <api-key>'
import requests

url = "https://app.pipecorn.com/api/v2/accounts/technologies"

headers = {"X-API-KEY": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};

fetch('https://app.pipecorn.com/api/v2/accounts/technologies', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://app.pipecorn.com/api/v2/accounts/technologies",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://app.pipecorn.com/api/v2/accounts/technologies"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-API-KEY", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://app.pipecorn.com/api/v2/accounts/technologies")
.header("X-API-KEY", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://app.pipecorn.com/api/v2/accounts/technologies")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "technologies": [
    {
      "slug": "hubspot",
      "name": "HubSpot",
      "category": "Marketing Automation",
      "logo": "https://cdn.theirstack.com/logos/hubspot.png",
      "description": "Inbound marketing, sales, and CRM platform."
    }
  ]
}
{
"error": 123,
"message": "<string>"
}
{
"error": 123,
"message": "<string>"
}
Search the technology catalog (powered by TheirStack) and get back the slugs used by the tech-stack company search endpoints.

When to use it

The tech-stack search endpoints filter on technology slugs, not display names. Call this endpoint to turn a human name ("hubspot", "shopify") into the slug you pass in stacks / excluded_stacks on:

Credits and rate limits

  • Credits: free — no credits are spent
  • Authentication: standard v2 scheme (X-API-KEY)

Example request

GET /v2/accounts/technologies?query=hubspot

Example response

{
  "technologies": [
    {
      "slug": "hubspot",
      "name": "HubSpot",
      "category": "Marketing Automation",
      "logo": "https://cdn.theirstack.com/logos/hubspot.png",
      "description": "Inbound marketing, sales, and CRM platform."
    }
  ]
}
query is required; an empty query returns 400. Use the returned slug values in stacks and excluded_stacks.

Authorizations

X-API-KEY
string
header
required

Your API key

Query Parameters

query
string
required

Technology name to search for.

Response

Matching technologies

technologies
object[]
required