For non-technical teams
Start with the simplest path
Get a free key, use the playground, and choose one API based on the job you want done such as cleaning JSON, extracting fields, or summarizing context.
Growing API library
Start with a free key, try practical APIs in a live playground, and move into standard or premium access only when you actually need it. If you are non-technical, start with the plain-language guides. If you are a developer, vibe coder, or AI agent, the structured catalog and docs are ready too.
Catalog preview
POST /v1/json/clean
{
"raw": "{name: \"Ada\", plan: starter, trialEnds: \"2026-04-15\", }"
}Structured output
{
"cleaned": {
"name": "Ada",
"plan": "starter",
"trialEnds": "2026-04-15"
},
"top_level_type": "object",
"repair_applied": true,
"warnings": [
"Unquoted object keys quoted",
"Bareword string values quoted"
]
}AutonomyCore is a JSON-first API library for developers, vibe coders, and AI agents who want practical workflow APIs, business data APIs, and structured output APIs without heavy platform overhead. It is designed for teams that want free-start API access, simple pay-per-request pricing, premium data routes, and machine-friendly contracts that are easy to test, automate, and ship quickly.
Start here
The site is designed for both non-technical users and technical users. Pick the path that feels closest to your job first, then go deeper only if you need to.
For non-technical teams
Get a free key, use the playground, and choose one API based on the job you want done such as cleaning JSON, extracting fields, or summarizing context.
For developers
Browse the catalog by access lane, copy a request example, and move from testing to integration without changing the contract.
For AI agents
Use the docs and catalog to choose by route, pricing class, access lane, and example contract. The product is designed to be searchable in plain language and machine-friendly.
GET /v1/catalog/apis
Access lanes
Start on the free lane for eligible standard APIs, stay on the same standard family when you need more volume, and treat premium business-data APIs as a separate product lane with managed access.
Free start
10 requests/day
Free keys are instant and designed for evaluation, prototypes, and low-volume agent workflows on eligible standard APIs.
Standard metered
$0.01 USD/request
When the free cap stops being enough, keep using the same standard utility and decision-support APIs with flat per-request pricing.
Premium data
$1.00 USD/request
Premium business and niche data APIs sit in their own lane so the higher-value data products are easy to spot and price separately.
Why teams start here
AutonomyCore focuses on small, composable APIs that help people and agents clean, transform, validate, compress, and route data without needing a heavy platform or a lot of setup.
Clean JSON contracts, practical endpoints, and low-friction integration patterns that stay easy to reason about.
Easy-to-copy examples, clear pricing lanes, and structured outputs that help fast builders ship without getting lost in platform complexity.
Predictable schemas, machine-readable layout, and stable examples that work for automated systems and humans alike.
Focused APIs, minimal overhead, and direct request flows designed to solve one useful job at a time.
The library grows over time, so you can start with one practical endpoint and add more utilities as needs change.
Browse by access
The standard lane currently contains 18 APIs, including 14 launch-now utilities and 4 monitored scoring routes. The premium lane contains 5 business-data APIs, with 5 still clearly marked as preview while rollout continues.
Free start + standard lane
These are the APIs you can evaluate immediately with a free self-serve key. When you outgrow the daily allowance, you stay on the same standard routes with metered pricing instead of moving to a different product surface.
Data Cleanup
Fix broken JSON before it breaks your workflow.
Turn messy JSON-like text into clean structured data.
Live route and a good place to start when you want predictable JSON quickly.
Good for
Free self-serve now, metered when you scale
Transcript Cleanup
Turn messy transcript text into clear speaker turns.
Clean up a raw transcript into a simpler turn-by-turn format.
Live route and a good place to start when you want predictable JSON quickly.
Good for
Free self-serve now, metered when you scale
Workflow Tagging
Add useful workflow tags to messy notes in one step.
Apply labels like urgent, follow-up, or payment-plan to text.
Live route and a good place to start when you want predictable JSON quickly.
Good for
Free self-serve now, metered when you scale
Writing & Rewrite
Rewrite rough text so it is clearer without changing the meaning.
Clean up notes or messages into a more polished form.
Live route and a good place to start when you want predictable JSON quickly.
Good for
Free self-serve now, metered when you scale
Privacy & Redaction
Hide emails, phones, and links before text leaves your system.
Remove common sensitive data from text with clear redaction markers.
Live route and a good place to start when you want predictable JSON quickly.
Good for
Free self-serve now, metered when you scale
Context & Chunking
Split long text into smaller pieces that are easier to process.
Break long text into stable chunks for search, prompts, or storage.
Live route and a good place to start when you want predictable JSON quickly.
Good for
Free self-serve now, metered when you scale
Field Extraction
Pull known fields out of messy text without writing custom parsers.
Extract values like names, dates, amounts, or risk labels into JSON.
Live route and a good place to start when you want predictable JSON quickly.
Good for
Free self-serve now, metered when you scale
Date Cleanup
Turn human-written dates into clean ISO dates.
Normalize messy or mixed date formats before they hit a workflow.
Live route and a good place to start when you want predictable JSON quickly.
Good for
Free self-serve now, metered when you scale
Premium data lane
The premium lane is intentionally separate so higher-value data products are not buried under utility APIs. These routes are priced and sold differently because the data itself is part of the product value.
Premium Business Data
Search Australian businesses with contact and readiness signals in one place.
Find Australian businesses by name, industry, location, or filters without stitching data sources together.
Preview premium data route. Good for integration planning, with rollout and freshness handled more carefully.
Good for
Managed premium access
Premium Business Data
Open one business profile with contacts, readiness, and evidence already grouped for you.
Get one cleaned business record with key contact, qualification, and evidence fields in one response.
Preview premium data route. Good for integration planning, with rollout and freshness handled more carefully.
Good for
Managed premium access
Premium Business Data
Get the best available contact options for one business in a cleaner format.
Return phone and email contacts for one business with confidence and privacy-safe timing signals.
Preview premium data route. Good for integration planning, with rollout and freshness handled more carefully.
Good for
Managed premium access
Premium Business Data
See how sales-ready a business looks without building your own scoring logic.
View the readiness and qualification signals for one business in a simpler, public-safe format.
Preview premium data route. Good for integration planning, with rollout and freshness handled more carefully.
Good for
Managed premium access
Premium Business Data
Show why a business record looks trustworthy without exposing raw scrape data.
View evidence summaries behind a business record, such as website and source signals, in a cleaner format.
Preview premium data route. Good for integration planning, with rollout and freshness handled more carefully.
Good for
Managed premium access
Test immediately
If you are unsure where to start, use the playground first. The standard utility and decision-support endpoints are the friendliest place to test the product, while business-data routes remain clearly marked as premium preview.
Live API playground
GET /v1/businesses
Find Australian businesses by name, industry, location, or filters without stitching data sources together.
Preview premium data route. Good for integration planning, with rollout and freshness handled more carefully.
Response
Choose an endpoint, adjust the JSON request, and run it to see a structured response.
Quickstart
The examples below are technical enough for developers and agents, but the same pattern also works as a simple mental model for non-technical teams: get a key, send JSON, receive structured output.
curl -X POST "https://api.autonomycore.com/v1/score-call-outcome" \
-H "Content-Type: application/json" \
-H "X-API-Key: $YOUR_API_KEY" \
-d '{
"transcript": "Salesperson: We can activate today. Customer: Great, send the invoice and I will pay this afternoon."
}'Pricing
Start with free self-serve access, move into standard metered usage for practical APIs, and upgrade into premium business or niche data endpoints when the value justifies it.
Free
Get a key instantly and evaluate free-eligible standard APIs without waiting for approval.
Standard metered
Stay on the same standard API family after the free cap with simple per-request pricing.
Premium
Upgrade into a separate premium data lane for business intelligence and niche high-value routes.
FAQ
The platform is designed to stay lightweight and easy to evaluate. These are the questions most teams ask before they integrate.
AutonomyCore is built for developers, vibe coders, AI agents, and non-technical teams that want practical APIs with clear contracts, fast onboarding, and simple usage pricing.
Yes. You can start with 10 requests per day on free-eligible standard APIs and test the platform immediately without an approval queue.
The free tier includes 10 requests per day. Standard APIs then move to flat metered usage, while premium data APIs use premium pricing.
Yes for the free tier. Go to /login, get a free key instantly, and start calling free-eligible APIs right away. Metered and premium upgrades are managed separately in this version.
Yes. The library evolves over time. Live APIs remain clearly labeled, while preview APIs show intended shapes without overpromising availability.
The current pricing model has three layers: free self-serve access for eligible standard APIs, standard metered usage at $0.01 USD per request, and premium data APIs starting at $1.00 USD per request.
Contact
Use the form for onboarding questions, product fit, or higher-volume usage discussions. Messages go straight into the inbound workflow.
Current public-ready bundle
Start with JSON cleaning, transcript formatting, extraction, transformation, redaction, chunking, compression, validation, next-step routing, conversion, and shaping. Premium business search, detail, and contacts are preview-backed by the canonical UBI graph while rollout continues.