Skip to main content
GET
/
api
/
v0
/
companies
/
{company_ref}
/
profile
Get a public client profile.
curl --request GET \
  --url https://api.example.com/api/v0/companies/{company_ref}/profile
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "handle": "<string>",
  "logo": "<string>",
  "liveRepositories": [
    {
      "name": "<string>",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "report": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "timeframe": {
        "start": "2023-11-07T05:31:56Z",
        "end": "2023-11-07T05:31:56Z"
      },
      "currencyCode": "<string>",
      "totalRewardPot": "<string>"
    }
  ],
  "completedRepositories": [
    {
      "name": "<string>",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "report": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "timeframe": {
        "start": "2023-11-07T05:31:56Z",
        "end": "2023-11-07T05:31:56Z"
      },
      "currencyCode": "<string>",
      "totalRewardPot": "<string>"
    }
  ],
  "repositories": [
    {
      "name": "<string>",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "report": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "timeframe": {
        "start": "2023-11-07T05:31:56Z",
        "end": "2023-11-07T05:31:56Z"
      },
      "currencyCode": "<string>",
      "totalRewardPot": "<string>"
    }
  ],
  "completedReviews": [
    {
      "name": "<string>",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "report": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "timeframe": {
        "start": "2023-11-07T05:31:56Z",
        "end": "2023-11-07T05:31:56Z"
      },
      "currencyCode": "<string>",
      "totalRewardPot": "<string>"
    }
  ],
  "about": "<string>",
  "website": "<string>",
  "github": "<string>",
  "twitter": "<string>",
  "lastReview": 123,
  "totalRewardPot": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.cantina.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

company_ref
required

company ID or handle Reference to a resource, either by id or handle (username).

Response

Company details

Public company profile.

id
string<uuid>
required
name
string
required
handle
string
required
liveRepositories
object[]
required

Bounty or competition with any of the following statuses: upcoming, live, judging, escalations, and escalations ended.

completedRepositories
object[]
required

All completed public competitions and bounties.

repositories
object[]
required
completedReviews
object[]
required
about
string | null
website
string | null
github
string | null
twitter
string | null
lastReview
integer<int32> | null

Number of days since the last completed competition or collaborative review.

totalRewardPot
string | null

The sum of total reward pot of all competitions and bounties.