Overview
useFantasma
Hosted Fantasma setup and managed endpoint guidance.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Hosted Fantasma setup and managed endpoint guidance.
import Foundation
import FantasmaSDK
let serverURL = URL(string: "https://api.usefantasma.com")!
try await Fantasma.configure(
serverURL: serverURL,
writeKey: "<your-usefantasma-ingest-key>"
)
import com.fantasma.sdk.FantasmaClient
import com.fantasma.sdk.FantasmaConfig
val client = FantasmaClient(
context = applicationContext,
config = FantasmaConfig(
serverUrl = "https://api.usefantasma.com",
writeKey = "<your-usefantasma-ingest-key>",
),
)
import 'package:fantasma_flutter/fantasma_flutter.dart';
final client = FantasmaClient(
FantasmaConfig(
serverUrl: 'https://api.usefantasma.com',
writeKey: '<your-usefantasma-ingest-key>',
storageNamespace: 'primary',
),
);