There are lots of formulas for different specific n-gons. The way you've phrased the question is pretty general.
https://www.geeksforgeeks.org/area-of-2d-shapes/
Ordered Sequence:
- Take a look at the Shoelace algorithm (Gauss Area Formula).
Unordered Sequence:
- Find the convex hull.
- Apply the shoelace algorithm.