Skip to main content
GET
/
v1
/
repo
/
{repo_id}
curl -X GET https://api.relace.run/v1/repo/123e4567-e89b-12d3-a456-426614174000 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "repo_id": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2024-01-15T10:30:00Z",
  "updated_at": "2024-01-15T11:15:00Z",
  "metadata": {
    "name": "my-project",
    "description": "A sample project"
  },
  "auto_index": true
}
Repos is now in Public Beta! Reach out to us at info@relace.ai if you have any questions or need help with the integration.

Path Parameters

repo_id
string
required
UUID of the repo to retrieve

Response

repo_id
string
Unique identifier for the repo
created_at
string
Time when the repo was originally created (ISO 8601 timestamp)
updated_at
string
Time when the repo was last modified (ISO 8601 timestamp)
metadata
object
Custom key/value pairs associated with the repo
auto_index
boolean
Whether the repo is configured to index source files for semantic retrieval
curl -X GET https://api.relace.run/v1/repo/123e4567-e89b-12d3-a456-426614174000 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "repo_id": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2024-01-15T10:30:00Z",
  "updated_at": "2024-01-15T11:15:00Z",
  "metadata": {
    "name": "my-project",
    "description": "A sample project"
  },
  "auto_index": true
}