Skip to main content
GET
https://agent.usedari.com
/
portals
/
{org_id}
curl https://agent.usedari.com/portals/my-org \
  -H "X-API-Key: YOUR_API_KEY"
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "org_id": "my-org",
    "endpoint_name": "contact_form",
    "start_url": "https://example.com/contact",
    "task": "Fill out the contact form",
    "form_schema": {
      "type": "object",
      "properties": {
        "name": {"type": "string"},
        "email": {"type": "string"}
      },
      "required": ["name", "email"]
    },
    "output_schema": null,
    "profile_id": null,
    "humanized_urls": null,
    "skills": [],
    "created_at": "2025-01-15T10:30:00Z",
    "updated_at": "2025-01-15T10:30:00Z"
  }
]
Returns all portals configured for the specified organization.

Path Parameters

org_id
string
required
Organization ID

Headers

X-API-Key
string
required
Organization API key

Response Fields

Returns an array of portal objects:
id
string
UUID of the portal
org_id
string
Organization ID
endpoint_name
string
Unique endpoint name within the organization
start_url
string
URL where the automation begins
task
string
Task description for the AI agent
form_schema
object
JSON Schema defining the expected input data
output_schema
object
JSON Schema defining the expected output data
profile_id
string
UUID of the associated browser profile
humanized_urls
string[]
URLs to humanize during automation
skills
object[]
Attached skills
created_at
string
ISO 8601 creation timestamp
updated_at
string
ISO 8601 update timestamp
curl https://agent.usedari.com/portals/my-org \
  -H "X-API-Key: YOUR_API_KEY"
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "org_id": "my-org",
    "endpoint_name": "contact_form",
    "start_url": "https://example.com/contact",
    "task": "Fill out the contact form",
    "form_schema": {
      "type": "object",
      "properties": {
        "name": {"type": "string"},
        "email": {"type": "string"}
      },
      "required": ["name", "email"]
    },
    "output_schema": null,
    "profile_id": null,
    "humanized_urls": null,
    "skills": [],
    "created_at": "2025-01-15T10:30:00Z",
    "updated_at": "2025-01-15T10:30:00Z"
  }
]