---
title: "Search for artifacts"
method: GET
path: "/search/artifacts"
tags: ["Search", "Artifacts"]
---

# Search for artifacts

`GET /search/artifacts`

Returns a paginated list of all artifacts that match the provided filter criteria.

This operation can fail for the following reasons:

* A server error occurred (HTTP error `500`)

## Query parameters

- `name` string
- `offset` integer
- `limit` integer
- `order` 'asc' | 'desc'
- `orderby` 'groupId' | 'artifactId' | 'createdOn' | 'modifiedOn' | 'artifactType' | 'name'
- `labels` string[]
- `description` string
- `groupId` string
- `globalId` integer
- `contentId` integer
- `artifactId` string
- `artifactType` string
- `skipCount` boolean

## Response `200`

On a successful response, returns a result set of artifacts - one for each artifact
in the registry that matches the criteria.

- ArtifactSearchResults — Describes the response received when searching for artifacts.
  - `artifacts` SearchedArtifact[], required — The artifacts returned in the result set.
    - `name` string
    - `description` string
    - `createdOn` string, date-time, required
    - `owner` string, required
    - `artifactType` string, required
    - `modifiedOn` string, date-time, required
    - `modifiedBy` string, required
    - `groupId` string, required — An ID of a single artifact group.
    - `artifactId` string, required — The ID of a single artifact.
    - `labels` Labels — User-defined name-value pairs. Name and value must be strings.
  - `count` integer, required — The total number of artifacts that matched the query that produced the result set (may be more than the number of artifacts in the result set).

## Other responses

- `401` — Common response for all operations that can return a `401` error indicating authentication is required.
- `403` — Common response for all operations that can return a `403` error indicating the user is authenticated but not authorized.
- `500` — Common response for all operations that can fail with an unexpected server error.

---

[API](https://skmtc.net/apicurio/apis/apicurio-registry-api-v3.md) · [All operations](https://skmtc.net/apicurio/apis/apicurio-registry-api-v3/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/apicurio/apicurio-registry-api-v3/revisions/c39cb56d7dbc/schema)
