Legacy component search by SRG ID
GET
/search/components
Searches components by the SRG identifier they are based on. Scoped to components the user can access: project or component membership, or released components; admins are unrestricted. Returns compact tuples [id, name]. This is a legacy search endpoint — prefer /api/search/global for new integrations.
Authorizations
tokenAuth
Personal access token authentication. Send via Authorization header: Authorization: Token vulcan_xxx. Tokens are SHA-256 hashed server-side (never stored in plaintext). Scopes: read (GET), write (mutations), admin (everything). Create tokens via Settings → API Tokens in the web UI.
Type
HTTP (token)
Parameters
Query Parameters
q*
SRG identifier to search for.
Type
Requiredstring
Example
"Container_Platform_SRG"Responses
Matching components as compact tuples
application/json
JSON "components": [ [ 1, "Photon OS 3" ], [ 8, "Container Platform" ] ]
{
}