Get list
GET
/api/v1/list/{id}
const url = 'https://example.com/api/v1/list/example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/list/exampleRetrieves a list by ID
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string
Query Parameters
Section titled “Query Parameters”expand
string
Responses
Section titled “Responses”List
Not Found
Internal Server Error