> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pipecorn.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Technology slug lookup

> Resolve technology names to the slugs used by the tech-stack company search

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:

* [Preview companies by tech stack](/api-reference/endpoints/signals/tech_stack_preview)
* [Find companies by tech stack](/api-reference/endpoints/signals/tech_stack)

## 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

```json theme={null}
{
  "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`.


## OpenAPI

````yaml GET /accounts/technologies
openapi: 3.0.1
info:
  title: Pipecorn Accounts API
  description: Pipecorn Accounts API
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.pipecorn.com/api/v2/
security:
  - defaultApiKey: []
paths:
  /accounts/technologies:
    get:
      summary: Technology slug lookup
      description: >-
        Resolve a technology name to the slugs used by the tech-stack company
        search endpoints (`POST /intents/accounts/stack` and its preview).
      parameters:
        - name: query
          in: query
          required: true
          schema:
            type: string
          description: Technology name to search for.
          example: hubspot
      responses:
        '200':
          description: Matching technologies
          content:
            application/json:
              schema:
                type: object
                required:
                  - technologies
                properties:
                  technologies:
                    type: array
                    items:
                      type: object
                      properties:
                        slug:
                          type: string
                          description: Slug to use in `stacks` / `excluded_stacks`.
                          example: hubspot
                        name:
                          type: string
                          example: HubSpot
                        category:
                          type: string
                          example: Marketing Automation
                        logo:
                          type: string
                          format: uri
                          example: https://cdn.theirstack.com/logos/hubspot.png
                        description:
                          type: string
                          example: Inbound marketing, sales, and CRM platform.
        '400':
          description: Bad request (query missing)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '422':
          description: Unprocessable entity (technology lookup failed)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    defaultApiKey:
      type: apiKey
      in: header
      description: Your API key
      name: X-API-KEY

````