A service type classifies the services you sell — fixed, hourly, usage-based, and the like. This API is read-only: service types are configured in AlgaPSA, and you read them here to map a name to the ID other records expect.
List everything configured with GET /service-types, then fetch one by ID with GET /service-types/{id}. Use the ID when wiring up services so your billing data lines up with what's defined in the product.
curl -G https://algapsa.com/api/v1/service-types \
-H "X-API-Key: $ALGA_API_KEY" \
--data-urlencode "is_active=true" \
--data-urlencode "search=managed"The list takes search and is_active filters and paginates with page and limit. The custom_service_type_id you read here is exactly the value the Services and Products APIs require when you create or update a catalog entry.
Every endpoint links through to its full parameters, request and response schemas, and code samples.
GET/api/v1/service-typesAlgaPSAList service typesGET/api/v1/service-types/{id}AlgaPSAGet service type