API v1.0

Build with the geOracle API

Powerful API to analyze, optimize, and automate your website's schema and SEO for generative AI platforms

Fast Integration

Get started in minutes with our simple REST API. Full TypeScript support included.

Secure by Default

API key authentication, rate limiting, and token-based billing built-in.

Full-Featured

SEO analysis, schema validation, GitHub PR automation, and more.

Quick Start Guide

Get up and running with the geOracle API in less than 5 minutes

1

Install the Client

bash
npm install @geo-optimizer/client
# or
yarn add @geo-optimizer/client
# or
pnpm add @geo-optimizer/client
2

Get Your API Key

Sign up for an account and get your API key from the dashboard.

3

Make Your First Request

typescript
import { GeoClient } from '@geo-optimizer/client';

const client = new GeoClient({
  apiKey: 'geo_your_api_key_here'
});

// Analyze a webpage
const result = await client.analyze({
  url: 'https://yourwebsite.com',
  analysisType: 'full'
});

console.log(`SEO Score: ${result.analysis.seo.score}`);
console.log(`Schema Types Found: ${result.analysis.schema.types.join(', ')}`);
4

Get Recommendations

typescript
// Get actionable recommendations
result.analysis.recommendations.forEach(rec => {
  console.log(`[${rec.priority.toUpperCase()}] ${rec.title}`);
  console.log(rec.description);
  console.log(`Impact: ${rec.impact}`);
  console.log('---');
});

// Tokens used
console.log(`Tokens used: ${result.tokensUsed}`);

Simple, Token-Based Pricing

Pay only for what you use. No hidden fees.

FREE

$0

100 tokens/month

  • Basic analysis
  • Community support
Most Popular

PRO

$49.99

10,000 tokens/month

  • Priority support
  • Custom recommendations
  • API access

ENTERPRISE

$199.99

100,000 tokens/month

  • 24/7 support
  • SLA guarantee
  • Dedicated manager

Ready to optimize for AI?

Start improving your site's visibility in AI-powered search today

    Documentação da API geOracle | Recursos para Desenvolvedores | geOracle.ai - Faça a Ponte Entre Sua Marca e a IA