GET
/
v1
/
connections
List connections
const url = 'https://api.runmorph.dev/v1/connections';
const options = {
  method: 'GET',
  headers: {'x-api-key': '<api-key>', 'x-api-secret': '<api-key>'},
  body: undefined
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
{
  "object": "list",
  "data": [
    {
      "object": "connection",
      "connectorId": "<string>",
      "ownerId": "<string>",
      "operations": [
        "<string>"
      ],
      "status": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "next": "<string>"
}

Authorizations

x-api-key
string
header
required
x-api-secret
string
header
required

Query Parameters

limit
default:50
cursor
string
q
string

Query parameter that accepts a raw query string and auto-detects and parses emails, phone numbers (E.164), URLs, domains, and ISO dates

filters
object
fields

Response

OK

The response is of type object.