# SNOMED CT

Now that we have a code system, let's take a look at its content! We can list concepts using either the [SNOMED CT API](https://docs.b2ihealthcare.com/snow-owl/8.x/index-3/index-1) tailored to this tooling, or the [FHIR API](https://docs.b2ihealthcare.com/snow-owl/8.x/index-3/index-3) for a representation that is uniform across different kinds of code systems. For the sake of simplicity, we will use the former in this example.

To list all available concepts in a code system, use the following command (just as with importing, the second `SNOMEDCT` in the request path represents the code system identifier):

```bash
curl http://localhost:8080/snowowl/snomedct/SNOMEDCT/concepts?pretty
```

The expected response is:

```json
{
  "items": [ ],
  "limit": 50,
  "total": 0
}
```

The concept list is empty, indicating that we haven't imported anything into Snow Owl - yet.
