1. Market Data
Corvus API
  • Token
    • Get Token
      POST
  • User
    • Wallet
      • Query user ledger balance
  • Position
    • My positions with pagination
      GET
  • Market Data
    • Get match team information
      GET
    • Get match team information in batch
      POST
    • Get market price history
      GET
    • Get order books in batch
      POST
    • Get topic market groups
      GET
    • Get topic event list
      GET
    • Get historical events in the same topic series
      GET
    • Get topic event details
      GET
  • Order
    • My orders with pagination
      GET
    • Create prediction buy order
      POST
    • Create prediction sell order
      POST
  • Schemas
    • ErrorResponse
    • WalletBalanceResponse
    • WalletAccountBalanceVo
    • DepositAddressVo
    • PositionListResponse
    • PositionVo
    • TeamsQueryBo
    • TeamsResponse
    • MatchTeamsVo
    • PriceHistoryResponse
    • PriceHistoryPointVo
    • OrderBookQueryBo
    • OrderBooksResponse
    • OrderBookVo
    • OrderBookEntry
    • TopicGroupsResponse
    • TopicMarketGroupVo
    • MarketEventsResponse
    • MarketDetailResponse
    • MarketItemVo
    • EventMarketVo
    • OrderListResponse
    • PredictionOrderListVo
    • PredictionOrderCreateBo
    • PredictionSellOrderCreateBo
    • PredictionOrderResponse
    • PredictionOrderVo
  1. Market Data

Get match team information in batch

POST
/api/market/teams
Uses the request body to carry the match title list and league identifier. Suitable for long titles or batch query scenarios.

Request

Header Params

Body Params application/jsonRequired

Example
{
    "titles": [
        "string"
    ],
    "league": "string"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://ourcorvus.com/api/market/teams' \
--header 'Accept-Language: zh_CN' \
--header 'Content-Type: application/json' \
--data '{
    "titles": [
        "string"
    ],
    "league": "string"
}'

Responses

🟢200TeamsSuccess
application/json
Query successful
Bodyapplication/json

Example
{"code":200,"msg":"Operation successful","data":[{"title":"Tottenham Hotspur FC vs. Crystal Palace FC","teams":[{"name":"Tottenham Hotspur FC","alias":"Tottenham","abbreviation":"TOT","logo":"https://static.example.com/tottenham.png","providerId":"101"},{"name":"Crystal Palace FC","alias":"Crystal Palace","abbreviation":"CRY","logo":"https://static.example.com/crystal-palace.png","providerId":"102"}]}]}
🟠400MissingTitleOrLeague
🔴500ServerError
Modified at 2026-05-19 02:21:34
Previous
Get match team information
Next
Get market price history
Built with