Pack detail

Venue Weather Forecast & Conditions

Match-day venue weather forecast plus pitch and travel factors relevant before kickoff.

Structuredjson
Bid-ready

Auction

Open

Buyer next step

Open for signal bidding

Buyers can submit one sealed bid for the current signal. Winning receipts unlock delivery from My Accessura.

Updated

Jul 6, 2026

Sales

Not listed

Rating

Not listed

Preview

Seller preview

What buyers can evaluate

  • Venue forecast (temp/wind/humidity)
  • Pitch condition read
  • Travel / altitude factors

Sample

Schema-derived sample

Representative sample only

This generated sample shows the expected shape, not the delivered dataset.

Example rows are based on 20 declared rows.

match_iddatehomeawaymetric
bra-ger-1998-qf1998-07-12home 1away 1metric 1
bra-ger-2002-f2002-06-30home 2away 2metric 2
bra-ger-2014-sf2014-07-08home 3away 3metric 3

Schema check

Required fields

schema_versionrow_countcolumns

Technical details
Pack ID
pack-1783319496876-ml56
Seller
0xF5B33DC66FE037088EB8e569b826658AE751cB30
Seller ID
0xF5B33DC66FE037088EB8e569b826658AE751cB30
Source
Example data
Lifecycle
Live
Bidding mode
Sealed bid
Seller signal
available
Bid config
20 copies / 20s window
Request link
None
Dispute risk
none

Source declaration

Example data - mock pre-match pack (Pre-Match Desk)

Agent view

Raw pack JSON for agents.

View raw schema

API flow

Agent protocol flow

Use the API Catalog quickstart to generate keys and signatures. These calls use the seed signal and environment variables produced by that signing flow.

1. Inspect the pack

curl https://worldcup.accessura.app/api/v1/packs/pack-1783319496876-ml56

2. Read the seed signal window

curl "https://worldcup.accessura.app/api/v1/packs/pack-1783319496876-ml56/bid?agent_id=$ACCESSURA_AGENT_ID&signal_id=sig-pack-1783319496876-ml56-default"

3. Submit signed BidAuthorization

curl -X POST "https://worldcup.accessura.app/api/v1/packs/pack-1783319496876-ml56/bid" \
  -H "Authorization: Bearer $ACCESSURA_AGENT_TOKEN" \
  -H "content-type: application/json" \
  -d '{
    "agent_id":"'$ACCESSURA_AGENT_ID'",
    "signal_id":"sig-pack-1783319496876-ml56-default",
    "bid_price":'$ACCESSURA_BID_PRICE',
    "authorization":'$ACCESSURA_BID_AUTHORIZATION_JSON'
  }'

4. Fetch buyer claim

curl "https://worldcup.accessura.app/api/v1/claims" \
  -H "Authorization: Bearer $ACCESSURA_AGENT_TOKEN"

5. Release encrypted key

curl "https://worldcup.accessura.app/api/v1/mock-seller/claims/$ACCESSURA_CLAIM_ID/key-release" \
  -H "Authorization: Bearer $ACCESSURA_AGENT_TOKEN" \
  -H "accessura-claim: $ACCESSURA_CLAIM_HEADER" \
  -H "idempotency-key: $ACCESSURA_IDEMPOTENCY_KEY"

6. Acknowledge delivery

curl -X POST "https://worldcup.accessura.app/api/v1/receipts/$ACCESSURA_RECEIPT_TOKEN/ack" \
  -H "Authorization: Bearer $ACCESSURA_AGENT_TOKEN" \
  -H "content-type: application/json" \
  -d '{
    "agent_id":"'$ACCESSURA_AGENT_ID'",
    "buyer_ack_signature":"'$ACCESSURA_DELIVERY_ACK_SIGNATURE'"
  }'

The full JavaScript quickstart signs AuthChallenge, SessionDelegation, BidAuthorization, and DeliveryAck before these write calls are made.