---
title: "Search for versions by content"
method: POST
path: "/search/versions"
tags: ["Search", "Versions"]
---

# Search for versions by content

`POST /search/versions`

Returns a paginated list of all versions that match the posted content.

This operation can fail for the following reasons:

* Provided content (request body) was empty (HTTP error `400`)
* A server error occurred (HTTP error `500`)

## Query parameters

- `canonical` boolean
- `artifactType` string
- `offset` integer
- `limit` integer
- `order` 'asc' | 'desc'
- `orderby` 'groupId' | 'artifactId' | 'version' | 'name' | 'createdOn' | 'modifiedOn' | 'globalId'
- `groupId` string — An ID of a single artifact group.
- `artifactId` string — The ID of a single artifact.
- `state` 'ENABLED' | 'DISABLED' | 'DEPRECATED' | 'DRAFT' | 'SUNSET' — Describes the state of an artifact or artifact version. * ENABLED * DISABLED * DEPRECATED * DRAFT * SUNSET — Signals that a migration deadline has passed and the version will be removed. Requires transitioning through DEPRECATED first. Added in 3.3.0.
- `skipCount` boolean

## Response `200`

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

- VersionSearchResults — Describes the response received when searching for artifacts.
  - `count` integer, required — The total number of versions that matched the query (may be more than the number of versions returned in the result set).
  - `versions` SearchedVersion[], required — The collection of artifact versions returned in the result set.
    - `name` string
    - `description` string
    - `createdOn` string, date-time, required
    - `owner` string, required
    - `artifactType` string, required
    - `state` 'ENABLED' | 'DISABLED' | 'DEPRECATED' | 'DRAFT' | 'SUNSET', required — Describes the state of an artifact or artifact version. * ENABLED * DISABLED * DEPRECATED * DRAFT * SUNSET — Signals that a migration deadline has passed and the version will be removed. Requires transitioning through DEPRECATED first. Added in 3.3.0.
    - `globalId` integer, required
    - `version` string, required — A single version of an artifact. Can be provided by the client when creating a new version, or it can be server-generated. The value can be any string unique to the artifact, but it is recommended to use a simple integer or a semver value.
    - `contentId` integer, required
    - `artifactId` string, required — The ID of a single artifact.
    - `groupId` string — An ID of a single artifact group.
    - `modifiedBy` string
    - `modifiedOn` string, date-time
    - `labels` Labels — User-defined name-value pairs. Name and value must be strings.

## Other responses

- `400` — Common response for all operations that can return a `400` error.
- `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)
