# `ADDRESS_STREETS_NOT_FOUND` (HTTP 404): no street listing answers for that country or postcode

GET /api/v1/address/streets found nothing to report: either no address register Spaw syncs carries a street listing for the country, or the register lists no street at that postcode. Nothing is charged.

The street listing is read from the national address registers Spaw syncs — every street each one lists inside each postcode, in the register's own spelling. A country with no such register, or one whose register was synced before its listing existed, has no streets to answer with and answers this code.

A covered country answers it when the register simply lists nothing at the postcode: the code is not in the register, or is one that holds no street addresses. Validating a single address is unaffected; it works from the same registers and answers a verdict rather than this code.

**What to do.** Check the country is one whose address register Spaw carries with a street listing, and that the postcode is a real one in that country's own notation.

```json
{
    "success": false,
    "error": {
        "code": "ADDRESS_STREETS_NOT_FOUND",
        "message": "No street is listed at 9999 in CH.",
        "request_id": "req_01m1kgdm4xngzmbmff68g94w0c"
    }
}
```

Reference: https://spaw.co/docs/errors/ADDRESS_STREETS_NOT_FOUND
