API getCountry wirft 404 (Not Found)

Hallo,

laut Dokukann man eine Länder-ID über die API aus dem Shop so abholen:

function getCountry(iso3) {
        const url = `${baseUrl}/sales-channel-api/v1/sales-channel/countries?filter[iso3]=${iso3}`;
        return fetch(url, { method: 'GET', headers })
            .then((resp) => resp.json())
            .then(({ data }) => data[0]);
    }

wenn ich das mache, erhalte ich aber einen 404 (Not Found) … Wieso?

andere Calls wie der hier funktionieren tadellos …

function getCategory(categoryId) {
    return fetch(BASE_URL + '/sales-channel-api/v1/category/'+categoryId + "?associations[media][]", { headers })
        .then((resp) => resp.json())
}

ist mein Call nun falsch oder die Doku?

EDIT:

konnte es mittlerweile mit einem anderen Call von hierlösen

function getCountry(iso3) {
    const url = `${BASE_URL}/sales-channel-api/v1/country?filter[iso3]=${iso3}`;
    return fetch(url, { method: 'GET', headers })
        .then((resp) => resp.json())
        .then(({ data }) => data);
}

ist die andere Doku dann falsch?