action namsor_available_services { label: "List of classification services and usage cost in Units per classification (default is 1=ONE Unit). Some API endpoints (ex. Corridor) combine multiple classifiers." provider: namsor method: GET path: "/api2/json/apiServices" encoding: json output: { type: "object" properties: { apiServices: { type: "array" description: "List of API Services" items: { type: "object" description: "List of API Services" properties: { costInUnits: { type: "integer" format: "int32" description: "Indicates how many units per call this service costs (ex. the number of units per name)" } serviceGroup: { type: "string" description: "Groups together classifiers providing a similar service (ex. gender groups personalname_gender and personalfullname_gender)" } serviceName: { type: "string" description: "A service name corresponds to classifier name in apiStatus (ex. personalname_gender or personalfullname_gender)" } } } } } } }