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

Competitors

GET
/competitors
Retrieves a paginated list of all competitor profiles being monitored in your workspace. This endpoint allows you to track and analyze competitor social media accounts across multiple platforms, view their monitoring status, and access basic profile information for competitive intelligence purposes.

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/competitors?skip=0&take=10&query=Competitor%20Name&net=facebook%2Cinstagram' \
--header 'X-API-ID: ' \
--header 'X-API-KEY: '
Response Response Example
{
    "hasMore": false,
    "items": [
        {
            "id": "RDlHZERwbitlK1lmQU0xNW0zWUhWZz09",
            "name": "Nike",
            "username": "nike",
            "picture": "https://storage.example.com/profiles/nike123.jpg",
            "net": {
                "name": "Instagram",
                "code": "instagram"
            },
            "statusLevel": "ACTIVE"
        },
        {
            "id": "Tjg3YjhSU2xZREFqM1RqOTRnZTdpZz09",
            "name": "Nike Official",
            "username": "nike",
            "picture": "https://storage.example.com/profiles/nike456.jpg",
            "net": {
                "name": "Facebook",
                "code": "facebook"
            },
            "statusLevel": "NOT_AVAILABLE"
        }
    ],
    "total": 2
}
Modified at 2026-06-30 17:47:30
Previous
My Profiles
Next
Add Competitor
Built with