Skip to main content
GET
https://api.bit2connect.com
/
1.0
/
mobile-apps
curl -X GET "https://api.bit2connect.com/1.0/mobile-apps" \
  -H "X-API-KEY: b2co_your_api_key"
{
  "success": true,
  "data": {
    "apps": [
      {
        "id": "550e8400-e29b-41d4-a716-446655440000",
        "name": "My iOS App",
        "platform": "IOS",
        "bundleId": "com.mycompany.myapp",
        "appStoreFallback": "https://apps.apple.com/app/id123456789",
        "appStoreId": "123456789",
        "iosMinVersion": "14.0",
        "packageName": null,
        "playStoreFallback": null,
        "androidMinVersion": null,
        "createdAt": "2024-01-15T10:30:00Z",
        "updatedAt": "2024-01-15T10:30:00Z"
      },
      {
        "id": "550e8400-e29b-41d4-a716-446655440001",
        "name": "My Android App",
        "platform": "ANDROID",
        "bundleId": null,
        "appStoreFallback": null,
        "appStoreId": null,
        "iosMinVersion": null,
        "packageName": "com.mycompany.myapp",
        "playStoreFallback": "https://play.google.com/store/apps/details?id=com.mycompany.myapp",
        "androidMinVersion": "21",
        "createdAt": "2024-01-15T11:00:00Z",
        "updatedAt": "2024-01-15T11:00:00Z"
      }
    ],
    "total": 2
  },
  "timestamp": "2024-01-15T12:00:00Z"
}

Request

X-API-KEY
string
required
Your API key: b2co_your_api_key

Response

success
boolean
Indicates if the request was successful
data
object
Response data containing mobile apps list
data.apps
array
Array of mobile app objects
data.apps[].id
string
Unique identifier for the mobile app
data.apps[].name
string
Display name of the mobile app
data.apps[].platform
string
Platform type: IOS or ANDROID
data.apps[].bundleId
string
iOS bundle identifier (iOS apps only)
data.apps[].appStoreFallback
string
App Store fallback URL (iOS apps only)
data.apps[].appStoreId
string
App Store ID (iOS apps only)
data.apps[].iosMinVersion
string
Minimum iOS version required (iOS apps only)
data.apps[].packageName
string
Android package name (Android apps only)
data.apps[].playStoreFallback
string
Play Store fallback URL (Android apps only)
data.apps[].androidMinVersion
string
Minimum Android version required (Android apps only)
data.apps[].createdAt
string
ISO 8601 timestamp when the app was created
data.apps[].updatedAt
string
ISO 8601 timestamp when the app was last updated
data.total
number
Total number of mobile apps in the project
timestamp
string
ISO 8601 timestamp of the response
curl -X GET "https://api.bit2connect.com/1.0/mobile-apps" \
  -H "X-API-KEY: b2co_your_api_key"
{
  "success": true,
  "data": {
    "apps": [
      {
        "id": "550e8400-e29b-41d4-a716-446655440000",
        "name": "My iOS App",
        "platform": "IOS",
        "bundleId": "com.mycompany.myapp",
        "appStoreFallback": "https://apps.apple.com/app/id123456789",
        "appStoreId": "123456789",
        "iosMinVersion": "14.0",
        "packageName": null,
        "playStoreFallback": null,
        "androidMinVersion": null,
        "createdAt": "2024-01-15T10:30:00Z",
        "updatedAt": "2024-01-15T10:30:00Z"
      },
      {
        "id": "550e8400-e29b-41d4-a716-446655440001",
        "name": "My Android App",
        "platform": "ANDROID",
        "bundleId": null,
        "appStoreFallback": null,
        "appStoreId": null,
        "iosMinVersion": null,
        "packageName": "com.mycompany.myapp",
        "playStoreFallback": "https://play.google.com/store/apps/details?id=com.mycompany.myapp",
        "androidMinVersion": "21",
        "createdAt": "2024-01-15T11:00:00Z",
        "updatedAt": "2024-01-15T11:00:00Z"
      }
    ],
    "total": 2
  },
  "timestamp": "2024-01-15T12:00:00Z"
}