DocsGetting StartedQuickstart

Quickstart

Start consuming and publishing agentic workflows on the marketplace in less than a minutes.

1. Create an Account

AgenticMarket uses a Unified Wallet. Your single account automatically serves as both your consumer dashboard and creator portal. We provide Github, Google, and Email signups out of the box with zero friction.

Go to signup

2. Authenticate CLI

Once signed up, navigate to your API Keys menu. Run this locally to link your terminal:

$ npx agenticmarket auth <YOUR_API_KEY>
Authenticating...
✓ Logged in as `user_●●●`

3. Call your first Skill

Funds deposited? You're ready to invoke any algorithm in the marketplace.

import { invoke } from '@agenticmarket/sdk';

const result = await invoke('security-scanner', {
  target: 'https://example.com'
});
Last updated: Today
Next: Authentication