@lap v0.3
# Machine-readable API spec. Each @endpoint block is one API call.
@api Mtaa API Documentation
@base https://mtaa-api.herokuapp.com/api
@version 1.0
@endpoints 5
@toc {country}(5)

@endpoint GET /{country}
@required {country: str}
@returns(200)

@endpoint GET /{country}/{region}
@required {country: str, region: str}
@returns(200)
@errors {404}

@endpoint GET /{country}/{region}/{district}
@required {country: str, region: str, district: str}
@returns(200)
@errors {404}

@endpoint GET /{country}/{region}/{district}/{ward}
@required {country: str, region: str, district: str, ward: str}
@returns(200)
@errors {404}

@endpoint GET /{country}/{region}/{district}/{ward}/{street}
@required {country: str, region: str, district: str, ward: str, street: str}
@returns(200)
@errors {404}

@end
