Skip to main content
GET
/
v1
/
connections
/
types
List connection types
curl --request GET \
  --url https://api.markifact.com/v1/connections/types \
  --header 'Authorization: Bearer <token>'
[
  {
    "type": "<string>",
    "name": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.markifact.com/llms.txt

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

Returns the connection types that can be used when creating an auth link.

Endpoint

GET /v1/connections/types

Example Request

curl https://api.markifact.com/v1/connections/types \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

[
  {
    "type": "ga4",
    "name": "Google Analytics 4"
  },
  {
    "type": "gads",
    "name": "Google Ads"
  },
  {
    "type": "meta_ads",
    "name": "Meta Ads"
  }
]

Fields

FieldTypeDescription
typestringThe value to use as connection_type when creating an auth link.
namestringHuman-readable connection type name.

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Connection types returned.

type
string
required
name
string
required