Skip to main content
GET
/
v1
/
search
Search — Find events by team or league name (partial match)
curl --request GET \
  --url https://api.fieldfunded.com/v1/search \
  --header 'X-API-Key: <api-key>'
{
  "events": [
    {
      "id": "87654321",
      "sport": {
        "key": "soccer",
        "name": "Soccer"
      },
      "league": {
        "slug": "premier-league",
        "name": "Premier League",
        "country": "England"
      },
      "home_team": "Arsenal",
      "away_team": "Chelsea",
      "home_logo": "https://api.fieldfunded.com/api/logo/t-38",
      "away_logo": "https://api.fieldfunded.com/api/logo/t-42",
      "status": "live",
      "start_time": "2026-04-12T15:00:00Z",
      "score": {
        "home": 2,
        "away": 1
      },
      "clock": "67:10",
      "period": "2nd Half",
      "odds": {
        "home": 1.45,
        "draw": 4.5,
        "away": 6
      },
      "odds_format": "decimal",
      "markets_count": 72,
      "updated_at": "2026-04-12T15:45:30.000Z"
    },
    {
      "id": "87654322",
      "sport": {
        "key": "baseball",
        "name": "Baseball"
      },
      "league": {
        "slug": "mlb",
        "name": "MLB",
        "country": "USA"
      },
      "home_team": "St. Louis Cardinals",
      "away_team": "Los Angeles Dodgers",
      "home_logo": "https://api.fieldfunded.com/api/logo/t-3632",
      "away_logo": "https://api.fieldfunded.com/api/logo/t-3638",
      "status": "prematch",
      "start_time": "2026-04-14T20:10:00Z",
      "score": {
        "home": 0,
        "away": 0
      },
      "clock": null,
      "period": "",
      "odds": {
        "home": 2.1,
        "draw": null,
        "away": 1.75
      },
      "odds_format": "decimal",
      "markets_count": 120,
      "updated_at": "2026-04-12T18:00:00.000Z"
    }
  ],
  "total": 42,
  "query": "Arsenal"
}

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.

Authorizations

X-API-Key
string
header
required

Your FieldFunded API Key

Query Parameters

q
string
required

Search query (min 2 characters). Matches against home team, away team, and league names.

Minimum string length: 2
Example:

"Arsenal"

limit
integer
default:25

Maximum results to return

Required range: 1 <= x <= 100
odds_format
enum<string>
default:decimal

Odds format for all values in response. Default: decimal

Available options:
decimal,
american,
fractional

Response

A list of sports events matching the provided search query.

events
object[]
total
integer
query
string