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.",
  "price_per_1k_usd": 3.5,
  "unit": "profiles",
  "parameters": {
    "usernames": {
      "type": "array",
      "required": true,
      "name": "Usernames",
      "description": "List of Instagram usernames to scrape."
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.mindcase.co/llms.txt

Use this file to discover all available pages before exploring further.

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."

price_per_1k_usd
number
required
Example:

3.5

unit
string
required
Example:

"profiles"

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