Skip to main content
GET
/
agents
/
{group}
/
{slug}
Get agent details
curl --request GET \
  --url https://api.mindcase.co/api/v1/agents/{group}/{slug} \
  --header 'Authorization: Bearer <token>'
{
  "group": "instagram",
  "slug": "profiles",
  "name": "Instagram Profiles",
  "description": "Scrape public profile data including bio, follower count, and recent posts.",
  "credits_per_row": 1,
  "parameters": {
    "usernames": {
      "type": "array",
      "required": true,
      "name": "Usernames",
      "description": "List of Instagram usernames to scrape."
    }
  }
}

Authorizations

Authorization
string
header
required

API key in the format mk_live_...

Path Parameters

group
string
required
slug
string
required

Response

Full agent details including parameters

group
string
required
Example:

"instagram"

slug
string
required
Example:

"profiles"

name
string
required
Example:

"Instagram Profiles"

description
string
required
Example:

"Scrape public profile data including bio, follower count, and recent posts."

credits_per_row
integer
required
Example:

1

parameters
object
required
Example:
{
  "usernames": {
    "type": "array",
    "required": true,
    "name": "Usernames",
    "description": "List of Instagram usernames to scrape."
  }
}