Skip to main content
GET
/
resources
List Resources
curl --request GET \
  --url https://api.example.com/resources/
[
  {
    "provider": "<string>",
    "resource": "<string>",
    "name": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "config": {},
    "dependencies": [],
    "owner_references": [],
    "outputs": {},
    "error": "<string>",
    "lifecycle_state": "draft",
    "pending_event_id": "<string>",
    "tags": [
      "<string>"
    ]
  }
]

Query Parameters

provider
string | null

Filter by provider name

resource
string | null

Filter by resource type

tags
string[] | null

Filter by tags (all must match)

Response

Successful Response

provider
string
required
resource
string
required
name
string
required
created_at
string<date-time>
updated_at
string<date-time>
config
Config · object
dependencies
ResourceReference · object[]
owner_references
OwnerReference · object[]
outputs
Outputs · object
error
string | null
lifecycle_state
enum<string>
default:draft

Resource lifecycle states: DRAFT, PENDING, PROCESSING, READY, FAILED.

Available options:
draft,
pending,
processing,
ready,
failed
pending_event_id
string | null
tags
string[] | null