Skip to main content
GET
/
industry
/
search
Search industries and super categories by name
curl --request GET \
  --url https://www.tryfundable.ai/api/v1/industry/search \
  --header 'Authorization: Bearer <token>'
{ "success": true, "data": { "industries": [ { "permalink": "artificial-intelligence", "name": "Artificial Intelligence", "industry_type": "INDUSTRY" }, { "permalink": "machine-learning", "name": "Machine Learning", "industry_type": "INDUSTRY" } ] }, "meta": { "total_count": 2 } }

Documentation Index

Fetch the complete documentation index at: https://docs.tryfundable.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication using Bearer token format. Format: Authorization: Bearer vg_your_api_key_here

API keys follow the pattern: vg_[12_hex_chars]_[32_base64url_chars]

Query Parameters

name
string
required

Industry name to search for

Example:

"artificial intelligence"

type
enum<string>

Filter by specific industry type

Available options:
INDUSTRY,
SUPER_CATEGORY
Example:

"INDUSTRY"

industry_type
enum<string>

Alias for 'type' parameter

Available options:
INDUSTRY,
SUPER_CATEGORY
Example:

"INDUSTRY"

Response

Successful search results

success
boolean
required
Example:

true

data
object
required
meta
object
required