BitBadges Python SDK
Project description
bitbadgespy-sdk
Introduction
The BitBadges API is a RESTful API that enables developers to interact with the BitBadges blockchain and indexer. This API provides comprehensive access to the BitBadges ecosystem, allowing you to query and interact with digital badges, collections, accounts, blockchain data, and more. For complete documentation, see the BitBadges Documentation and use along with this reference.
Note: The API + documentation is new and may contain bugs. If you find any issues, please let us know via Discord or another contact method (https://bitbadges.io/contact).
Getting Started
Authentication
All API requests require an API key for authentication. You can obtain your API key from the BitBadges Developer Portal.
API Key Authentication
Include your API key in the x-api-key header:
x-api-key: your-api-key-here
User Authentication
Most read-only applications can function with just an API key. However, if you need to access private user data or perform actions on behalf of users, you have two options:
OAuth 2.0 (Sign In with BitBadges)
For performing actions on behalf of other users, use the standard OAuth 2.0 flow via Sign In with BitBadges. See the Sign In with BitBadges documentation for details.
You will pass the access token in the Authorization header:
Authorization: Bearer your-access-token-here
Password Self-Approve Method
For automating actions for your own account:
- Set up an approved password sign in in your account settings tab on https://bitbadges.io with desired scopes (e.g.
completeClaims) - Sign in using:
const { message } = await BitBadgesApi.getSignInChallenge(...);
const verificationRes = await BitBadgesApi.verifySignIn({
message,
signature: '', //Empty string
password: '...'
})
Note: This method uses HTTP session cookies. Ensure your requests support credentials (e.g. axios: { withCredentials: true }).
Scopes
Note that for proper authentication, you must have the proper scopes set.
See https://bitbadges.io/auth/linkgen for a helper URL generation tool. The scopes will be included in
the scope parameter of the SIWBB URL or set in your approved sign in settings.
Note that stuff marked as Full Access is typically reserved for the official site. If you think you may need this, contact us.
Available Scopes
-
Report (
report) Report users or collections. -
Read Profile (
readProfile) Read your private profile information. This includes your email, approved sign-in methods, connections, and other private information. -
Read Address Lists (
readAddressLists) Read private address lists on behalf of the user. -
Manage Address Lists (
manageAddressLists) Create, update, and delete address lists on behalf of the user (private or public). -
Manage Applications (
manageApplications) Create, update, and delete applications on behalf of the user. -
Manage Claims (
manageClaims) Create, update, and delete claims on behalf of the user. -
Manage Developer Apps (
manageDeveloperApps) Create, update, and delete developer apps on behalf of the user. -
Manage Dynamic Stores (
manageDynamicStores) Create, update, and delete dynamic stores on behalf of the user. -
Manage Utility Listings (
manageUtilityListings) Create, update, and delete utility listings on behalf of the user. -
Approve Sign In With BitBadges Requests (
approveSignInWithBitBadgesRequests) Sign In with BitBadges on behalf of the user. -
Read Authentication Codes (
readAuthenticationCodes) Read Authentication Codes on behalf of the user. -
Delete Authentication Codes (
deleteAuthenticationCodes) Delete Authentication Codes on behalf of the user. -
Send Claim Alerts (
sendClaimAlerts) Send claim alerts on behalf of the user. -
Read Claim Alerts (
readClaimAlerts) Read claim alerts on behalf of the user. Note that claim alerts may contain sensitive information like claim codes, attestation IDs, etc. -
Manage Attestations (
manageAttestations) Manage attestations on behalf of the user. This includes creating, updating, and deleting attestations. -
Read Attestations (
readAttestations) Read attestations on behalf of the user. -
Read Private Claim Data (
readPrivateClaimData) Read private claim data on behalf of the user (e.g. codes, passwords, private user lists, etc.). -
Complete Claims (
completeClaims) Complete claims on behalf of the user. -
Manage Off-Chain Balances (
manageOffChainBalances) Manage off-chain balances on behalf of the user. -
Embedded Wallet (
embeddedWallet) Sign transactions on behalf of the user with their embedded wallet.
SDK Integration
The recommended way to interact with the API is through our TypeScript/JavaScript SDK:
import { BigIntify, BitBadgesAPI } from \"bitbadgesjs-sdk\";
// Initialize the API client
const api = new BitBadgesAPI({
convertFunction: BigIntify,
apiKey: 'your-api-key-here'
});
// Example: Fetch collections
const collections = await api.getCollections({
collectionsToFetch: [{
collectionId: 1n,
metadataToFetch: {
badgeIds: [{ start: 1n, end: 10n }]
}
}]
});
Tiers
There are 3 tiers of API keys, each with different rate limits and permissions. See the pricing page for more details: https://bitbadges.io/pricing
- Free tier
- Premium tier
- Enterprise tier
Rate limit headers included in responses:
X-RateLimit-Limit: Total requests allowed per windowX-RateLimit-Remaining: Remaining requests in current windowX-RateLimit-Reset: Time until rate limit resets (UTC timestamp)
Response Formats
Error Response
All API errors follow a consistent format:
{
// Serialized error object for debugging purposes
// Advanced users can use this to debug issues
error?: any;
// UX-friendly error message that can be displayed to the user
// Always present if error occurs
errorMessage: string;
// Authentication error flag
// Present if the user is not authenticated
unauthorized?: boolean;
}
Pagination
Cursor-based pagination is used for list endpoints:
{
items: T[],
bookmark: string, // Use this for the next page
hasMore: boolean
}
Best Practices
- Rate Limiting: Implement proper rate limit handling
- Caching: Cache responses when appropriate
- Error Handling: Handle API errors gracefully
- Batch Operations: Use batch endpoints when possible
Additional Resources
- Official Documentation
- SDK Documentation
- Developer Portal
- GitHub SDK Repository
- Quickstarter Repository
Support
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 0.1
- Package version: 0.1.10
- Generator version: 7.12.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Requirements.
Python 3.8+
Installation & Usage
pip install
If the python package is hosted on a repository, you can install directly using:
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)
Then import the package:
import bitbadgespy_sdk
Setuptools
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install to install the package for all users)
Then import the package:
import bitbadgespy_sdk
Tests
Execute pytest to run the tests.
Getting Started
Please follow the installation procedure and then run the following:
import bitbadgespy_sdk
from bitbadgespy_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.bitbadges.io/api/v0
# See configuration.py for a list of all supported configuration parameters.
configuration = bitbadgespy_sdk.Configuration(
host = "https://api.bitbadges.io/api/v0"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: apiKey
configuration.api_key['apiKey'] = os.environ["API_KEY"]
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['apiKey'] = 'Bearer'
# Enter a context with an instance of the API client
with bitbadgespy_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = bitbadgespy_sdk.AccountsApi(api_client)
x_api_key = 'x_api_key_example' # str | BitBadges API Key for authentication
payload = bitbadgespy_sdk.IGetAccountPayload() # IGetAccountPayload | The payload for the request. Anything here should be specified as query parameters (e.g. ?key1=value1&key2=) (optional)
try:
# Get Account
api_response = api_instance.get_account(x_api_key, payload=payload)
print("The response of AccountsApi->get_account:\n")
pprint(api_response)
except ApiException as e:
print("Exception when calling AccountsApi->get_account: %s\n" % e)
Documentation for API Endpoints
All URIs are relative to https://api.bitbadges.io/api/v0
| Class | Method | HTTP request | Description |
|---|---|---|---|
| AccountsApi | get_account | GET /user | Get Account |
| AccountsApi | get_accounts | POST /users | Get Accounts - Batch |
| AccountsApi | get_address_lists_for_user | GET /account/{address}/lists | Get Address Lists For User |
| AccountsApi | get_attestations_for_user | GET /account/{address}/attestations/ | Get Attestations For User |
| AccountsApi | get_badges_view_for_user | GET /account/{address}/badges/ | Get Badges For User |
| AccountsApi | get_claim_activity_for_user | GET /account/{address}/activity/claims | Get Claim Activity For User |
| AccountsApi | get_claim_alerts_for_user | GET /account/{address}/claimAlerts | Get Claim Alerts For User |
| AccountsApi | get_list_activity_for_user | GET /account/{address}/activity/lists | Get Lists Activity For User |
| AccountsApi | get_points_activity_for_user | GET /account/{address}/activity/points | Get Points Activity For User |
| AccountsApi | get_siwbb_requests_for_user | GET /account/{address}/requests/siwbb | Get SIWBB Requests For User |
| AccountsApi | get_transfer_activity_for_user | GET /account/{address}/activity/badges | Get Transfer Activity For User |
| AddressListsApi | create_address_lists | POST /addressLists | Creates Address Lists |
| AddressListsApi | delete_address_lists | DELETE /addressLists | Delete Address Lists |
| AddressListsApi | get_address_list | GET /addressList/{addressListId} | Get Address List |
| AddressListsApi | get_address_list_activity | GET /addressLists/{addressListId}/activity | Get Address List Activity |
| AddressListsApi | get_address_list_claims | GET /addressLists/{addressListId}/claims | Get Address List Claims |
| AddressListsApi | get_address_list_listings | GET /addressLists/{addressListId}/listings | Get Address List Listings |
| AddressListsApi | get_address_lists | POST /addressLists/fetch | Get Address Lists - Batch |
| AddressListsApi | update_address_list_addresses | PUT /addressLists/addresses | Update Address List Addresses |
| AddressListsApi | update_address_list_core_details | PUT /addressLists/coreDetails | Update Address List Core Details |
| ApplicationsApi | calculate_points | POST /applications/points | Calculate Points |
| ApplicationsApi | create_application | POST /applications | Create Application |
| ApplicationsApi | delete_application | DELETE /applications | Delete Application |
| ApplicationsApi | get_application | GET /application/{applicationId} | Get Application |
| ApplicationsApi | get_applications | POST /applications/fetch | Get Applications - Batch |
| ApplicationsApi | get_points_activity | GET /applications/points/activity | Get Points Activity |
| ApplicationsApi | search_applications | GET /applications/search | Search Applications |
| ApplicationsApi | update_application | PUT /applications | Update Application |
| AttestationsApi | create_attestation | POST /attestations | Create Attestation |
| AttestationsApi | delete_attestation | DELETE /attestations | Delete Attestation |
| AttestationsApi | get_attestation | GET /attestation/{attestationId} | Get Attestation |
| AttestationsApi | get_attestation_0 | POST /attestations/fetch | Get Attestations - Batch |
| AttestationsApi | update_attestation | PUT /attestations | Update Attestation |
| AttestationsApi | verify_attestation | POST /attestations/verify | Verify Attestation |
| BadgesApi | get_badge_activity | GET /collection/{collectionId}/{badgeId}/activity | Get Badge Activity |
| BadgesApi | get_badge_balance_by_address | GET /collection/{collectionId}/balance/{address} | Get Badge Balances By Address |
| BadgesApi | get_badge_balance_by_address_specific_badge | GET /collection/{collectionId}/balance/{address}/{badgeId} | Get Badge Balance By Address - Specific Badge |
| BadgesApi | get_badge_metadata | GET /collection/{collectionId}/{badgeId}/metadata | Get Badge Metadata |
| BadgesApi | get_collection | GET /collection/{collectionId} | Get Collection |
| BadgesApi | get_collection_amount_tracker_by_id | GET /api/v0/collection/amountTracker | Get Collection Amount Tracker By ID |
| BadgesApi | get_collection_amount_trackers | GET /collection/{collectionId}/amountTrackers | Get Collection Amount Trackers |
| BadgesApi | get_collection_challenge_tracker_by_id | GET /api/v0/collection/challengeTracker | Get Collection Challenge Tracker By ID |
| BadgesApi | get_collection_challenge_trackers | GET /collection/{collectionId}/challengeTrackers | Get Collection Challenge Trackers |
| BadgesApi | get_collection_claims | GET /collection/{collectionId}/claims | Get Collection Claims |
| BadgesApi | get_collection_listings | GET /collection/{collectionId}/listings | Get Collection Listings |
| BadgesApi | get_collection_owners | GET /collection/{collectionId}/owners | Get Collection Owners |
| BadgesApi | get_collection_transfer_activity | GET /collection/{collectionId}/activity | Get Collection Transfer Activity |
| BadgesApi | get_collections_batch | POST /collections | Get Collections - Batch |
| BadgesApi | get_owners_for_badge | GET /collection/{collectionId}/{badgeId}/owners | Get Badge Owners |
| BadgesApi | get_refresh_status | GET /collection/{collectionId}/refreshStatus | Get Refresh Status |
| BadgesApi | upload_balances | POST /api/v0/uploadBalances | Upload Balances |
| ClaimAlertsApi | send_claim_alert | POST /claimAlerts/send | Sends Claim Alert |
| ClaimsApi | check_claim_success | GET /claims/success/{claimId}/{address} | Check Claim Successes By User |
| ClaimsApi | complete_claim | POST /claims/complete/{claimId}/{address} | Complete Claim |
| ClaimsApi | create_claim | POST /claims | Create Claim |
| ClaimsApi | delete_claim | DELETE /claims | Delete Claim |
| ClaimsApi | generate_code | GET /codes | Get Code (Codes Plugin) |
| ClaimsApi | get_attempt_data_from_request_bin | GET /api/v0/requestBin/attemptData/{claimId}/{claimAttemptId} | Get Attempt Data (Request Bin) |
| ClaimsApi | get_claim | GET /claim/{claimId} | Get Claim |
| ClaimsApi | get_claim_attempt_status | GET /claims/status/{claimAttemptId} | Get Claim Attempt Status |
| ClaimsApi | get_claim_attempts | GET /claims/{claimId}/attempts | Get Claim Attempts |
| ClaimsApi | get_claims | POST /claims/fetch | Get Claims - Batch |
| ClaimsApi | get_gated_content_for_claim | GET /claims/gatedContent/{claimId} | Get Gated Content for Claim |
| ClaimsApi | get_reserved_codes | POST /claims/reserved/{claimId}/{address} | Get Reserved Claim Codes |
| ClaimsApi | search_claims | GET /claims/search | Search Claims |
| ClaimsApi | simulate_claim | POST /claims/simulate/{claimId}/{address} | Simulate Claim |
| ClaimsApi | update_claim | PUT /claims | Update Claim |
| DynamicStoresApi | create_dynamic_data_store | POST /dynamicStores | Create Dynamic Data Store |
| DynamicStoresApi | delete_dynamic_data_store | DELETE /dynamicStores | Delete Dynamic Data Store |
| DynamicStoresApi | get_dynamic_data_activity | GET /dynamicStores/activity | Get Dynamic Data Activity |
| DynamicStoresApi | get_dynamic_data_store | GET /dynamicStore/{dynamicStoreId} | Get Dynamic Data Store |
| DynamicStoresApi | get_dynamic_data_store_value | GET /dynamicStore/{dynamicStoreId}/value | Get Dynamic Data Store Value |
| DynamicStoresApi | get_dynamic_data_store_values_paginated | GET /dynamicStore/{dynamicStoreId}/values | Get Dynamic Data Store Values Paginated |
| DynamicStoresApi | get_dynamic_data_stores | POST /dynamicStores/fetch | Fetch Dynamic Data Stores - Batch |
| DynamicStoresApi | perform_store_action_batch_with_body_auth | POST /storeActions/batch | Perform Batch Store Actions (Body Auth) |
| DynamicStoresApi | perform_store_action_single_with_body_auth | POST /storeActions/single | Perform Single Store Action (Body Auth) |
| DynamicStoresApi | search_dynamic_data_stores | GET /dynamicStores/search | Search Dynamic Data Stores For User |
| DynamicStoresApi | update_dynamic_data_store | PUT /dynamicStores | Update Dynamic Data Store |
| MapsAndProtocolsApi | get_map | GET /maps/{mapId} | Get Map |
| MapsAndProtocolsApi | get_map_value | GET /mapValue/{mapId}/{key} | Get Map Value |
| MapsAndProtocolsApi | get_map_values | POST /mapValues | Get Map Values - Batch |
| MapsAndProtocolsApi | get_maps | POST /maps | Get Maps - Batch |
| MiscellanousApi | get_status | GET /status | Get Status |
| PluginsApi | get_plugin | GET /plugin/{pluginId} | Get Plugin |
| PluginsApi | get_plugins | POST /plugins/fetch | Get Plugins - Batch |
| PluginsApi | search_plugins | GET /plugins/search | Search Plugins |
| SignInWithBitBadgesApi | check_sign_in_status | POST /auth/status | Check Sign In Status |
| SignInWithBitBadgesApi | create_developer_app | POST /developerApps | Create OAuth App |
| SignInWithBitBadgesApi | create_siwbb_request | POST /siwbbRequest | Create SIWBB Request |
| SignInWithBitBadgesApi | delete_developer_app | DELETE /developerApps | Delete OAuth App |
| SignInWithBitBadgesApi | delete_siwbb_request | DELETE /siwbbRequest | Delete SIWBB Request |
| SignInWithBitBadgesApi | exchange_siwbb_authorization_code | POST /siwbb/token | Exchange SIWBB Code |
| SignInWithBitBadgesApi | generate_apple_wallet_pass | POST /siwbbRequest/appleWalletPass | Generate Apple Wallet Pass |
| SignInWithBitBadgesApi | generate_google_wallet_pass | POST /siwbbRequest/googleWalletPass | Generate Google Wallet Pass |
| SignInWithBitBadgesApi | get_developer_app | GET /developerApp/{clientId} | Get OAuth App |
| SignInWithBitBadgesApi | get_siwbb_requests_for_developer_app | GET /developerApps/siwbbRequests | Get SIWBB Requests For Developer App |
| SignInWithBitBadgesApi | revoke_oauth_authorization | POST /siwbb/token/revoke | Revoke Authorization |
| SignInWithBitBadgesApi | rotate_siwbb_request | POST /siwbbRequest/rotate | Rotate SIWBB Request |
| SignInWithBitBadgesApi | update_developer_app | PUT /developerApps | Update OAuth App |
| TransactionsApi | broadcast_tx | POST /broadcast | Broadcast Transaction |
| TransactionsApi | simulate_tx | POST /simulate | Simulate Transaction |
| UtilityListingsApi | create_utility_listing | POST /utilityListings | Create Utility Listing |
| UtilityListingsApi | delete_utility_listing | DELETE /utilityListings | Delete Utility Listing |
| UtilityListingsApi | get_utility_listing | GET /utilityListing/{utilityListingId} | Get Utility Listing |
| UtilityListingsApi | get_utility_listings | POST /utilityListings/fetch | Get Utility Listings - Batch |
| UtilityListingsApi | search_utility_listings | GET /utilityListings/search | Search Utility Listings |
| UtilityListingsApi | update_utility_listing | PUT /utilityListings | Update Utility Listing |
Documentation For Models
- AccountFetchDetails
- AccountFetchDetailsViewsToFetchInner
- AccountResponse
- AccountResponseAccount
- AccountResponseAccountBaseAccount
- AccountResponseAccountBaseAccountPubKey
- AccountViewKey
- AdditionalQueryParams
- AddressListViewKey
- AminoConverter
- AminoMsg
- AndGroup
- AssetConditionGroup
- AssetDetails
- AssetDetailsAssetIdsInner
- Attribute
- BroadcastPostBody
- BroadcastTxRequest
- Chain
- ChallengeParams
- Channel
- ChannelsResponse
- ChannelsResponseHeight
- ChannelsResponsePagination
- CodeGenQueryParams
- CollectionViewKey
- ConvertOptions
- CosmosAccountResponse
- CosmosAccountResponsePubKey
- CosmosEvent
- CounterParty
- CreateClaimRequest
- CreateClaimRequestMetadata
- DeliverTxResponse
- DeliverTxResponseMsgResponsesInner
- Doc
- DynamicDataHandlerActionRequest
- DynamicDataHandlerType
- EIP712ToSign
- EIP712ToSignDomain
- EncodeObject
- ErrorDoc
- ErrorResponse
- Fee
- GenerateCode200Response
- GetAdditionalCollectionDetailsPayload
- GetAdditionalCollectionDetailsPayloadViewsToFetchInner
- GetCollectionRequestBody
- GetCollectionRequestBodyViewsToFetchInner
- GetMetadataForCollectionPayload
- GetUndelegationsResponse
- GetUndelegationsResponsePagination
- GetValidatorsResponse
- GetValidatorsResponsePagination
- IAccessTokenDoc
- IAccountDoc
- IActionPermission
- IActivityDoc
- IAddApprovalDetailsToOffChainStoragePayload
- IAddApprovalDetailsToOffChainStoragePayloadApprovalDetailsInner
- IAddApprovalDetailsToOffChainStorageSuccessResponse
- IAddApprovalDetailsToOffChainStorageSuccessResponseApprovalResultsInner
- IAddApprovalDetailsToOffChainStorageSuccessResponseApprovalResultsInnerChallengeResultsInner
- IAddApprovalDetailsToOffChainStorageSuccessResponseApprovalResultsInnerMetadataResult
- IAddBalancesToOffChainStoragePayload
- IAddBalancesToOffChainStoragePayloadClaimsInner
- IAddBalancesToOffChainStorageSuccessResponse
- IAddToIpfsPayload
- IAddToIpfsPayloadContentsInner
- IAddToIpfsSuccessResponse
- IAddToIpfsSuccessResponseResultsInner
- IAddressList
- IAddressListCreateObject
- IAddressListDoc
- IAddressListDocNsfw
- IAddressListDocReported
- IAddressListEditKey
- IAirdropDoc
- IAmountTrackerIdDetails
- IApiKeyDoc
- IApplicationDoc
- IApplicationPage
- IApprovalAmounts
- IApprovalCriteria
- IApprovalIdentifierDetails
- IApprovalInfoDetails
- IApprovalTrackerDoc
- IAttestation
- IAttestationAnchorsInner
- IAttestationDataIntegrityProof
- IAttestationDoc
- IAttestationDocAnchorsInner
- IAttestationDocDataIntegrityProof
- IAttestationDocProofOfIssuance
- IAttestationProofOfIssuance
- IAttestationsProof
- IAttestationsProofDataIntegrityProof
- IBadgeIdsActionPermission
- IBadgeMetadata
- IBadgeMetadataDetails
- IBadgeMetadataTimeline
- IBalance
- IBalanceDoc
- IBaseQueryParams
- IBaseSuccessResponse
- IBatchBadgeDetails
- IBitBadgesCollection
- IBitBadgesCollectionViewsValue
- IBitBadgesUserInfo
- IBitBadgesUserInfoAlias
- IBitBadgesUserInfoApprovedSignInMethods
- IBitBadgesUserInfoApprovedSignInMethodsAddressesInner
- IBitBadgesUserInfoApprovedSignInMethodsDiscord
- IBitBadgesUserInfoApprovedSignInMethodsGithub
- IBitBadgesUserInfoApprovedSignInMethodsGoogle
- IBitBadgesUserInfoApprovedSignInMethodsPasswordsInner
- IBitBadgesUserInfoCustomPages
- IBitBadgesUserInfoNsfw
- IBitBadgesUserInfoReported
- IBitBadgesUserInfoViewsValue
- IBitBadgesUserInfoWatchlists
- IBroadcastTxSuccessResponse
- IBroadcastTxSuccessResponseTxResponse
- IBroadcastTxSuccessResponseTxResponseEventsInner
- IBroadcastTxSuccessResponseTxResponseEventsInnerAttributesInner
- IBroadcastTxSuccessResponseTxResponseLogsInner
- IBroadcastTxSuccessResponseTxResponseLogsInnerEventsInner
- IBroadcastTxSuccessResponseTxResponseLogsInnerEventsInnerAttributesInner
- ICalculatePointsPayload
- ICalculatePointsSuccessResponse
- IChallengeDetails
- IChallengeInfoDetails
- IChallengeInfoDetailsUpdate
- IChallengeTrackerIdDetails
- ICheckClaimSuccessSuccessResponse
- ICheckSignInStatusSuccessResponse
- ICheckSignInStatusSuccessResponseBluesky
- ICheckSignInStatusSuccessResponseDiscord
- ICheckSignInStatusSuccessResponseFacebook
- ICheckSignInStatusSuccessResponseFarcaster
- ICheckSignInStatusSuccessResponseGithub
- ICheckSignInStatusSuccessResponseGoogle
- ICheckSignInStatusSuccessResponseGoogleCalendar
- ICheckSignInStatusSuccessResponseLinkedIn
- ICheckSignInStatusSuccessResponseMailchimp
- ICheckSignInStatusSuccessResponseMeetup
- ICheckSignInStatusSuccessResponseReddit
- ICheckSignInStatusSuccessResponseShopify
- ICheckSignInStatusSuccessResponseSlack
- ICheckSignInStatusSuccessResponseStrava
- ICheckSignInStatusSuccessResponseTelegram
- ICheckSignInStatusSuccessResponseTwitch
- ICheckSignInStatusSuccessResponseTwitter
- ICheckSignInStatusSuccessResponseYoutube
- IClaimActivityDoc
- IClaimAlertDoc
- IClaimAttempt
- IClaimBuilderDoc
- IClaimBuilderDocAction
- IClaimCachePolicy
- IClaimDetails
- IClaimDetailsTemplateInfo
- IClaimGatedContent
- IClaimReward
- IClaimRewardCalculationMethod
- IClaimRewardMetadata
- ICoinTransfer
- ICollectionApproval
- ICollectionApprovalPermission
- ICollectionDoc
- ICollectionMetadata
- ICollectionMetadataDetails
- ICollectionMetadataTimeline
- ICollectionNSFW
- ICollectionPermissions
- ICompleteClaimPayload
- ICompleteClaimSuccessResponse
- IComplianceDoc
- IComplianceDocAccounts
- IComplianceDocAccountsNsfwInner
- IComplianceDocAddressLists
- IComplianceDocAddressListsNsfwInner
- IComplianceDocApplications
- IComplianceDocApplicationsNsfwInner
- IComplianceDocBadges
- IComplianceDocClaims
- IComplianceDocClaimsNsfwInner
- IComplianceDocMaps
- IComplianceDocMapsNsfwInner
- ICosmosCoin
- ICreateAddressListsPayload
- ICreateApiKeyPayload
- ICreateApiKeySuccessResponse
- ICreateApplicationPayload
- ICreateApplicationSuccessResponse
- ICreateAttestationPayload
- ICreateAttestationPayloadAnchorsInner
- ICreateAttestationPayloadDataIntegrityProof
- ICreateAttestationPayloadProofOfIssuance
- ICreateAttestationSuccessResponse
- ICreateClaimPayload
- ICreateDeveloperAppPayload
- ICreateDeveloperAppSuccessResponse
- ICreateDynamicDataStorePayload
- ICreateDynamicDataStoreSuccessResponse
- ICreatePaymentIntentPayload
- ICreatePaymentIntentSuccessResponse
- ICreatePluginPayload
- ICreatePluginPayloadMetadata
- ICreateSIWBBRequestPayload
- ICreateSIWBBRequestSuccessResponse
- ICreateUtilityListingPayload
- ICreateUtilityListingSuccessResponse
- ICustomDataTimeline
- ICustomLink
- ICustomListPage
- ICustomPage
- IDeleteAddressListsPayload
- IDeleteApiKeyPayload
- IDeleteApplicationPayload
- IDeleteAttestationPayload
- IDeleteClaimPayload
- IDeleteConnectedAccountSuccessResponse
- IDeleteDeveloperAppPayload
- IDeleteDynamicDataStorePayload
- IDeleteDynamicDataStoreSuccessResponse
- IDeletePluginPayload
- IDeleteSIWBBRequestPayload
- IDeleteUtilityListingPayload
- IDepositBalanceDoc
- IDeveloperAppDoc
- IDynamicDataDoc
- IEmailVerificationStatus
- IEstimatedCost
- IEvent
- IExchangeSIWBBAuthorizationCodePayload
- IExchangeSIWBBAuthorizationCodeSuccessResponse
- IExchangeSIWBBAuthorizationCodeSuccessResponseVerificationResponse
- IFetchDoc
- IFetchDocContent
- IFetchMetadataDirectlyPayload
- IFetchMetadataDirectlySuccessResponse
- IFilterBadgesInCollectionPayload
- IFilterBadgesInCollectionPayloadAttributesInner
- IFilterBadgesInCollectionSuccessResponse
- IFilterSuggestionsSuccessResponse
- IFilterSuggestionsSuccessResponseAttributesInner
- IGenerateAppleWalletPassPayload
- IGenerateAppleWalletPassSuccessResponse
- IGenerateGoogleWalletPayload
- IGenerateGoogleWalletSuccessResponse
- IGenericBlockinVerifyPayload
- IGenericVerifyAssetsPayload
- IGenericVerifyAssetsSuccessResponse
- IGetAccountPayload
- IGetAccountSuccessResponse
- IGetAccountsPayload
- IGetAccountsSuccessResponse
- IGetActiveAuthorizationsSuccessResponse
- IGetAddressListActivityPayload
- IGetAddressListActivitySuccessResponse
- IGetAddressListClaimsSuccessResponse
- IGetAddressListListingsPayload
- IGetAddressListListingsSuccessResponse
- IGetAddressListSuccessResponse
- IGetAddressListsForUserPayload
- IGetAddressListsForUserSuccessResponse
- IGetAddressListsPayload
- IGetAddressListsPayloadListsToFetchInner
- IGetAddressListsPayloadListsToFetchInnerViewsToFetchInner
- IGetAddressListsSuccessResponse
- IGetApiKeysPayload
- IGetApiKeysSuccessResponse
- IGetApiKeysSuccessResponsePagination
- IGetApplicationSuccessResponse
- IGetApplicationsPayload
- IGetApplicationsSuccessResponse
- IGetAttemptDataFromRequestBinPayload
- IGetAttemptDataFromRequestBinSuccessResponse
- IGetAttestationSuccessResponse
- IGetAttestationsForUserPayload
- IGetAttestationsForUserSuccessResponse
- IGetAttestationsPayload
- IGetAttestationsSuccessResponse
- IGetBadgeActivityPayload
- IGetBadgeActivitySuccessResponse
- IGetBadgeBalanceByAddressPayload
- IGetBadgeBalanceByAddressSpecificBadgeSuccessResponse
- IGetBadgeBalanceByAddressSuccessResponse
- IGetBadgeMetadataSuccessResponse
- IGetBadgesViewForUserPayload
- IGetBadgesViewForUserSuccessResponse
- IGetBrowsePayload
- IGetBrowseSuccessResponse
- IGetClaimActivityForUserPayload
- IGetClaimActivityForUserSuccessResponse
- IGetClaimAlertsForUserPayload
- IGetClaimAlertsForUserSuccessResponse
- IGetClaimAttemptStatusSuccessResponse
- IGetClaimAttemptsPayload
- IGetClaimAttemptsSuccessResponse
- IGetClaimAttemptsSuccessResponseDocsInner
- IGetClaimPayload
- IGetClaimSuccessResponse
- IGetClaimsPayload
- IGetClaimsPayloadPrivateStatesToFetchInner
- IGetClaimsPayloadV1
- IGetClaimsPayloadV1ClaimsToFetchInner
- IGetClaimsSuccessResponse
- IGetCollectionAmountTrackerByIdSuccessResponse
- IGetCollectionAmountTrackersPayload
- IGetCollectionAmountTrackersSuccessResponse
- IGetCollectionChallengeTrackerByIdSuccessResponse
- IGetCollectionChallengeTrackersPayload
- IGetCollectionChallengeTrackersSuccessResponse
- IGetCollectionClaimsSuccessResponse
- IGetCollectionListingsPayload
- IGetCollectionListingsSuccessResponse
- IGetCollectionOwnersPayload
- IGetCollectionOwnersSuccessResponse
- IGetCollectionSuccessResponse
- IGetCollectionTransferActivityPayload
- IGetCollectionTransferActivitySuccessResponse
- IGetCollectionsPayload
- IGetCollectionsSuccessResponse
- IGetConnectedAccountsSuccessResponse
- IGetConnectedAccountsSuccessResponseAccountsInner
- IGetDeveloperAppSuccessResponse
- IGetDeveloperAppsPayload
- IGetDeveloperAppsSuccessResponse
- IGetDynamicDataActivityPayload
- IGetDynamicDataActivitySuccessResponse
- IGetDynamicDataActivitySuccessResponseHistory
- IGetDynamicDataActivitySuccessResponseHistoryDocsInner
- IGetDynamicDataActivitySuccessResponseHistoryPagination
- IGetDynamicDataActivitySuccessResponsePendingInner
- IGetDynamicDataStorePayload
- IGetDynamicDataStoreSuccessResponse
- IGetDynamicDataStoreValuePayload
- IGetDynamicDataStoreValueSuccessResponse
- IGetDynamicDataStoreValuesPaginatedPayload
- IGetDynamicDataStoreValuesPaginatedSuccessResponse
- IGetDynamicDataStoreValuesPaginatedSuccessResponseLookupValuesInner
- IGetDynamicDataStoresPayload
- IGetDynamicDataStoresSuccessResponse
- IGetDynamicDataStoresSuccessResponsePagination
- IGetGatedContentForClaimSuccessResponse
- IGetListActivityForUserPayload
- IGetListActivityForUserSuccessResponse
- IGetMapSuccessResponse
- IGetMapValueSuccessResponse
- IGetMapValuesPayload
- IGetMapValuesSuccessResponse
- IGetMapValuesSuccessResponseValuesInner
- IGetMapsPayload
- IGetMapsSuccessResponse
- IGetOrCreateEmbeddedWalletSuccessResponse
- IGetOwnersForBadgePayload
- IGetOwnersForBadgeSuccessResponse
- IGetPluginErrorsPayload
- IGetPluginErrorsSuccessResponse
- IGetPluginSuccessResponse
- IGetPluginsPayload
- IGetPluginsSuccessResponse
- IGetPointsActivityForUserPayload
- IGetPointsActivityForUserSuccessResponse
- IGetPointsActivityPayload
- IGetPointsActivitySuccessResponse
- IGetPostActionStatusesSuccessResponse
- IGetPostActionStatusesSuccessResponsePostActionStatusesInner
- IGetReservedClaimCodesSuccessResponse
- IGetSIWBBRequestsForDeveloperAppPayload
- IGetSIWBBRequestsForDeveloperAppSuccessResponse
- IGetSearchPayload
- IGetSearchSuccessResponse
- IGetSearchSuccessResponseBadgesInner
- IGetSignInChallengePayload
- IGetSignInChallengeSuccessResponse
- IGetSiwbbRequestsForUserPayload
- IGetSiwbbRequestsForUserSuccessResponse
- IGetStatusPayload
- IGetStatusSuccessResponse
- IGetTransferActivityForUserPayload
- IGetTransferActivityForUserSuccessResponse
- IGetUtilityListingSuccessResponse
- IGetUtilityListingsPayload
- IGetUtilityListingsSuccessResponse
- IIPFSTotalsDoc
- IIncomingApprovalCriteria
- IIncrementedBalances
- IIndexerStatus
- IInheritMetadataFrom
- IIsArchivedTimeline
- ILatestBlockStatus
- ILinkedTo
- IListActivityDoc
- IListingViewsDoc
- IListingViewsDocViewsByPeriod
- IManagerTimeline
- IManualBalances
- IMap
- IMapDoc
- IMapMetadataTimeline
- IMapPermissions
- IMapUpdateCriteria
- IMapWithValues
- IMaxNumTransfers
- IMerkleChallenge
- IMerkleChallengeTrackerDoc
- IMerklePathItem
- IMerkleProof
- IMetadata
- IMetadataAdditionalInfoInner
- IMetadataAttributesInner
- IMetadataAttributesInnerValue
- IMetadataOffChainTransferabilityInfo
- IMetadataWithoutInternals
- IMsgCreateAddressLists
- IMsgCreateCollection
- IMsgCreateMap
- IMsgDeleteCollection
- IMsgDeleteMap
- IMsgExecuteContractCompat
- IMsgInstantiateContractCompat
- IMsgSetValue
- IMsgStoreCodeCompat
- IMsgTransferBadges
- IMsgUniversalUpdateCollection
- IMsgUpdateMap
- IMsgUpdateUserApprovals
- IMustOwnBadges
- INotificationPreferences
- INotificationPreferencesDiscord
- INotificationPreferencesPreferences
- IOauthRevokePayload
- IOffChainBalancesMetadata
- IOffChainBalancesMetadataTimeline
- IOutgoingApprovalCriteria
- IPerformStoreActionBatchWithBodyAuthPayload
- IPerformStoreActionBatchWithBodyAuthPayloadActionsInner
- IPerformStoreActionSingleWithBodyAuthPayload
- IPluginDoc
- IPluginDocMetadata
- IPluginVersionConfig
- IPluginVersionConfigVerificationCall
- IPointsActivityDoc
- IPointsDoc
- IPointsValue
- IPredeterminedBalances
- IPredeterminedOrderCalculationMethod
- IProfileDoc
- IProfileDocApprovedSignInMethods
- IProfileDocApprovedSignInMethodsPasswordsInner
- IProfileDocCustomPages
- IProfileDocWatchlists
- IQueueDoc
- IQueueDocClaimInfo
- IQueueDocFaucetInfo
- IRefreshDoc
- IRefreshStatusSuccessResponse
- IReviewDoc
- IRotateApiKeyPayload
- IRotateApiKeySuccessResponse
- IRotateSIWBBRequestPayload
- IRotateSIWBBRequestSuccessResponse
- ISIWBBRequestDoc
- ISatisfyMethod
- ISatisfyMethodConditionsInner
- ISatisfyMethodOptions
- IScheduleTokenRefreshPayload
- IScheduleTokenRefreshSuccessResponse
- ISearchApplicationsPayload
- ISearchApplicationsSuccessResponse
- ISearchClaimsPayload
- ISearchClaimsSuccessResponse
- ISearchDeveloperAppsPayload
- ISearchDeveloperAppsSuccessResponse
- ISearchDynamicDataStoresPayload
- ISearchDynamicDataStoresSuccessResponse
- ISearchDynamicDataStoresSuccessResponsePagination
- ISearchPluginsPayload
- ISearchPluginsSuccessResponse
- ISearchUtilityListingsPayload
- ISearchUtilityListingsSuccessResponse
- ISendClaimAlertsPayload
- ISendClaimAlertsPayloadClaimAlertsInner
- ISetOptions
- ISignOutPayload
- ISignWithEmbeddedWalletPayload
- ISignWithEmbeddedWalletSuccessResponse
- ISimulateClaimPayload
- ISimulateClaimSuccessResponse
- ISimulateTxSuccessResponse
- ISimulateTxSuccessResponseGasInfo
- ISimulateTxSuccessResponseResult
- ISiwbbChallenge
- ISiwbbChallengeVerificationResponse
- ISocialConnections
- ISocialConnectionsDiscord
- ISocialConnectionsGoogle
- ISocialConnectionsTwitter
- IStandardsTimeline
- IStatusDoc
- ITierWithOptionalWeight
- ITimedUpdatePermission
- ITimedUpdateWithBadgeIdsPermission
- ITimelineItem
- ITransfer
- ITransferActivityDoc
- ITransferWithIncrements
- IUintRange
- IUpdateAccountInfoPayload
- IUpdateAccountInfoPayloadApprovedSignInMethods
- IUpdateAccountInfoPayloadApprovedSignInMethodsAddressesInner
- IUpdateAccountInfoPayloadApprovedSignInMethodsDiscord
- IUpdateAccountInfoPayloadApprovedSignInMethodsGithub
- IUpdateAccountInfoPayloadApprovedSignInMethodsPasswordsInner
- IUpdateAccountInfoPayloadCustomPages
- IUpdateAccountInfoPayloadNotifications
- IUpdateAccountInfoPayloadNotificationsDiscord
- IUpdateAccountInfoPayloadNotificationsPreferences
- IUpdateAccountInfoPayloadPublicSocialConnectionsToSetInner
- IUpdateAccountInfoPayloadWatchlists
- IUpdateAccountInfoSuccessResponse
- IUpdateAddressListAddressesPayload
- IUpdateAddressListCoreDetailsPayload
- IUpdateAddressListsPayload
- IUpdateApplicationPayload
- IUpdateApplicationSuccessResponse
- IUpdateAttestationPayload
- IUpdateAttestationPayloadAnchorsToAddInner
- IUpdateAttestationPayloadDataIntegrityProof
- IUpdateAttestationPayloadHoldersToSetInner
- IUpdateAttestationPayloadProofOfIssuance
- IUpdateAttestationSuccessResponse
- IUpdateClaimPayload
- IUpdateDeveloperAppPayload
- IUpdateDeveloperAppSuccessResponse
- IUpdateDynamicDataStorePayload
- IUpdateDynamicDataStoreSuccessResponse
- IUpdateHistory
- IUpdatePluginPayload
- IUpdatePluginPayloadMetadata
- IUpdatePluginPayloadVersionUpdatesInner
- IUpdatePluginPayloadVersionUpdatesInnerConfig
- IUpdatePluginPayloadVersionUpdatesInnerConfigClaimCreatorRedirect
- IUpdatePluginPayloadVersionUpdatesInnerConfigUserInputRedirect
- IUpdatePluginPayloadVersionUpdatesInnerConfigVerificationCall
- IUpdateUtilityListingPayload
- IUpdateUtilityListingSuccessResponse
- IUploadBalancesPayload
- IUsedLeafStatus
- IUserBalanceStore
- IUserIncomingApproval
- IUserIncomingApprovalPermission
- IUserOutgoingApproval
- IUserOutgoingApprovalPermission
- IUserPermissions
- IUtilityListingContent
- IUtilityListingDoc
- IUtilityListingDocApprovalStatus
- IUtilityListingDocHomePageView
- IUtilityListingDocViewsByPeriod
- IUtilityListingLink
- IValueOptions
- IValueStore
- IVerifyAttestationPayload
- IVerifyAttestationPayloadDataIntegrityProof
- IVerifyAttestationPayloadProofOfIssuance
- IVerifyAttestationSuccessResponse
- IVerifySignInPayload
- IZkProof
- IZkProofSolution
- IntegrationPluginDetails
- IntegrationPluginDetailsMetadata
- IntegrationPluginDetailsUpdate
- IntegrationPluginParams
- IntegrationPluginParamsMetadata
- JsonBodyInputSchema
- JsonBodyInputSchemaHyperlink
- JsonBodyInputSchemaOptionsInner
- JsonBodyInputWithValue
- JsonBodyInputWithValueValue
- MetadataFetchOptions
- MetadataFetchOptionsBadgeIds
- NumberType
- OAuthScopeDetails
- OAuthScopeDetailsWithId
- OauthAppName
- OrGroup
- OwnershipRequirements
- OwnershipRequirementsOptions
- PaginationInfo
- ParsedQsValue
- PermissionNameString
- PluginErrorDoc
- PluginVersionConfigPayload
- PluginVersionConfigPayloadClaimCreatorRedirect
- PluginVersionConfigPayloadUserInputRedirect
- PluginVersionConfigPayloadVerificationCall
- Sender
- SimulateTxRequest
- StdFee
- StdSignDoc
- SupportedChain
- SupportedChainType
- TallyResponse
- TallyResponseTally
- TxContext
- TxContextSender
- UndelegationResponse
- UpdateClaimRequest
- Validator
- ValidatorCommission
- ValidatorCommissionCommissionRates
- ValidatorConsensusPubkey
- ValidatorDescription
- VerifyAttestationSignaturesParameters
- VerifyAttestationSignaturesParametersDataIntegrityProof
- VerifyAttestationSignaturesParametersProofOfIssuance
- VerifyChallengeOptions
- VerifyChallengeOptionsExpectedChallengeParams
- VerifySIWBBOptions
Documentation For Authorization
Authentication schemes defined for the API:
apiKey
- Type: API key
- API key parameter name: x-api-key
- Location: HTTP header
frontendOnly
- Type: API key
- API key parameter name: Origin
- Location: HTTP header
userSignedIn
userMaybeSignedIn
userIsManager
userIsOwner
Author
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bitbadgespy_sdk-0.1.10.tar.gz.
File metadata
- Download URL: bitbadgespy_sdk-0.1.10.tar.gz
- Upload date:
- Size: 669.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de9f5eec19e4a325cad241f85226bb17ec4b2739e80924149475972c6a508111
|
|
| MD5 |
3198f0816993b265fe6bb445d3e2e00a
|
|
| BLAKE2b-256 |
0a293f2abb44ed5b4246cf2702ea50129c1485de349105aa313cca5cc69cb60a
|
File details
Details for the file bitbadgespy_sdk-0.1.10-py3-none-any.whl.
File metadata
- Download URL: bitbadgespy_sdk-0.1.10-py3-none-any.whl
- Upload date:
- Size: 5.0 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b284edf7f883c3812674913b3a025e3a39786cf319fe1a53b226b2ddc5e2ec80
|
|
| MD5 |
eecfe27268a097e2451c75b81e08f6fb
|
|
| BLAKE2b-256 |
92ab1e4782c794c00ad348f477f4a90f557cdb699a547139ec157e571a3e87bd
|