Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.fieldfunded.com/llms.txt

Use this file to discover all available pages before exploring further.

FieldFunded is built on standard REST/JSON architecture, making it compatible with every modern programming language.
[!IMPORTANT] No SDK account required. You only need your API Key (X-API-Key or X-RapidAPI-Key) to start building. The SDKs and code examples below are tools to help you use your key more efficiently.

Official SDKs

We provide official, maintained libraries for the most popular development environments.
LanguagePackage ManagerStatusDocumentation
TypeScript / JSNPM✅ StableView Guide
PythonPyPI🛠️ Coming SoonManual Integration
JavaMaven🛠️ Coming SoonManual Integration
GoGitHub🛠️ Coming SoonManual Integration

TypeScript SDK

The fastest way to integrate for Web, Mobile, and Backend (Node.js/Bun/Deno).

Installation

npm install @fieldfunded/sdk

Initialization

import { FieldFundedSDK } from '@fieldfunded/sdk';

const client = new FieldFundedSDK({ apiKey: 'YOUR_API_KEY' });
const live = await client.getLive();

Manual Integration (Universal)

If you are using a language without an official SDK yet, use standard HTTP libraries. Our API is standard REST/JSON.

Python (using requests)

import requests

def get_live_scores(api_key):
    url = "https://api.fieldfunded.com/v1/live"
    headers = { "X-API-Key": api_key }
    response = requests.get(url, headers=headers)
    return response.json()

Go (using net/http)

package main

import (
    "fmt"
    "net/http"
    "io/ioutil"
)

func main() {
    apiKey := "YOUR_API_KEY"
    url := "https://api.fieldfunded.com/v1/live"

    req, _ := http.NewRequest("GET", url, nil)
    req.Header.Set("X-API-Key", apiKey)

    client := &http.Client{}
    resp, _ := client.Do(req)
    defer resp.Body.Close()

    body, _ := ioutil.ReadAll(resp.Body)
    fmt.Println(string(body))
}

Technical Support

Need help with a specific language or interested in early access to our Python/Java SDKs? Reach out to our developers at support@fieldfunded.com.