Talo's player relationships API is the easiest way to build friends lists, follower systems, party invites and other social features that need player-to-player connections.
Endpoints
List subscriptions from players who have subscribed to the current player read:playerRelationships
GET https://api.trytalo.com/v1/players/relationships/subscribersKey Required Description x-talo-alias❌ NoThe ID of the player's alias
Query keys Key Required Description aliasId❌ NoFilter by a specific subscriber alias ID confirmed❌ NoFilter by confirmation status (true or false) page❌ NoPage number for pagination (default: 0) relationshipType❌ NoFilter by relationship type (unidirectional or bidirectional)
Sample response Show List subscriptions where the current player is the subscriber read:playerRelationships
GET https://api.trytalo.com/v1/players/relationships/subscriptionsKey Required Description x-talo-alias❌ NoThe ID of the player's alias
Query keys Key Required Description aliasId❌ NoFilter by a specific subscribed-to alias ID confirmed❌ NoFilter by confirmation status (true or false) page❌ NoPage number for pagination (default: 0) relationshipType❌ NoFilter by relationship type (unidirectional or bidirectional)
Sample response Show Create a subscription request to another player write:playerRelationships
POST https://api.trytalo.com/v1/players/relationshipsKey Required Description x-talo-alias❌ NoThe ID of the player's alias
Body keys Key Required Description aliasId✅ YesThe ID of the player alias to subscribe to relationshipType✅ YesThe type of relationship: "unidirectional" or "bidirectional"
Sample request Show
Sample response Show Confirm a pending subscription request write:playerRelationships
PUT https://api.trytalo.com/v1/players/relationships/:id/confirmKey Required Description x-talo-alias❌ NoThe ID of the player's alias
Route params Key Required Description id✅ YesThe ID of the subscription request to confirm
Sample response Show Delete a subscription (unsubscribe from a player) write:playerRelationships
DELETE https://api.trytalo.com/v1/players/relationships/:idKey Required Description x-talo-alias❌ NoThe ID of the player's alias
Route params Key Required Description id✅ YesThe ID of the subscription to delete