Space3 Document
  • Introduction
    • What is Space3?
    • Games
    • Built-in Missions System
    • Community Energy Points (EP)
    • Rewards Center
      • NFT Voucher
  • User Guide
    • Create & Login
    • Complete Missions
    • Redeem Items at Rewards Center
  • Support
    • Space3 Federated API for Partners
      • F-API Live Document
    • Space3 API In-game Missions Integration Guide
    • Help Center
    • FAQs
  • Community
    • Twitter
    • Discord
    • Telegram
    • Youtube
    • Facebook
    • Disclaimer and Terms of Use
Powered by GitBook
On this page
  1. Support
  2. Space3 Federated API for Partners

F-API Live Document

PreviousSpace3 Federated API for PartnersNextSpace3 API In-game Missions Integration Guide

Last updated 11 months ago

F-API Testing for developers

In order to connect with Space3 System for a cross-platform mission verification, use this live document to develop and test your F-API.

  • F-API Testing for developers
  • POST/api/v1/tracking/fapi-task/testing
post
Body
patternstringRequired

A request pattern for Space3 System to fill-up with user information.

Default: https://partner.com/space3/playing/{email}/1?wallet={wallet}
headersobjectOptional

HTTP headers for the request, it can be used for authentication such as X-API-Key.

Default: {"X-API-Key":"<your-api-key>"}
uidstringOptional

An Object ID string represents a user on Space3.

Default: object-id-string
emailstringOptional

An Email linked to the user on Space3.

Default: user.email@gmail.com
walletstringOptional

A Wallet linked to the user on Space3.

Default: 0x0000000000000000000000000000000000000000
twitterIdstringOptional

A Twitter ID linked to the user on Space3.

Default: 0808080808
discordIdstringOptional

A Discord ID linked to the user on Space3.

Default: 0808080808
fromDatestring · date-timeRequired

In ISO Date format, Auto filled by Space3 System, you can put a sample here to test your API.

toDatestring · date-timeRequired

In ISO Date format, Auto filled by Space3 System, you can put a sample here to test your API.

Responses
200
A successful response for the F-API
post
POST /api/v1/tracking/fapi-task/testing HTTP/1.1
Host: ac8-task.space3.gg
Content-Type: application/json
Accept: */*
Content-Length: 187

{
  "pattern": "text",
  "headers": {},
  "uid": "text",
  "email": "text",
  "wallet": "text",
  "twitterId": "text",
  "discordId": "text",
  "fromDate": "2025-05-09T15:38:30.940Z",
  "toDate": "2025-05-09T15:38:30.940Z"
}
200

A successful response for the F-API

{
  "success": true
}