Service Layers function as the main entrypoint into an app and as an orchestration layer. Consider a web API setup with Flask or Django; if much of the logic on setting and getting data, committing, saving, loading, and establishing logic is done at the endpoint function, those frameworks begin to orchestrate the entire application - rather than just serve requests.
Note
Service Layers are sometimes called use-case layers or orchestration layers