GET
/
sources
curl --request GET \
  --url https://app.getcensus.com/api/v1/sources \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "pagination": {
    "total_records": 14,
    "per_page": 25,
    "prev_page": 1,
    "page": 2,
    "next_page": 3,
    "last_page": 10
  },
  "data": [
    {
      "id": 4,
      "name": "Snowflake - xxxxxxx.us-east-1",
      "label": "Acme Inc. Snowflake",
      "type": "snowflake",
      "created_at": "2023-07-22T23:42:47.239Z",
      "last_test_succeeded": true,
      "last_tested_at": "2023-11-07T05:31:56Z",
      "connection_details": {
        "account": "xxxxxxx.us-east-1,",
        "user": "DEV,",
        "warehouse": "TEST,",
        "use_keypair": false
      }
    }
  ]
}

Authorizations

Authorization
string
headerrequired

Bearer token for the current workspace. Can be retrieved from the Workspace's settings page.

Query Parameters

page
number
default: 1

Designates which page of results to return. Always starts at 1. If 0 is specified, it defaults to 1.

per_page
number
default: 25

Determines the number of results on each page. It can't exceed 100.

order
enum<string>
default: desc

Organizes the results based on their creation time, either ascending or descending.

Available options:
asc,
desc

Response

200 - application/json
status
enum<string>
required

The outcome of the request

Available options:
success
pagination
object
required

An object to help you navigate the list of results.

data
object[]
required

The list of results.