---
title: "Get a Resource"
method: GET
path: "/v1/resources/{id}"
tags: ["Catalog Resources"]
---

# Get a Resource

`GET /v1/resources/{id}`

Fetches a resource by ID.

## Response `200`

A response containing a single resource object.

- CatalogResource — Information about a catalog resource.
  - `id` string, base64url, required — The resource ID.
  - `name` string, nullable, required — The name of the resource. Will be `null` when the resource has not yet been hydrated by the integration.
  - `integration` IntegrationRef, required — Short-hand descriptor of an integration installed within the catalog.
    - `name` string, required
    - `display_name` string, required
    - `instance` IntegrationInstanceRef, required — Short-hand descriptor of an integration instance.
      - `id` string, uuid, required — The integration instance ID.
      - `name` string, required — The machine name of the integration instance that uniquely identifies it within the catalog.
      - `display_name` string, required — The display name of the integration instance.
  - `type` string, required — The resource type. Available resource types are compiled from the integrations installed within the catalog.
  - `config` CatalogResourceConfig, required — JSON object representing the properties used to identify the resource in the third-party system. The schema depends on the resource type and is dynamically registered at runtime.
  - `integration_data` object, nullable, required — JSON object containing schemaless integration data of the resource. This field is always populated by the system backing the integration. When `null`, the resource has been manually initialized via API but has yet to be hydrated by the integration.
  - `archived` boolean, required — Whether or not the resource has been archived.
  - `service_associations` number, required — The number of catalog services this resource is mapped to.
  - `created_at` string, date-time, required — An ISO-8601 timestamp representation of entity creation date.
  - `updated_at` string, date-time, required — An ISO-8601 timestamp representation of entity update date.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found

---

[API](https://skmtc.net/kong/apis/konnect-api-go-sdk.md) · [All operations](https://skmtc.net/kong/apis/konnect-api-go-sdk/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kong/konnect-api-go-sdk/versions/f920f418f552/schema)
