Skip to content

List Instagram Agents

Retrieve a paginated list of Instagram agents.

GET /external/v1/instagram-agents

Authentication

Requires API key with instagram_agents:read permission.

Query Parameters

ParameterTypeDefaultDescription
statusstring-Filter by agent status
pagenumber1Page number
limitnumber50Items per page (max 100)

Response

json
{
  "success": true,
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "Fitness Influencers SP",
      "description": "Collect fitness influencer profiles in São Paulo",
      "search_niche": "fitness",
      "search_location": "São Paulo",
      "status": "active",
      "total_profiles_found": 85,
      "total_limit": 200,
      "created_at": "2026-02-10T08:00:00Z",
      "updated_at": "2026-03-20T14:22:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "per_page": 50,
    "total": 5,
    "total_pages": 1,
    "has_next": false,
    "has_prev": false
  }
}

Example

cURL

bash
curl --request GET \
  --url "https://app.getraze.com/external/v1/instagram-agents?status=active" \
  --header "X-API-Key: YOUR_API_KEY"

JavaScript

javascript
const response = await fetch(
  'https://app.getraze.com/external/v1/instagram-agents',
  {
    headers: { 'X-API-Key': 'YOUR_API_KEY' }
  }
);
const data = await response.json();

Python

python
import requests

response = requests.get(
    'https://app.getraze.com/external/v1/instagram-agents',
    headers={'X-API-Key': 'YOUR_API_KEY'}
)
data = response.json()

Errors

StatusCodeDescription
401MISSING_API_KEYNo API key provided
401INVALID_API_KEYInvalid API key
403INSUFFICIENT_PERMISSIONSMissing instagram_agents:read permission

GetRaze - AI-Powered Lead Generation