Skip to main content
GET
/
v1
/
applications
/
{applicationId}
Get Application
curl --request GET \
  --url https://api.anchorbrowser.io/v1/applications/{applicationId} \
  --header 'anchor-api-key: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "url": "<string>",
  "description": "<string>",
  "identity_count": 123,
  "auth_methods": [
    "<string>"
  ],
  "allowed_domains": [
    "<string>"
  ],
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

applicationId
string<uuid>
required

The ID of the application to retrieve

Response

Application details retrieved successfully

id
string<uuid>

Unique identifier for the application

name
string

Name of the application

url
string | null

URL of the application

description
string | null

Description of the application

identity_count
integer

Number of identities associated with this application

auth_methods
string[]

Authentication methods available for this application

allowed_domains
string[]

List of allowed domains for this application

created_at
string<date-time>

Timestamp when the application was created

updated_at
string<date-time>

Timestamp when the application was last updated