1. Profiles
swonkie.dev
  • Introduction
  • 🆕 MCP Server
  • Changelog
  • Quick Start
  • Social Networks
    • Instagram v2
    • Google My Business
    • YouTube
    • X (Twitter)
    • Threads
    • Instagram
    • LinkedIn
    • TikTok
    • Facebook
  • ✨ Andie
    • Generate an Image
      POST
  • Search
    • Search Profiles
      GET
  • Profiles
    • My Profiles
      GET
    • Competitors
      GET
  • Competitors
    • Add Competitor
      POST
    • Delete Competitor
      DELETE
  • Insights
    • Getting Started
    • My Profile Insights Metrics
      GET
    • My Profile Insights
      GET
    • My Profile Insights Posts
      GET
    • Competitor Insights Metrics
      GET
    • Competitor Insights
      GET
    • Competitor Insights Posts
      GET
  • Posts
    • Getting Started
    • Limits by Social Network
    • List Posts
    • Get a Post
    • Create a Post
    • Update a Post
    • Validate a Post
    • Delete a Post
    • Change Post Stage
  • Labels
    • Getting Started
    • List Labels
    • Create a Label
  • Media
    • Get a Media
    • Create a Media
    • Upload File to Media
    • Confirm Uploaded Media
    • Delete a Media
    • Create a Media from URL
  • Examples
    • Publish
Back to Home
Back to Home
Login
  1. Profiles

My Profiles

GET
/profiles
Retrieves a paginated list of all connected social media profiles in your workspace. This endpoint allows you to search and filter your authenticated social network accounts, view their connection status, and access basic profile information across multiple platforms.

Request

Query Params

Header Params

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.swonkie.dev/v2/profiles?skip=0&take=10&query=My%20Page&net=facebook%2Cinstagram' \
--header 'X-API-ID: ' \
--header 'X-API-KEY: '
Response Response Example
{
    "hasMore": true,
    "items": [
        {
            "id": "Tjg3YjhSU2xZREFqM1RqOTRnZTdpZz09",
            "name": "Brand Official Page",
            "username": "brandofficial",
            "picture": "https://storage.example.com/profiles/abc123.jpg",
            "net": {
                "name": "Facebook",
                "code": "facebook"
            },
            "statusLevel": "OK"
        },
        {
            "id": "RDlHZERwbitlK1lmQU0xNW0zWUhWZz09",
            "name": "Brand Instagram",
            "username": "brand_insta",
            "picture": "https://storage.example.com/profiles/def456.jpg",
            "net": {
                "name": "Instagram",
                "code": "instagram"
            },
            "statusLevel": "ERROR"
        }
    ],
    "total": 25
}
Modified at 2026-06-19 17:25:22
Previous
Profiles
Next
Competitors
Built with