diff --git a/service/README.md b/service/README.md
index 123b502bd258c7d0f6cf7a53fe099afb070c97da..5e40cc48dc369e954ea497f778a887b317ddf2ec 100644
--- a/service/README.md
+++ b/service/README.md
@@ -1,7 +1,7 @@
 # Package go-utils/services
 Services are classified as API, SQS, CRON or ADHOC:
-- API services are synchronous, i.e. the user waits for the response,
-- SQS services are asynchronous, i.e. the request is queued and completes in good time without a response,
+- [API](../api/README.md) services are synchronous, i.e. the user waits for the response,
+- [SQS](../queues/README.md) services are asynchronous, i.e. the request is queued and completes in good time without a response,
 - CRON services are scheduled to run at regular intervals with no request nor response, and
 - ADHOC services are executed on demand.