This is because variables inside the single quotes '' are not being replaced. If you want variable substitution, you need to get rid of the single quotes.
You coul maybe pre-initialize that variable
foo="something $i bla bla bla"
curl "something ... ${foo}something"