# Get

Launch stage: GA

`GET /api/2.0/postgres/{name=catalogs/*}`

Get a Database Catalog.

API scopes: postgres

## Path parameters

- `name` (string, optional)
  The full resource path of the catalog to retrieve.
  
   Format: "catalogs/{catalog_id}".

## Returns

Returns the Catalog object.

## Response

```json
{
  "name": "string",
  "uid": "string",
  "spec": {
    "postgres_database": "string",
    "create_database_if_missing": true,
    "branch": "string"
  },
  "status": {
    "postgres_database": "string",
    "project": "string",
    "branch": "string"
  },
  "create_time": "string",
  "update_time": "string",
  "catalog_id": "string"
}
```

