To handle a http request an application server can make other api requests to other internal services (which may not be be directly be reachable by end user) . These internal services may be available only on private IP. Since the internal services are protected by network topology they may have weaker security. Any service inside the network may be able to interact with internal service. Typically SSRF attack is usually based on application server using URL derived from user input and hence by controlling the url the attacker can execute unauthorized actions or access to data . 

How to protect against SSRF attack

Read more