Is that the entire body of the response? Where is this data coming from? (And does that API have some sort of documentation, e.g. one that might offer tips on parsing the data it outputs?)
The reason I ask is because it's almost parsable as XML data... but not quite. As such, you'd have to resort to either a) implementing your own data parser, or b) resort to using regular expressions (e.g. using [man]preg_match/man).
For the latter, you could do something like:
@<[^/][^>]*MID='([^']*)'[^>]*STA='([^']*)'@
Note that if they aren't guarenteed to appear in that order (MID before STA), then you'd have to either a) break it out into two separate expressions, or b) make one big ugly one like:
@<[^/][^>]*(?:MID='([^']*)'[^>]*STA='([^']*)')|(?:STA='([^']*)'[^>]*MID='([^']*)')@