Skip to main content
GET
/
api
/
v1
/
artifacts
/
{artifact_id}
Get a single artifact by ID, with consumer count and orphan flag.
curl --request GET \
  --url https://api.example.com/api/v1/artifacts/{artifact_id} \
  --header 'X-API-Key: <api-key>'
{
  "artifact_type": "<string>",
  "connected_org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "registry_url": "<string>",
  "source_repository_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "updated_at": "2023-11-07T05:31:56Z",
  "version": "<string>",
  "consumer_count": 0,
  "is_orphan": false,
  "source_repository": {
    "full_path": "<string>",
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.riftmap.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Headers

X-Workspace-Id
string | null

Path Parameters

artifact_id
string<uuid>
required

Cookies

riftmap_access
string | null

Response

Successful Response

An artifact (Docker image, Python package, Terraform module, etc.).

artifact_type
string
required
connected_org_id
string<uuid>
required
created_at
string<date-time>
required
id
string<uuid>
required
name
string
required
registry_url
string | null
required
source_repository_id
string<uuid> | null
required
updated_at
string<date-time>
required
version
string | null
required
consumer_count
integer
default:0
is_orphan
boolean
default:false
source_repository
ArtifactSourceRepo · object

Minimal representation of the repository that produces an artifact.