GET
/
api
/
repos
/
{namespace}
/
{repo_name}
curl --request GET \
  --url https://hub.oxen.ai/api/repos/{namespace}/{repo_name} \
  --header 'Authorization: Bearer <token>'
{
  "repository": {
    "name": "my-milkshake-brings-oxen-to-the-yard",
    "namespace": "bessie"
  },
  "status": "success",
  "status_message": "resource_found"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

namespace
string
required
Example:

"ox"

repo_name
string
required
Example:

"test-repo"

Response

200 - application/json
OK
repository
object
status
string
Example:

"success"

status_message
string
Example:

"resource_found"