> For the complete documentation index, see [llms.txt](https://docs.roboflow.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.roboflow.com/datasets/ko/universe/universe/what-is-roboflow-universe.md).

# Roboflow Universe란?

## 정보

[로보플로우 유니버스](https://universe.roboflow.com/) 는 컴퓨터 비전 데이터셋과 모델을 공유하는 사람들의 세계 최대 커뮤니티입니다.

Universe를 사용하여 모델 학습에 사용할 데이터를 찾을 수 있습니다. 또한 Universe를 사용하여 워크플로에서 사용할 사전 학습된 모델을 찾을 수도 있습니다.

Universe에는 백만 개가 넘는 데이터셋이 공유되었고, 5만 개의 모델이 학습되어 사용할 수 있게 되었습니다.

무료 플랜을 이용 중이라면, 데이터셋과 모델이 Roboflow Universe에 공개됩니다. 유료 플랜을 이용 중이라면 비공개 프로젝트를 만들 수 있습니다. 비공개 프로젝트는 워크스페이스에서만 접근할 수 있으며, 절대 공개되지 않습니다.

<figure><img src="/files/8e985c52e4b167305b8729e0fd32a0fd7daaf2e4" alt=""><figcaption><p>로보플로우 유니버스 홈 페이지.</p></figcaption></figure>

이 문서 섹션에서는 컴퓨터 비전 프로젝트에서 Universe를 사용하는 방법을 안내합니다.

## HTTP API

[`로보플로우 유니버스`](https://universe.roboflow.com/) 다음 엔드포인트를 제공합니다:

* [공개 데이터셋 검색](#search-universe-datasets)

### Universe 데이터셋 검색

## GET /universe/search

> Search publicly available datasets on Roboflow Universe. Supports inline filter syntax in the query string (e.g. \`images>100\`, \`dog+stars>=5\`, \`class:cat\`, \`model:yolov8\`, \`object detection\`).

```json
{"openapi":"3.0.3","info":{"title":"Roboflow Universe API","version":"1.0.0"},"servers":[{"url":"https://api.roboflow.com"}],"security":[{"ApiKeyQuery":[]},{"BearerAuth":[]}],"components":{"securitySchemes":{"ApiKeyQuery":{"type":"apiKey","in":"query","name":"api_key"},"BearerAuth":{"type":"http","scheme":"bearer"}}},"paths":{"/universe/search":{"get":{"description":"Search publicly available datasets on Roboflow Universe. Supports inline filter syntax in the query string (e.g. `images>100`, `dog+stars>=5`, `class:cat`, `model:yolov8`, `object detection`).","parameters":[{"schema":{"type":"string"},"name":"q","in":"query","required":true},{"schema":{"type":"integer"},"name":"page","in":"query"}],"responses":{"200":{"description":"OK"},"400":{"description":"Bad Request"},"401":{"description":"Unauthorized"},"429":{"description":"Too Many Requests"},"502":{"description":"Bad Gateway"}}}}}}
```

#### 썸네일 필드

응답의 각 결과에는 두 개의 썸네일 필드가 포함됩니다:

| 필드                    | 유형               | 설명                                                       |
| --------------------- | ---------------- | -------------------------------------------------------- |
| `thumbnail`           | `string \| null` | 프로젝트의 썸네일 이미지 URL입니다. `null` 프로젝트에 아이콘이 설정되지 않은 경우.      |
| `annotationThumbnail` | `string \| null` | 프로젝트의 주석이 포함된 샘플 이미지 URL입니다. `null` 주석 데이터를 사용할 수 없는 경우. |

예시 결과 일부:

```json
{
  "name": "Cars",
  "url": "https://universe.roboflow.com/growth-plan/cars-8q9vz",
  "thumbnail": "https://source.roboflow.com/.../thumb.jpg",
  "annotationThumbnail": "https://source.roboflow.com/.../annotation-cars.png"
}
```

## MCP 서버

AI 에이전트를 [MCP 서버](https://docs.roboflow.com/agents/mcp-server) 그리고 다음 도구를 사용해 Universe를 탐색할 수 있습니다:

<table data-search="false"><thead><tr><th width="290">도구</th><th>설명</th></tr></thead><tbody><tr><td><code>universe_search</code></td><td>Roboflow Universe에서 데이터셋 또는 모델을 검색합니다.</td></tr><tr><td><code>universe_dataset_images_search</code></td><td>공개 Universe 데이터셋의 URL을 기준으로 그 안의 이미지를 검색합니다.</td></tr><tr><td><code>projects_fork</code></td><td>공개 Universe 프로젝트의 비동기 포크를 워크스페이스로 대기열에 추가합니다.</td></tr></tbody></table>
