List connected social networks

Retrieve all social networks configured for your organization. This endpoint returns all stored social networks across all supported platforms.

Security: For security reasons, the client_secret field is never included in API responses, even though it is stored securely in the database. Only the client_key (public identifier), network type, and metadata are returned.

Use Cases:

  • Audit which social networks are configured
  • Check if social networks are configured before attempting to connect accounts
  • Verify which platforms are available for posting
  • Monitor social network creation timestamps
GET/v1/social-networks

Response Body

fetch("https://api.outstand.so/v1/social-networks", {  method: "GET"})
{
  "success": true,
  "data": [
    {
      "id": "abc123",
      "network": "x",
      "client_key": "your_client_key_here",
      "createdAt": "2025-01-15T10:30:00Z",
      "updatedAt": "2025-01-15T10:30:00Z"
    }
  ],
  "count": 3
}
{
  "success": false,
  "error": "Internal server error",
  "message": "Database connection failed"
}