API Reference

Use Oda's powerful AI programmatically.

COMING SOON

Oda API

Our API is currently in development. Join the waitlist to get early access and be notified when it is ready.

  • RESTful API endpoints
  • Code generation on demand
  • SDKs for popular languages
Request Access
const response = await oda.generate({
  prompt: "Create a landing page",
  template: "modern",
  framework: "react"
});

// Returns generated code
console.log(response.code);

Planned Endpoints

POST /v1/generate

Generate code from natural language prompts.

GET /v1/templates

List available templates and their configurations.

POST /v1/projects

Create and manage projects programmatically.

PUT /v1/projects/:id/publish

Publish projects with a single API call.