Connect Domain
API referenceApplications

List applications

GET
/applications
AuthorizationBearer <token>

API key: sk_test_… / sk_live_… (hashed at rest, scoped)

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/applications"
{  "data": [    {      "name": "string",      "environment": "test",      "allowed_origins": [        "http://example.com"      ],      "record_template": [        {          "host": "string",          "type": "A",          "value": "string",          "ttl": 300,          "priority": 0        }      ],      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "created_at": "2019-08-24T14:15:22Z"    }  ]}
{  "error": {    "code": "string",    "message": "string",    "details": null  }}