ReferenceTechnologies

Technology vocabulary

The canonical list of platforms, apps, services, and themes the API can report, with categories. Slugs here are the same slugs used in store profiles, signals, webhooks, and MCP tools.

scoperead:storesbilling unitfree

agent notesFree. Resolve a user-supplied name to a slug here before filtering signals or comparing stores; never guess a slug. The list is paginated; follow next_cursor until null for a complete vocabulary, or use q for a prefix search.

The canonical list of platforms, apps, services, and themes the API can report, with categories. Slugs here are the same slugs used in store profiles, signals, webhooks, and MCP tools.

AuthorizationBearer <token>

Workspace API key as a bearer token. Create keys in the dashboard under Settings → API keys. Test keys (oai_test_) answer from a fixed test tenant and never queue production scans.

In: header

Query Parameters

kind?string

Filter to one kind.

Value in

  • "platform"
  • "app"
  • "service"
  • "theme"
category?string

Filter to one category slug.

q?string

Case-insensitive prefix match on name or slug.

Length2 <= length <= 64
cursor?string

Cursor from a previous page.

limit?integer

Page size, 1 to 200.

Range1 <= value <= 200
Default50

Response Body

application/json

application/json

GET
/v1/technologies
curl -X GET "https://example.com/v1/technologies"
{  "data": [    {      "category": "string",      "kind": "platform",      "listing_url": "http://example.com",      "name": "string",      "slug": "string",      "vendor": "string",      "website": "http://example.com"    }  ],  "next_cursor": "string"}