Run your first workflow

Create an agent, run it, and review results in the Platform.

The fastest path is the Platform UI. You can build and run workflows without writing code, then automate via API when you’re ready.

1) Connect data

In the Platform, open Data sources and connect the system you want to use (CSV upload, database, SFTP, or an integration).

2) Create an agent

In Agents, create a new agent (or start from a blueprint) and map it to your data sources.

3) Run and review

Run the agent and review outputs, logs, and audit history from the same workspace.

Verify from the API (optional)

List agents in your workspace:

curl -X GET "https://api.gospace.ai/v1/agents/agents?page_size=25" \
  -H "x-api-key: $GOSPACE_API_KEY"

If you receive a workspace scoping error, include x-workspace-key: <workspace_id>.

Next